composer.lock 283 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895
  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": "f8fae31fa1311f9b2344b52df73f2c74",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.4.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "3bfe67895d26697d20485343499532234eeb7c08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/3bfe67895d26697d20485343499532234eeb7c08",
  20. "reference": "3bfe67895d26697d20485343499532234eeb7c08",
  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.4.1"
  65. },
  66. "time": "2022-08-25T19:47:20+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": "alibabacloud/cloudauth-20190307",
  160. "version": "2.3.0",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/alibabacloud-sdk-php/cloudauth-20190307.git",
  164. "reference": "d37b719d94130fd162ca056df5b2baff24c599a9"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/alibabacloud-sdk-php/cloudauth-20190307/zipball/d37b719d94130fd162ca056df5b2baff24c599a9",
  169. "reference": "d37b719d94130fd162ca056df5b2baff24c599a9",
  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. "alibabacloud/darabonba-openapi": "^0.2.10",
  180. "alibabacloud/endpoint-util": "^0.1.0",
  181. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  182. "alibabacloud/openplatform-20191219": "^2.0.1",
  183. "alibabacloud/tea-fileform": "^0.3.0",
  184. "alibabacloud/tea-oss-sdk": "^0.3.0",
  185. "alibabacloud/tea-oss-utils": "^0.3.1",
  186. "alibabacloud/tea-utils": "^0.2.19",
  187. "php": ">5.5"
  188. },
  189. "type": "library",
  190. "autoload": {
  191. "psr-4": {
  192. "AlibabaCloud\\SDK\\Cloudauth\\V20190307\\": "src"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "Apache-2.0"
  198. ],
  199. "authors": [
  200. {
  201. "name": "Alibaba Cloud SDK",
  202. "email": "sdk-team@alibabacloud.com"
  203. }
  204. ],
  205. "description": "Alibaba Cloud ID Verification (20190307) SDK Library for PHP",
  206. "support": {
  207. "source": "https://github.com/alibabacloud-sdk-php/cloudauth-20190307/tree/2.3.0"
  208. },
  209. "time": "2024-02-22T17:21:20+00:00"
  210. },
  211. {
  212. "name": "alibabacloud/credentials",
  213. "version": "1.1.5",
  214. "source": {
  215. "type": "git",
  216. "url": "https://github.com/aliyun/credentials-php.git",
  217. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
  218. },
  219. "dist": {
  220. "type": "zip",
  221. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
  222. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
  223. "shasum": "",
  224. "mirrors": [
  225. {
  226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  227. "preferred": true
  228. }
  229. ]
  230. },
  231. "require": {
  232. "adbario/php-dot-notation": "^2.2",
  233. "alibabacloud/tea": "^3.0",
  234. "ext-curl": "*",
  235. "ext-json": "*",
  236. "ext-libxml": "*",
  237. "ext-mbstring": "*",
  238. "ext-openssl": "*",
  239. "ext-simplexml": "*",
  240. "ext-xmlwriter": "*",
  241. "guzzlehttp/guzzle": "^6.3|^7.0",
  242. "php": ">=5.6"
  243. },
  244. "require-dev": {
  245. "composer/composer": "^1.8",
  246. "drupal/coder": "^8.3",
  247. "ext-dom": "*",
  248. "ext-pcre": "*",
  249. "ext-sockets": "*",
  250. "ext-spl": "*",
  251. "mikey179/vfsstream": "^1.6",
  252. "monolog/monolog": "^1.24",
  253. "phpunit/phpunit": "^5.7|^6.6|^7.5",
  254. "psr/cache": "^1.0",
  255. "symfony/dotenv": "^3.4",
  256. "symfony/var-dumper": "^3.4"
  257. },
  258. "suggest": {
  259. "ext-sockets": "To use client-side monitoring"
  260. },
  261. "type": "library",
  262. "autoload": {
  263. "psr-4": {
  264. "AlibabaCloud\\Credentials\\": "src"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "Apache-2.0"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Alibaba Cloud SDK",
  274. "email": "sdk-team@alibabacloud.com",
  275. "homepage": "http://www.alibabacloud.com"
  276. }
  277. ],
  278. "description": "Alibaba Cloud Credentials for PHP",
  279. "homepage": "https://www.alibabacloud.com/",
  280. "keywords": [
  281. "alibaba",
  282. "alibabacloud",
  283. "aliyun",
  284. "client",
  285. "cloud",
  286. "credentials",
  287. "library",
  288. "sdk",
  289. "tool"
  290. ],
  291. "support": {
  292. "issues": "https://github.com/aliyun/credentials-php/issues",
  293. "source": "https://github.com/aliyun/credentials-php"
  294. },
  295. "time": "2023-04-11T02:12:12+00:00"
  296. },
  297. {
  298. "name": "alibabacloud/darabonba-openapi",
  299. "version": "0.2.10",
  300. "source": {
  301. "type": "git",
  302. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  303. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb"
  304. },
  305. "dist": {
  306. "type": "zip",
  307. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  308. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  309. "shasum": "",
  310. "mirrors": [
  311. {
  312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  313. "preferred": true
  314. }
  315. ]
  316. },
  317. "require": {
  318. "alibabacloud/credentials": "^1.1",
  319. "alibabacloud/gateway-spi": "^1",
  320. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  321. "alibabacloud/tea-utils": "^0.2.19",
  322. "alibabacloud/tea-xml": "^0.2",
  323. "php": ">5.5"
  324. },
  325. "type": "library",
  326. "autoload": {
  327. "psr-4": {
  328. "Darabonba\\OpenApi\\": "src"
  329. }
  330. },
  331. "notification-url": "https://packagist.org/downloads/",
  332. "license": [
  333. "Apache-2.0"
  334. ],
  335. "authors": [
  336. {
  337. "name": "Alibaba Cloud SDK",
  338. "email": "sdk-team@alibabacloud.com"
  339. }
  340. ],
  341. "description": "Alibaba Cloud OpenApi Client",
  342. "support": {
  343. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  344. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.10"
  345. },
  346. "time": "2023-11-23T07:01:20+00:00"
  347. },
  348. {
  349. "name": "alibabacloud/endpoint-util",
  350. "version": "0.1.1",
  351. "source": {
  352. "type": "git",
  353. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  354. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  355. },
  356. "dist": {
  357. "type": "zip",
  358. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  359. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  360. "shasum": "",
  361. "mirrors": [
  362. {
  363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  364. "preferred": true
  365. }
  366. ]
  367. },
  368. "require": {
  369. "php": ">5.5"
  370. },
  371. "require-dev": {
  372. "phpunit/phpunit": "^4.8.35|^5.4.3"
  373. },
  374. "type": "library",
  375. "autoload": {
  376. "psr-4": {
  377. "AlibabaCloud\\Endpoint\\": "src"
  378. }
  379. },
  380. "notification-url": "https://packagist.org/downloads/",
  381. "license": [
  382. "Apache-2.0"
  383. ],
  384. "authors": [
  385. {
  386. "name": "Alibaba Cloud SDK",
  387. "email": "sdk-team@alibabacloud.com"
  388. }
  389. ],
  390. "description": "Alibaba Cloud Endpoint Library for PHP",
  391. "support": {
  392. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  393. },
  394. "time": "2020-06-04T10:57:15+00:00"
  395. },
  396. {
  397. "name": "alibabacloud/gateway-spi",
  398. "version": "1.0.0",
  399. "source": {
  400. "type": "git",
  401. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  402. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  403. },
  404. "dist": {
  405. "type": "zip",
  406. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  407. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  408. "shasum": "",
  409. "mirrors": [
  410. {
  411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  412. "preferred": true
  413. }
  414. ]
  415. },
  416. "require": {
  417. "alibabacloud/credentials": "^1.1",
  418. "php": ">5.5"
  419. },
  420. "type": "library",
  421. "autoload": {
  422. "psr-4": {
  423. "Darabonba\\GatewaySpi\\": "src"
  424. }
  425. },
  426. "notification-url": "https://packagist.org/downloads/",
  427. "license": [
  428. "Apache-2.0"
  429. ],
  430. "authors": [
  431. {
  432. "name": "Alibaba Cloud SDK",
  433. "email": "sdk-team@alibabacloud.com"
  434. }
  435. ],
  436. "description": "Alibaba Cloud Gateway SPI Client",
  437. "support": {
  438. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  439. },
  440. "time": "2022-07-14T05:31:35+00:00"
  441. },
  442. {
  443. "name": "alibabacloud/openapi-util",
  444. "version": "0.2.1",
  445. "source": {
  446. "type": "git",
  447. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  448. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  449. },
  450. "dist": {
  451. "type": "zip",
  452. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  453. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  454. "shasum": "",
  455. "mirrors": [
  456. {
  457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  458. "preferred": true
  459. }
  460. ]
  461. },
  462. "require": {
  463. "alibabacloud/tea": "^3.1",
  464. "alibabacloud/tea-utils": "^0.2",
  465. "lizhichao/one-sm": "^1.5",
  466. "php": ">5.5"
  467. },
  468. "require-dev": {
  469. "phpunit/phpunit": "*"
  470. },
  471. "type": "library",
  472. "autoload": {
  473. "psr-4": {
  474. "AlibabaCloud\\OpenApiUtil\\": "src"
  475. }
  476. },
  477. "notification-url": "https://packagist.org/downloads/",
  478. "license": [
  479. "Apache-2.0"
  480. ],
  481. "authors": [
  482. {
  483. "name": "Alibaba Cloud SDK",
  484. "email": "sdk-team@alibabacloud.com"
  485. }
  486. ],
  487. "description": "Alibaba Cloud OpenApi Util",
  488. "support": {
  489. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  490. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  491. },
  492. "time": "2023-01-10T09:10:10+00:00"
  493. },
  494. {
  495. "name": "alibabacloud/openplatform-20191219",
  496. "version": "2.0.1",
  497. "source": {
  498. "type": "git",
  499. "url": "https://github.com/alibabacloud-sdk-php/OpenPlatform-20191219.git",
  500. "reference": "02ffa72369f8649214f1cfa336b52a544735f517"
  501. },
  502. "dist": {
  503. "type": "zip",
  504. "url": "https://api.github.com/repos/alibabacloud-sdk-php/OpenPlatform-20191219/zipball/02ffa72369f8649214f1cfa336b52a544735f517",
  505. "reference": "02ffa72369f8649214f1cfa336b52a544735f517",
  506. "shasum": "",
  507. "mirrors": [
  508. {
  509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  510. "preferred": true
  511. }
  512. ]
  513. },
  514. "require": {
  515. "alibabacloud/darabonba-openapi": "^0.2.8",
  516. "alibabacloud/endpoint-util": "^0.1.0",
  517. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  518. "alibabacloud/tea-utils": "^0.2.17",
  519. "php": ">5.5"
  520. },
  521. "type": "library",
  522. "autoload": {
  523. "psr-4": {
  524. "AlibabaCloud\\SDK\\OpenPlatform\\V20191219\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "Apache-2.0"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Alibaba Cloud SDK",
  534. "email": "sdk-team@alibabacloud.com"
  535. }
  536. ],
  537. "description": "Alibaba Cloud OpenPlatform (20191219) SDK Library for PHP",
  538. "support": {
  539. "source": "https://github.com/alibabacloud-sdk-php/OpenPlatform-20191219/tree/2.0.1"
  540. },
  541. "time": "2023-02-07T06:39:39+00:00"
  542. },
  543. {
  544. "name": "alibabacloud/tea",
  545. "version": "3.1.24",
  546. "source": {
  547. "type": "git",
  548. "url": "https://github.com/aliyun/tea-php.git",
  549. "reference": "bb33395f47db3847d1940d6eb8ba1e56cd0623cb"
  550. },
  551. "dist": {
  552. "type": "zip",
  553. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/bb33395f47db3847d1940d6eb8ba1e56cd0623cb",
  554. "reference": "bb33395f47db3847d1940d6eb8ba1e56cd0623cb",
  555. "shasum": "",
  556. "mirrors": [
  557. {
  558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  559. "preferred": true
  560. }
  561. ]
  562. },
  563. "require": {
  564. "adbario/php-dot-notation": "^2.3",
  565. "ext-curl": "*",
  566. "ext-json": "*",
  567. "ext-libxml": "*",
  568. "ext-mbstring": "*",
  569. "ext-openssl": "*",
  570. "ext-simplexml": "*",
  571. "ext-xmlwriter": "*",
  572. "guzzlehttp/guzzle": "^6.3|^7.0",
  573. "php": ">=5.5"
  574. },
  575. "require-dev": {
  576. "phpunit/phpunit": "*",
  577. "symfony/dotenv": "^3.4",
  578. "symfony/var-dumper": "^3.4"
  579. },
  580. "suggest": {
  581. "ext-sockets": "To use client-side monitoring"
  582. },
  583. "type": "library",
  584. "autoload": {
  585. "psr-4": {
  586. "AlibabaCloud\\Tea\\": "src"
  587. }
  588. },
  589. "notification-url": "https://packagist.org/downloads/",
  590. "license": [
  591. "Apache-2.0"
  592. ],
  593. "authors": [
  594. {
  595. "name": "Alibaba Cloud SDK",
  596. "email": "sdk-team@alibabacloud.com",
  597. "homepage": "http://www.alibabacloud.com"
  598. }
  599. ],
  600. "description": "Client of Tea for PHP",
  601. "homepage": "https://www.alibabacloud.com/",
  602. "keywords": [
  603. "alibabacloud",
  604. "client",
  605. "cloud",
  606. "tea"
  607. ],
  608. "support": {
  609. "issues": "https://github.com/aliyun/tea-php/issues",
  610. "source": "https://github.com/aliyun/tea-php"
  611. },
  612. "time": "2022-07-18T11:27:29+00:00"
  613. },
  614. {
  615. "name": "alibabacloud/tea-fileform",
  616. "version": "0.3.4",
  617. "source": {
  618. "type": "git",
  619. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  620. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  621. },
  622. "dist": {
  623. "type": "zip",
  624. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  625. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  626. "shasum": "",
  627. "mirrors": [
  628. {
  629. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  630. "preferred": true
  631. }
  632. ]
  633. },
  634. "require": {
  635. "alibabacloud/tea": "^3.0",
  636. "php": ">5.5"
  637. },
  638. "require-dev": {
  639. "phpunit/phpunit": "^4.8.35|^5.4.3"
  640. },
  641. "type": "library",
  642. "autoload": {
  643. "psr-4": {
  644. "AlibabaCloud\\Tea\\FileForm\\": "src"
  645. }
  646. },
  647. "notification-url": "https://packagist.org/downloads/",
  648. "license": [
  649. "Apache-2.0"
  650. ],
  651. "authors": [
  652. {
  653. "name": "Alibaba Cloud SDK",
  654. "email": "sdk-team@alibabacloud.com"
  655. }
  656. ],
  657. "description": "Alibaba Cloud Tea File Library for PHP",
  658. "support": {
  659. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  660. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  661. },
  662. "time": "2020-12-01T07:24:35+00:00"
  663. },
  664. {
  665. "name": "alibabacloud/tea-oss-sdk",
  666. "version": "0.3.6",
  667. "source": {
  668. "type": "git",
  669. "url": "https://github.com/alibabacloud-sdk-php/tea-oss-sdk.git",
  670. "reference": "e28e70e2842b2e4da031a774209231bf08d7965c"
  671. },
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-oss-sdk/zipball/e28e70e2842b2e4da031a774209231bf08d7965c",
  675. "reference": "e28e70e2842b2e4da031a774209231bf08d7965c",
  676. "shasum": "",
  677. "mirrors": [
  678. {
  679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  680. "preferred": true
  681. }
  682. ]
  683. },
  684. "require": {
  685. "alibabacloud/credentials": "^1.1",
  686. "alibabacloud/tea-fileform": "^0.3.0",
  687. "alibabacloud/tea-oss-utils": "^0.3.0",
  688. "alibabacloud/tea-utils": "^0.2.0",
  689. "alibabacloud/tea-xml": "^0.2",
  690. "php": ">5.5"
  691. },
  692. "type": "library",
  693. "autoload": {
  694. "psr-4": {
  695. "AlibabaCloud\\SDK\\OSS\\": "src"
  696. }
  697. },
  698. "notification-url": "https://packagist.org/downloads/",
  699. "license": [
  700. "Apache-2.0"
  701. ],
  702. "authors": [
  703. {
  704. "name": "Alibaba Cloud SDK",
  705. "email": "sdk-team@alibabacloud.com"
  706. }
  707. ],
  708. "description": "Aliyun Tea OSS SDK Library for PHP",
  709. "support": {
  710. "source": "https://github.com/alibabacloud-sdk-php/tea-oss-sdk/tree/0.3.6"
  711. },
  712. "time": "2022-10-13T07:23:51+00:00"
  713. },
  714. {
  715. "name": "alibabacloud/tea-oss-utils",
  716. "version": "0.3.1",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/alibabacloud-sdk-php/tea-oss-utils.git",
  720. "reference": "19f58fc509347f075664e377742d4f9e18465372"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-oss-utils/zipball/19f58fc509347f075664e377742d4f9e18465372",
  725. "reference": "19f58fc509347f075664e377742d4f9e18465372",
  726. "shasum": "",
  727. "mirrors": [
  728. {
  729. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  730. "preferred": true
  731. }
  732. ]
  733. },
  734. "require": {
  735. "alibabacloud/tea": "^3.0",
  736. "guzzlehttp/psr7": "^1.0",
  737. "php": ">5.5"
  738. },
  739. "require-dev": {
  740. "phpunit/phpunit": "^4.8.35|^5.4.3|^9.4"
  741. },
  742. "type": "library",
  743. "autoload": {
  744. "psr-4": {
  745. "AlibabaCloud\\Tea\\OSSUtils\\": "src"
  746. }
  747. },
  748. "notification-url": "https://packagist.org/downloads/",
  749. "license": [
  750. "Apache-2.0"
  751. ],
  752. "authors": [
  753. {
  754. "name": "Alibaba Cloud SDK",
  755. "email": "sdk-team@alibabacloud.com"
  756. }
  757. ],
  758. "description": "Alibaba Cloud Tea OSS Utils Library for PHP",
  759. "support": {
  760. "source": "https://github.com/alibabacloud-sdk-php/tea-oss-utils/tree/0.3.1"
  761. },
  762. "time": "2023-01-08T13:26:58+00:00"
  763. },
  764. {
  765. "name": "alibabacloud/tea-utils",
  766. "version": "0.2.19",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  770. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4",
  775. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4",
  776. "shasum": "",
  777. "mirrors": [
  778. {
  779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  780. "preferred": true
  781. }
  782. ]
  783. },
  784. "require": {
  785. "alibabacloud/tea": "^3.1",
  786. "php": ">5.5"
  787. },
  788. "type": "library",
  789. "autoload": {
  790. "psr-4": {
  791. "AlibabaCloud\\Tea\\Utils\\": "src"
  792. }
  793. },
  794. "notification-url": "https://packagist.org/downloads/",
  795. "license": [
  796. "Apache-2.0"
  797. ],
  798. "authors": [
  799. {
  800. "name": "Alibaba Cloud SDK",
  801. "email": "sdk-team@alibabacloud.com"
  802. }
  803. ],
  804. "description": "Alibaba Cloud Tea Utils for PHP",
  805. "support": {
  806. "issues": "https://github.com/aliyun/tea-util/issues",
  807. "source": "https://github.com/aliyun/tea-util"
  808. },
  809. "time": "2023-06-26T09:49:19+00:00"
  810. },
  811. {
  812. "name": "alibabacloud/tea-xml",
  813. "version": "0.2.4",
  814. "source": {
  815. "type": "git",
  816. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  817. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  818. },
  819. "dist": {
  820. "type": "zip",
  821. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  822. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  823. "shasum": "",
  824. "mirrors": [
  825. {
  826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  827. "preferred": true
  828. }
  829. ]
  830. },
  831. "require": {
  832. "php": ">5.5"
  833. },
  834. "require-dev": {
  835. "phpunit/phpunit": "*",
  836. "symfony/var-dumper": "*"
  837. },
  838. "type": "library",
  839. "autoload": {
  840. "psr-4": {
  841. "AlibabaCloud\\Tea\\XML\\": "src"
  842. }
  843. },
  844. "notification-url": "https://packagist.org/downloads/",
  845. "license": [
  846. "Apache-2.0"
  847. ],
  848. "authors": [
  849. {
  850. "name": "Alibaba Cloud SDK",
  851. "email": "sdk-team@alibabacloud.com"
  852. }
  853. ],
  854. "description": "Alibaba Cloud Tea XML Library for PHP",
  855. "support": {
  856. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  857. },
  858. "time": "2022-08-02T04:12:58+00:00"
  859. },
  860. {
  861. "name": "alipaysdk/easysdk",
  862. "version": "2.0.0",
  863. "source": {
  864. "type": "git",
  865. "url": "https://github.com/alipay/alipay-easysdk.git",
  866. "reference": "677a035e11df6a66a085f1bd1efc58b72eb8b3d5"
  867. },
  868. "dist": {
  869. "type": "zip",
  870. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/677a035e11df6a66a085f1bd1efc58b72eb8b3d5",
  871. "reference": "677a035e11df6a66a085f1bd1efc58b72eb8b3d5",
  872. "shasum": "",
  873. "mirrors": [
  874. {
  875. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  876. "preferred": true
  877. }
  878. ]
  879. },
  880. "require": {
  881. "adbario/php-dot-notation": "^2.2",
  882. "alibabacloud/tea": "^3.1",
  883. "alibabacloud/tea-fileform": "^0.3.2",
  884. "danielstjules/stringy": "^3.1",
  885. "ext-ctype": "*",
  886. "ext-curl": "*",
  887. "ext-dom": "*",
  888. "ext-fileinfo": "*",
  889. "ext-json": "*",
  890. "ext-libxml": "*",
  891. "ext-mbstring": "*",
  892. "ext-openssl": "*",
  893. "ext-simplexml": "*",
  894. "ext-xmlwriter": "*",
  895. "guzzlehttp/guzzle": ">=6.3",
  896. "mtdowling/jmespath.php": "^2.4",
  897. "php": ">=7.0",
  898. "pimple/pimple": "^3.0",
  899. "psr/log": "^1.1",
  900. "songshenzong/support": "^2.0",
  901. "xin/container": "^2.0.1"
  902. },
  903. "require-dev": {
  904. "phpunit/phpunit": "^7.5"
  905. },
  906. "type": "library",
  907. "autoload": {
  908. "psr-4": {
  909. "Alipay\\EasySDK\\": "php/src/"
  910. }
  911. },
  912. "notification-url": "https://packagist.org/downloads/",
  913. "license": [
  914. "Apache-2.0"
  915. ],
  916. "authors": [
  917. {
  918. "name": "junying.wjy",
  919. "email": "junying.wjy@antfin.com"
  920. }
  921. ],
  922. "description": "支付宝官方 Alipay Easy SDK",
  923. "support": {
  924. "issues": "https://github.com/alipay/alipay-easysdk/issues",
  925. "source": "https://github.com/alipay/alipay-easysdk/tree/master"
  926. },
  927. "time": "2020-07-07T09:28:36+00:00"
  928. },
  929. {
  930. "name": "aliyuncs/oss-sdk-php",
  931. "version": "v2.4.3",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  935. "reference": "4ccead614915ee6685bf30016afb01aabd347e46"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/4ccead614915ee6685bf30016afb01aabd347e46",
  940. "reference": "4ccead614915ee6685bf30016afb01aabd347e46",
  941. "shasum": "",
  942. "mirrors": [
  943. {
  944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  945. "preferred": true
  946. }
  947. ]
  948. },
  949. "require": {
  950. "php": ">=5.3"
  951. },
  952. "require-dev": {
  953. "phpunit/phpunit": "*",
  954. "satooshi/php-coveralls": "*"
  955. },
  956. "type": "library",
  957. "autoload": {
  958. "psr-4": {
  959. "OSS\\": "src/OSS"
  960. }
  961. },
  962. "notification-url": "https://packagist.org/downloads/",
  963. "license": [
  964. "MIT"
  965. ],
  966. "authors": [
  967. {
  968. "name": "Aliyuncs",
  969. "homepage": "http://www.aliyun.com"
  970. }
  971. ],
  972. "description": "Aliyun OSS SDK for PHP",
  973. "homepage": "http://www.aliyun.com/product/oss/",
  974. "support": {
  975. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  976. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.4.3"
  977. },
  978. "time": "2021-08-25T13:03:58+00:00"
  979. },
  980. {
  981. "name": "async-aws/core",
  982. "version": "1.19.0",
  983. "source": {
  984. "type": "git",
  985. "url": "https://github.com/async-aws/core.git",
  986. "reference": "8702223061b63f800257b3177f36cb7572360352"
  987. },
  988. "dist": {
  989. "type": "zip",
  990. "url": "https://api.github.com/repos/async-aws/core/zipball/8702223061b63f800257b3177f36cb7572360352",
  991. "reference": "8702223061b63f800257b3177f36cb7572360352",
  992. "shasum": "",
  993. "mirrors": [
  994. {
  995. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  996. "preferred": true
  997. }
  998. ]
  999. },
  1000. "require": {
  1001. "ext-hash": "*",
  1002. "ext-json": "*",
  1003. "ext-simplexml": "*",
  1004. "php": "^7.2.5 || ^8.0",
  1005. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1006. "psr/log": "^1.0 || ^2.0 || ^3.0",
  1007. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1008. "symfony/http-client": "^4.4.16 || ^5.1.7 || ^6.0 || ^7.0",
  1009. "symfony/http-client-contracts": "^1.1.8 || ^2.0 || ^3.0",
  1010. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  1011. },
  1012. "conflict": {
  1013. "async-aws/s3": "<1.1",
  1014. "symfony/http-client": "5.2.0"
  1015. },
  1016. "type": "library",
  1017. "extra": {
  1018. "branch-alias": {
  1019. "dev-master": "1.19-dev"
  1020. }
  1021. },
  1022. "autoload": {
  1023. "psr-4": {
  1024. "AsyncAws\\Core\\": "src"
  1025. }
  1026. },
  1027. "notification-url": "https://packagist.org/downloads/",
  1028. "license": [
  1029. "MIT"
  1030. ],
  1031. "description": "Core package to integrate with AWS. This is a lightweight AWS SDK provider by AsyncAws.",
  1032. "keywords": [
  1033. "amazon",
  1034. "async-aws",
  1035. "aws",
  1036. "sdk",
  1037. "sts"
  1038. ],
  1039. "support": {
  1040. "source": "https://github.com/async-aws/core/tree/1.19.0"
  1041. },
  1042. "funding": [
  1043. {
  1044. "url": "https://github.com/jderusse",
  1045. "type": "github"
  1046. },
  1047. {
  1048. "url": "https://github.com/nyholm",
  1049. "type": "github"
  1050. }
  1051. ],
  1052. "time": "2023-06-20T19:17:40+00:00"
  1053. },
  1054. {
  1055. "name": "async-aws/s3",
  1056. "version": "1.14.0",
  1057. "source": {
  1058. "type": "git",
  1059. "url": "https://github.com/async-aws/s3.git",
  1060. "reference": "27ce65242cde50ba09323d54708b45cf64a51aa5"
  1061. },
  1062. "dist": {
  1063. "type": "zip",
  1064. "url": "https://api.github.com/repos/async-aws/s3/zipball/27ce65242cde50ba09323d54708b45cf64a51aa5",
  1065. "reference": "27ce65242cde50ba09323d54708b45cf64a51aa5",
  1066. "shasum": "",
  1067. "mirrors": [
  1068. {
  1069. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1070. "preferred": true
  1071. }
  1072. ]
  1073. },
  1074. "require": {
  1075. "async-aws/core": "^1.9",
  1076. "ext-dom": "*",
  1077. "ext-filter": "*",
  1078. "ext-hash": "*",
  1079. "ext-simplexml": "*",
  1080. "php": "^7.2.5 || ^8.0"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "branch-alias": {
  1085. "dev-master": "1.14-dev"
  1086. }
  1087. },
  1088. "autoload": {
  1089. "psr-4": {
  1090. "AsyncAws\\S3\\": "src"
  1091. }
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "description": "S3 client, part of the AWS SDK provided by AsyncAws.",
  1098. "keywords": [
  1099. "amazon",
  1100. "async-aws",
  1101. "aws",
  1102. "s3",
  1103. "sdk"
  1104. ],
  1105. "support": {
  1106. "source": "https://github.com/async-aws/s3/tree/1.14.0"
  1107. },
  1108. "funding": [
  1109. {
  1110. "url": "https://github.com/jderusse",
  1111. "type": "github"
  1112. },
  1113. {
  1114. "url": "https://github.com/nyholm",
  1115. "type": "github"
  1116. }
  1117. ],
  1118. "time": "2023-06-20T19:17:40+00:00"
  1119. },
  1120. {
  1121. "name": "bacon/bacon-qr-code",
  1122. "version": "2.0.7",
  1123. "source": {
  1124. "type": "git",
  1125. "url": "https://github.com/Bacon/BaconQrCode.git",
  1126. "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c"
  1127. },
  1128. "dist": {
  1129. "type": "zip",
  1130. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/d70c840f68657ce49094b8d91f9ee0cc07fbf66c",
  1131. "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c",
  1132. "shasum": "",
  1133. "mirrors": [
  1134. {
  1135. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1136. "preferred": true
  1137. }
  1138. ]
  1139. },
  1140. "require": {
  1141. "dasprid/enum": "^1.0.3",
  1142. "ext-iconv": "*",
  1143. "php": "^7.1 || ^8.0"
  1144. },
  1145. "require-dev": {
  1146. "phly/keep-a-changelog": "^2.1",
  1147. "phpunit/phpunit": "^7 | ^8 | ^9",
  1148. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  1149. "squizlabs/php_codesniffer": "^3.4"
  1150. },
  1151. "suggest": {
  1152. "ext-imagick": "to generate QR code images"
  1153. },
  1154. "type": "library",
  1155. "autoload": {
  1156. "psr-4": {
  1157. "BaconQrCode\\": "src/"
  1158. }
  1159. },
  1160. "notification-url": "https://packagist.org/downloads/",
  1161. "license": [
  1162. "BSD-2-Clause"
  1163. ],
  1164. "authors": [
  1165. {
  1166. "name": "Ben Scholzen 'DASPRiD'",
  1167. "email": "mail@dasprids.de",
  1168. "homepage": "https://dasprids.de/",
  1169. "role": "Developer"
  1170. }
  1171. ],
  1172. "description": "BaconQrCode is a QR code generator for PHP.",
  1173. "homepage": "https://github.com/Bacon/BaconQrCode",
  1174. "support": {
  1175. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  1176. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.7"
  1177. },
  1178. "time": "2022-03-14T02:02:36+00:00"
  1179. },
  1180. {
  1181. "name": "clagiordano/weblibs-configmanager",
  1182. "version": "v1.2.0",
  1183. "source": {
  1184. "type": "git",
  1185. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  1186. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  1187. },
  1188. "dist": {
  1189. "type": "zip",
  1190. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  1191. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  1192. "shasum": "",
  1193. "mirrors": [
  1194. {
  1195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1196. "preferred": true
  1197. }
  1198. ]
  1199. },
  1200. "require": {
  1201. "php": ">=5.4"
  1202. },
  1203. "require-dev": {
  1204. "clagiordano/phpunit-result-printer": "^1",
  1205. "phpunit/phpunit": "^4.8"
  1206. },
  1207. "type": "library",
  1208. "autoload": {
  1209. "psr-4": {
  1210. "clagiordano\\weblibs\\configmanager\\": "src/"
  1211. }
  1212. },
  1213. "notification-url": "https://packagist.org/downloads/",
  1214. "license": [
  1215. "LGPL-3.0-or-later"
  1216. ],
  1217. "authors": [
  1218. {
  1219. "name": "Claudio Giordano",
  1220. "email": "claudio.giordano@autistici.org",
  1221. "role": "Developer"
  1222. }
  1223. ],
  1224. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  1225. "keywords": [
  1226. "clagiordano",
  1227. "configuration",
  1228. "manager",
  1229. "tool",
  1230. "weblibs"
  1231. ],
  1232. "support": {
  1233. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  1234. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  1235. },
  1236. "time": "2021-05-18T17:55:57+00:00"
  1237. },
  1238. {
  1239. "name": "danielstjules/stringy",
  1240. "version": "3.1.0",
  1241. "source": {
  1242. "type": "git",
  1243. "url": "https://github.com/danielstjules/Stringy.git",
  1244. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  1245. },
  1246. "dist": {
  1247. "type": "zip",
  1248. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  1249. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  1250. "shasum": "",
  1251. "mirrors": [
  1252. {
  1253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1254. "preferred": true
  1255. }
  1256. ]
  1257. },
  1258. "require": {
  1259. "php": ">=5.4.0",
  1260. "symfony/polyfill-mbstring": "~1.1"
  1261. },
  1262. "require-dev": {
  1263. "phpunit/phpunit": "~4.0"
  1264. },
  1265. "type": "library",
  1266. "autoload": {
  1267. "files": [
  1268. "src/Create.php"
  1269. ],
  1270. "psr-4": {
  1271. "Stringy\\": "src/"
  1272. }
  1273. },
  1274. "notification-url": "https://packagist.org/downloads/",
  1275. "license": [
  1276. "MIT"
  1277. ],
  1278. "authors": [
  1279. {
  1280. "name": "Daniel St. Jules",
  1281. "email": "danielst.jules@gmail.com",
  1282. "homepage": "http://www.danielstjules.com"
  1283. }
  1284. ],
  1285. "description": "A string manipulation library with multibyte support",
  1286. "homepage": "https://github.com/danielstjules/Stringy",
  1287. "keywords": [
  1288. "UTF",
  1289. "helpers",
  1290. "manipulation",
  1291. "methods",
  1292. "multibyte",
  1293. "string",
  1294. "utf-8",
  1295. "utility",
  1296. "utils"
  1297. ],
  1298. "support": {
  1299. "issues": "https://github.com/danielstjules/Stringy/issues",
  1300. "source": "https://github.com/danielstjules/Stringy"
  1301. },
  1302. "time": "2017-06-12T01:10:27+00:00"
  1303. },
  1304. {
  1305. "name": "dasprid/enum",
  1306. "version": "1.0.3",
  1307. "source": {
  1308. "type": "git",
  1309. "url": "https://github.com/DASPRiD/Enum.git",
  1310. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  1311. },
  1312. "dist": {
  1313. "type": "zip",
  1314. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  1315. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  1316. "shasum": "",
  1317. "mirrors": [
  1318. {
  1319. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1320. "preferred": true
  1321. }
  1322. ]
  1323. },
  1324. "require-dev": {
  1325. "phpunit/phpunit": "^7 | ^8 | ^9",
  1326. "squizlabs/php_codesniffer": "^3.4"
  1327. },
  1328. "type": "library",
  1329. "autoload": {
  1330. "psr-4": {
  1331. "DASPRiD\\Enum\\": "src/"
  1332. }
  1333. },
  1334. "notification-url": "https://packagist.org/downloads/",
  1335. "license": [
  1336. "BSD-2-Clause"
  1337. ],
  1338. "authors": [
  1339. {
  1340. "name": "Ben Scholzen 'DASPRiD'",
  1341. "email": "mail@dasprids.de",
  1342. "homepage": "https://dasprids.de/",
  1343. "role": "Developer"
  1344. }
  1345. ],
  1346. "description": "PHP 7.1 enum implementation",
  1347. "keywords": [
  1348. "enum",
  1349. "map"
  1350. ],
  1351. "support": {
  1352. "issues": "https://github.com/DASPRiD/Enum/issues",
  1353. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  1354. },
  1355. "time": "2020-10-02T16:03:48+00:00"
  1356. },
  1357. {
  1358. "name": "dh2y/think-qrcode",
  1359. "version": "2.0",
  1360. "source": {
  1361. "type": "git",
  1362. "url": "https://github.com/cinaofdai/think-qrcode.git",
  1363. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5"
  1364. },
  1365. "dist": {
  1366. "type": "zip",
  1367. "url": "https://api.github.com/repos/cinaofdai/think-qrcode/zipball/977d032afa27b1852f5fc5441fad2497f6db7ff5",
  1368. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5",
  1369. "shasum": "",
  1370. "mirrors": [
  1371. {
  1372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1373. "preferred": true
  1374. }
  1375. ]
  1376. },
  1377. "require": {
  1378. "php": ">=5.4.0"
  1379. },
  1380. "type": "library",
  1381. "autoload": {
  1382. "psr-4": {
  1383. "dh2y\\qrcode\\": "src/"
  1384. }
  1385. },
  1386. "notification-url": "https://packagist.org/downloads/",
  1387. "license": [
  1388. "MIT"
  1389. ],
  1390. "authors": [
  1391. {
  1392. "name": "dh2y",
  1393. "email": "xiaodai54_long@163.com"
  1394. }
  1395. ],
  1396. "description": "qrcode for thinkphp5",
  1397. "homepage": "https://github.com/cinaofdai/think-qrcode",
  1398. "support": {
  1399. "issues": "https://github.com/cinaofdai/think-qrcode/issues",
  1400. "source": "https://github.com/cinaofdai/think-qrcode/tree/2.0"
  1401. },
  1402. "time": "2019-07-10T02:57:29+00:00"
  1403. },
  1404. {
  1405. "name": "doctrine/annotations",
  1406. "version": "1.13.3",
  1407. "source": {
  1408. "type": "git",
  1409. "url": "https://github.com/doctrine/annotations.git",
  1410. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1411. },
  1412. "dist": {
  1413. "type": "zip",
  1414. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1415. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1416. "shasum": "",
  1417. "mirrors": [
  1418. {
  1419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1420. "preferred": true
  1421. }
  1422. ]
  1423. },
  1424. "require": {
  1425. "doctrine/lexer": "1.*",
  1426. "ext-tokenizer": "*",
  1427. "php": "^7.1 || ^8.0",
  1428. "psr/cache": "^1 || ^2 || ^3"
  1429. },
  1430. "require-dev": {
  1431. "doctrine/cache": "^1.11 || ^2.0",
  1432. "doctrine/coding-standard": "^6.0 || ^8.1",
  1433. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1434. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1435. "symfony/cache": "^4.4 || ^5.2",
  1436. "vimeo/psalm": "^4.10"
  1437. },
  1438. "type": "library",
  1439. "autoload": {
  1440. "psr-4": {
  1441. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1442. }
  1443. },
  1444. "notification-url": "https://packagist.org/downloads/",
  1445. "license": [
  1446. "MIT"
  1447. ],
  1448. "authors": [
  1449. {
  1450. "name": "Guilherme Blanco",
  1451. "email": "guilhermeblanco@gmail.com"
  1452. },
  1453. {
  1454. "name": "Roman Borschel",
  1455. "email": "roman@code-factory.org"
  1456. },
  1457. {
  1458. "name": "Benjamin Eberlei",
  1459. "email": "kontakt@beberlei.de"
  1460. },
  1461. {
  1462. "name": "Jonathan Wage",
  1463. "email": "jonwage@gmail.com"
  1464. },
  1465. {
  1466. "name": "Johannes Schmitt",
  1467. "email": "schmittjoh@gmail.com"
  1468. }
  1469. ],
  1470. "description": "Docblock Annotations Parser",
  1471. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1472. "keywords": [
  1473. "annotations",
  1474. "docblock",
  1475. "parser"
  1476. ],
  1477. "support": {
  1478. "issues": "https://github.com/doctrine/annotations/issues",
  1479. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1480. },
  1481. "time": "2022-07-02T10:48:51+00:00"
  1482. },
  1483. {
  1484. "name": "doctrine/lexer",
  1485. "version": "1.2.3",
  1486. "source": {
  1487. "type": "git",
  1488. "url": "https://github.com/doctrine/lexer.git",
  1489. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1490. },
  1491. "dist": {
  1492. "type": "zip",
  1493. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1494. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1495. "shasum": "",
  1496. "mirrors": [
  1497. {
  1498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1499. "preferred": true
  1500. }
  1501. ]
  1502. },
  1503. "require": {
  1504. "php": "^7.1 || ^8.0"
  1505. },
  1506. "require-dev": {
  1507. "doctrine/coding-standard": "^9.0",
  1508. "phpstan/phpstan": "^1.3",
  1509. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1510. "vimeo/psalm": "^4.11"
  1511. },
  1512. "type": "library",
  1513. "autoload": {
  1514. "psr-4": {
  1515. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1516. }
  1517. },
  1518. "notification-url": "https://packagist.org/downloads/",
  1519. "license": [
  1520. "MIT"
  1521. ],
  1522. "authors": [
  1523. {
  1524. "name": "Guilherme Blanco",
  1525. "email": "guilhermeblanco@gmail.com"
  1526. },
  1527. {
  1528. "name": "Roman Borschel",
  1529. "email": "roman@code-factory.org"
  1530. },
  1531. {
  1532. "name": "Johannes Schmitt",
  1533. "email": "schmittjoh@gmail.com"
  1534. }
  1535. ],
  1536. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1537. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1538. "keywords": [
  1539. "annotations",
  1540. "docblock",
  1541. "lexer",
  1542. "parser",
  1543. "php"
  1544. ],
  1545. "support": {
  1546. "issues": "https://github.com/doctrine/lexer/issues",
  1547. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1548. },
  1549. "funding": [
  1550. {
  1551. "url": "https://www.doctrine-project.org/sponsorship.html",
  1552. "type": "custom"
  1553. },
  1554. {
  1555. "url": "https://www.patreon.com/phpdoctrine",
  1556. "type": "patreon"
  1557. },
  1558. {
  1559. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1560. "type": "tidelift"
  1561. }
  1562. ],
  1563. "time": "2022-02-28T11:07:21+00:00"
  1564. },
  1565. {
  1566. "name": "easywechat-composer/easywechat-composer",
  1567. "version": "1.4.1",
  1568. "source": {
  1569. "type": "git",
  1570. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1571. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1572. },
  1573. "dist": {
  1574. "type": "zip",
  1575. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1576. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1577. "shasum": "",
  1578. "mirrors": [
  1579. {
  1580. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1581. "preferred": true
  1582. }
  1583. ]
  1584. },
  1585. "require": {
  1586. "composer-plugin-api": "^1.0 || ^2.0",
  1587. "php": ">=7.0"
  1588. },
  1589. "require-dev": {
  1590. "composer/composer": "^1.0 || ^2.0",
  1591. "phpunit/phpunit": "^6.5 || ^7.0"
  1592. },
  1593. "type": "composer-plugin",
  1594. "extra": {
  1595. "class": "EasyWeChatComposer\\Plugin"
  1596. },
  1597. "autoload": {
  1598. "psr-4": {
  1599. "EasyWeChatComposer\\": "src/"
  1600. }
  1601. },
  1602. "notification-url": "https://packagist.org/downloads/",
  1603. "license": [
  1604. "MIT"
  1605. ],
  1606. "authors": [
  1607. {
  1608. "name": "张铭阳",
  1609. "email": "mingyoungcheung@gmail.com"
  1610. }
  1611. ],
  1612. "description": "The composer plugin for EasyWeChat",
  1613. "support": {
  1614. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1615. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1616. },
  1617. "time": "2021-07-05T04:03:22+00:00"
  1618. },
  1619. {
  1620. "name": "endroid/qr-code",
  1621. "version": "4.4.9",
  1622. "source": {
  1623. "type": "git",
  1624. "url": "https://github.com/endroid/qr-code.git",
  1625. "reference": "bf087fa1e93a1b7310e2d94d187e26ae51db199d"
  1626. },
  1627. "dist": {
  1628. "type": "zip",
  1629. "url": "https://api.github.com/repos/endroid/qr-code/zipball/bf087fa1e93a1b7310e2d94d187e26ae51db199d",
  1630. "reference": "bf087fa1e93a1b7310e2d94d187e26ae51db199d",
  1631. "shasum": "",
  1632. "mirrors": [
  1633. {
  1634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1635. "preferred": true
  1636. }
  1637. ]
  1638. },
  1639. "require": {
  1640. "bacon/bacon-qr-code": "^2.0.5",
  1641. "php": "^7.4||^8.0"
  1642. },
  1643. "require-dev": {
  1644. "endroid/quality": "dev-master",
  1645. "ext-gd": "*",
  1646. "khanamiryan/qrcode-detector-decoder": "^1.0.4",
  1647. "setasign/fpdf": "^1.8.2"
  1648. },
  1649. "suggest": {
  1650. "ext-gd": "Enables you to write PNG images",
  1651. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  1652. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  1653. "setasign/fpdf": "Enables you to use the PDF writer"
  1654. },
  1655. "type": "library",
  1656. "extra": {
  1657. "branch-alias": {
  1658. "dev-master": "4.x-dev"
  1659. }
  1660. },
  1661. "autoload": {
  1662. "psr-4": {
  1663. "Endroid\\QrCode\\": "src/"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Jeroen van den Enden",
  1673. "email": "info@endroid.nl"
  1674. }
  1675. ],
  1676. "description": "Endroid QR Code",
  1677. "homepage": "https://github.com/endroid/qr-code",
  1678. "keywords": [
  1679. "code",
  1680. "endroid",
  1681. "php",
  1682. "qr",
  1683. "qrcode"
  1684. ],
  1685. "support": {
  1686. "issues": "https://github.com/endroid/qr-code/issues",
  1687. "source": "https://github.com/endroid/qr-code/tree/4.4.9"
  1688. },
  1689. "funding": [
  1690. {
  1691. "url": "https://github.com/endroid",
  1692. "type": "github"
  1693. }
  1694. ],
  1695. "time": "2022-05-10T07:25:08+00:00"
  1696. },
  1697. {
  1698. "name": "ezyang/htmlpurifier",
  1699. "version": "v4.14.0",
  1700. "source": {
  1701. "type": "git",
  1702. "url": "https://github.com/ezyang/htmlpurifier.git",
  1703. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75"
  1704. },
  1705. "dist": {
  1706. "type": "zip",
  1707. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  1708. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  1709. "shasum": "",
  1710. "mirrors": [
  1711. {
  1712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1713. "preferred": true
  1714. }
  1715. ]
  1716. },
  1717. "require": {
  1718. "php": ">=5.2"
  1719. },
  1720. "type": "library",
  1721. "autoload": {
  1722. "files": [
  1723. "library/HTMLPurifier.composer.php"
  1724. ],
  1725. "psr-0": {
  1726. "HTMLPurifier": "library/"
  1727. },
  1728. "exclude-from-classmap": [
  1729. "/library/HTMLPurifier/Language/"
  1730. ]
  1731. },
  1732. "notification-url": "https://packagist.org/downloads/",
  1733. "license": [
  1734. "LGPL-2.1-or-later"
  1735. ],
  1736. "authors": [
  1737. {
  1738. "name": "Edward Z. Yang",
  1739. "email": "admin@htmlpurifier.org",
  1740. "homepage": "http://ezyang.com"
  1741. }
  1742. ],
  1743. "description": "Standards compliant HTML filter written in PHP",
  1744. "homepage": "http://htmlpurifier.org/",
  1745. "keywords": [
  1746. "html"
  1747. ],
  1748. "support": {
  1749. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1750. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.14.0"
  1751. },
  1752. "time": "2021-12-25T01:21:49+00:00"
  1753. },
  1754. {
  1755. "name": "fastknife/ajcaptcha",
  1756. "version": "v1.1.5",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://gitee.com/fastknife/aj-captcha.git",
  1760. "reference": "9e8eb95c444d2ff4d78d1d1d4d5cb1d29c084609"
  1761. },
  1762. "require": {
  1763. "ext-gd": "*",
  1764. "ext-iconv": "*",
  1765. "ext-json": "*",
  1766. "ext-openssl": "*",
  1767. "intervention/image": "^2.5",
  1768. "php": ">=7.1"
  1769. },
  1770. "type": "library",
  1771. "autoload": {
  1772. "psr-4": {
  1773. "Fastknife\\": "src"
  1774. }
  1775. },
  1776. "notification-url": "https://packagist.org/downloads/",
  1777. "license": [
  1778. "GPL-3.0-only"
  1779. ],
  1780. "authors": [
  1781. {
  1782. "name": "bruce",
  1783. "email": "2777314125@qq.com"
  1784. }
  1785. ],
  1786. "description": "This is a behavior verification code PHP back-end implementation package",
  1787. "time": "2022-07-04T10:17:37+00:00"
  1788. },
  1789. {
  1790. "name": "firebase/php-jwt",
  1791. "version": "v5.5.1",
  1792. "source": {
  1793. "type": "git",
  1794. "url": "https://github.com/firebase/php-jwt.git",
  1795. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  1796. },
  1797. "dist": {
  1798. "type": "zip",
  1799. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  1800. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  1801. "shasum": "",
  1802. "mirrors": [
  1803. {
  1804. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1805. "preferred": true
  1806. }
  1807. ]
  1808. },
  1809. "require": {
  1810. "php": ">=5.3.0"
  1811. },
  1812. "require-dev": {
  1813. "phpunit/phpunit": ">=4.8 <=9"
  1814. },
  1815. "suggest": {
  1816. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1817. },
  1818. "type": "library",
  1819. "autoload": {
  1820. "psr-4": {
  1821. "Firebase\\JWT\\": "src"
  1822. }
  1823. },
  1824. "notification-url": "https://packagist.org/downloads/",
  1825. "license": [
  1826. "BSD-3-Clause"
  1827. ],
  1828. "authors": [
  1829. {
  1830. "name": "Neuman Vong",
  1831. "email": "neuman+pear@twilio.com",
  1832. "role": "Developer"
  1833. },
  1834. {
  1835. "name": "Anant Narayanan",
  1836. "email": "anant@php.net",
  1837. "role": "Developer"
  1838. }
  1839. ],
  1840. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1841. "homepage": "https://github.com/firebase/php-jwt",
  1842. "keywords": [
  1843. "jwt",
  1844. "php"
  1845. ],
  1846. "support": {
  1847. "issues": "https://github.com/firebase/php-jwt/issues",
  1848. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  1849. },
  1850. "time": "2021-11-08T20:18:51+00:00"
  1851. },
  1852. {
  1853. "name": "godruoyi/php-snowflake",
  1854. "version": "1.1.1",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://github.com/godruoyi/php-snowflake.git",
  1858. "reference": "d8cbe72ed375b45033b7042e3d03340ce4fa479f"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://api.github.com/repos/godruoyi/php-snowflake/zipball/d8cbe72ed375b45033b7042e3d03340ce4fa479f",
  1863. "reference": "d8cbe72ed375b45033b7042e3d03340ce4fa479f",
  1864. "shasum": "",
  1865. "mirrors": [
  1866. {
  1867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1868. "preferred": true
  1869. }
  1870. ]
  1871. },
  1872. "require-dev": {
  1873. "phpunit/phpunit": "~7"
  1874. },
  1875. "type": "library",
  1876. "autoload": {
  1877. "psr-4": {
  1878. "Godruoyi\\Snowflake\\": "src"
  1879. }
  1880. },
  1881. "notification-url": "https://packagist.org/downloads/",
  1882. "license": [
  1883. "MIT"
  1884. ],
  1885. "authors": [
  1886. {
  1887. "name": "Godruoyi",
  1888. "email": "g@godruoyi.com"
  1889. }
  1890. ],
  1891. "description": "An ID Generator for PHP based on Snowflake Algorithm (Twitter announced).",
  1892. "homepage": "https://github.com/godruoyi/php-snowflake",
  1893. "keywords": [
  1894. "Unique ID",
  1895. "laravel snowflake",
  1896. "order id",
  1897. "php snowflake",
  1898. "php unique id",
  1899. "snowflake algorithm",
  1900. "unique order id"
  1901. ],
  1902. "support": {
  1903. "issues": "https://github.com/godruoyi/php-snowflake/issues",
  1904. "source": "https://github.com/godruoyi/php-snowflake/tree/1.1.1"
  1905. },
  1906. "funding": [
  1907. {
  1908. "url": "https://images.godruoyi.com/wechat.png",
  1909. "type": "custom"
  1910. },
  1911. {
  1912. "url": "https://github.com/godruoyi",
  1913. "type": "github"
  1914. }
  1915. ],
  1916. "time": "2021-05-25T05:56:30+00:00"
  1917. },
  1918. {
  1919. "name": "guzzlehttp/command",
  1920. "version": "1.0.0",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/guzzle/command.git",
  1924. "reference": "2aaa2521a8f8269d6f5dfc13fe2af12c76921034"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/guzzle/command/zipball/2aaa2521a8f8269d6f5dfc13fe2af12c76921034",
  1929. "reference": "2aaa2521a8f8269d6f5dfc13fe2af12c76921034",
  1930. "shasum": "",
  1931. "mirrors": [
  1932. {
  1933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1934. "preferred": true
  1935. }
  1936. ]
  1937. },
  1938. "require": {
  1939. "guzzlehttp/guzzle": "^6.2",
  1940. "guzzlehttp/promises": "~1.3",
  1941. "guzzlehttp/psr7": "~1.0",
  1942. "php": ">=5.5.0"
  1943. },
  1944. "require-dev": {
  1945. "phpunit/phpunit": "~4.0|~5.0"
  1946. },
  1947. "type": "library",
  1948. "extra": {
  1949. "branch-alias": {
  1950. "dev-master": "0.9-dev"
  1951. }
  1952. },
  1953. "autoload": {
  1954. "psr-4": {
  1955. "GuzzleHttp\\Command\\": "src/"
  1956. }
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "MIT"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "Michael Dowling",
  1965. "email": "mtdowling@gmail.com",
  1966. "homepage": "https://github.com/mtdowling"
  1967. },
  1968. {
  1969. "name": "Jeremy Lindblom",
  1970. "email": "jeremeamia@gmail.com",
  1971. "homepage": "https://github.com/jeremeamia"
  1972. }
  1973. ],
  1974. "description": "Provides the foundation for building command-based web service clients",
  1975. "support": {
  1976. "issues": "https://github.com/guzzle/command/issues",
  1977. "source": "https://github.com/guzzle/command/tree/1.0.0"
  1978. },
  1979. "time": "2016-11-24T13:34:15+00:00"
  1980. },
  1981. {
  1982. "name": "guzzlehttp/guzzle",
  1983. "version": "6.5.5",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://github.com/guzzle/guzzle.git",
  1987. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1992. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1993. "shasum": "",
  1994. "mirrors": [
  1995. {
  1996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1997. "preferred": true
  1998. }
  1999. ]
  2000. },
  2001. "require": {
  2002. "ext-json": "*",
  2003. "guzzlehttp/promises": "^1.0",
  2004. "guzzlehttp/psr7": "^1.6.1",
  2005. "php": ">=5.5",
  2006. "symfony/polyfill-intl-idn": "^1.17.0"
  2007. },
  2008. "require-dev": {
  2009. "ext-curl": "*",
  2010. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  2011. "psr/log": "^1.1"
  2012. },
  2013. "suggest": {
  2014. "psr/log": "Required for using the Log middleware"
  2015. },
  2016. "type": "library",
  2017. "extra": {
  2018. "branch-alias": {
  2019. "dev-master": "6.5-dev"
  2020. }
  2021. },
  2022. "autoload": {
  2023. "files": [
  2024. "src/functions_include.php"
  2025. ],
  2026. "psr-4": {
  2027. "GuzzleHttp\\": "src/"
  2028. }
  2029. },
  2030. "notification-url": "https://packagist.org/downloads/",
  2031. "license": [
  2032. "MIT"
  2033. ],
  2034. "authors": [
  2035. {
  2036. "name": "Michael Dowling",
  2037. "email": "mtdowling@gmail.com",
  2038. "homepage": "https://github.com/mtdowling"
  2039. }
  2040. ],
  2041. "description": "Guzzle is a PHP HTTP client library",
  2042. "homepage": "http://guzzlephp.org/",
  2043. "keywords": [
  2044. "client",
  2045. "curl",
  2046. "framework",
  2047. "http",
  2048. "http client",
  2049. "rest",
  2050. "web service"
  2051. ],
  2052. "support": {
  2053. "issues": "https://github.com/guzzle/guzzle/issues",
  2054. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  2055. },
  2056. "time": "2020-06-16T21:01:06+00:00"
  2057. },
  2058. {
  2059. "name": "guzzlehttp/guzzle-services",
  2060. "version": "1.1.3",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://github.com/guzzle/guzzle-services.git",
  2064. "reference": "9e3abf20161cbf662d616cbb995f2811771759f7"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/9e3abf20161cbf662d616cbb995f2811771759f7",
  2069. "reference": "9e3abf20161cbf662d616cbb995f2811771759f7",
  2070. "shasum": "",
  2071. "mirrors": [
  2072. {
  2073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2074. "preferred": true
  2075. }
  2076. ]
  2077. },
  2078. "require": {
  2079. "guzzlehttp/command": "~1.0",
  2080. "guzzlehttp/guzzle": "^6.2",
  2081. "php": ">=5.5"
  2082. },
  2083. "require-dev": {
  2084. "phpunit/phpunit": "~4.0"
  2085. },
  2086. "suggest": {
  2087. "gimler/guzzle-description-loader": "^0.0.4"
  2088. },
  2089. "type": "library",
  2090. "extra": {
  2091. "branch-alias": {
  2092. "dev-master": "1.0.x-dev"
  2093. }
  2094. },
  2095. "autoload": {
  2096. "psr-4": {
  2097. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  2098. }
  2099. },
  2100. "notification-url": "https://packagist.org/downloads/",
  2101. "license": [
  2102. "MIT"
  2103. ],
  2104. "authors": [
  2105. {
  2106. "name": "Michael Dowling",
  2107. "email": "mtdowling@gmail.com",
  2108. "homepage": "https://github.com/mtdowling"
  2109. },
  2110. {
  2111. "name": "Jeremy Lindblom",
  2112. "email": "jeremeamia@gmail.com",
  2113. "homepage": "https://github.com/jeremeamia"
  2114. },
  2115. {
  2116. "name": "Stefano Kowalke",
  2117. "email": "blueduck@mail.org",
  2118. "homepage": "https://github.com/konafets"
  2119. }
  2120. ],
  2121. "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.",
  2122. "support": {
  2123. "issues": "https://github.com/guzzle/guzzle-services/issues",
  2124. "source": "https://github.com/guzzle/guzzle-services/tree/1.1.3"
  2125. },
  2126. "time": "2017-10-06T14:32:02+00:00"
  2127. },
  2128. {
  2129. "name": "guzzlehttp/promises",
  2130. "version": "1.5.2",
  2131. "source": {
  2132. "type": "git",
  2133. "url": "https://github.com/guzzle/promises.git",
  2134. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  2135. },
  2136. "dist": {
  2137. "type": "zip",
  2138. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  2139. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  2140. "shasum": "",
  2141. "mirrors": [
  2142. {
  2143. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2144. "preferred": true
  2145. }
  2146. ]
  2147. },
  2148. "require": {
  2149. "php": ">=5.5"
  2150. },
  2151. "require-dev": {
  2152. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2153. },
  2154. "type": "library",
  2155. "extra": {
  2156. "branch-alias": {
  2157. "dev-master": "1.5-dev"
  2158. }
  2159. },
  2160. "autoload": {
  2161. "files": [
  2162. "src/functions_include.php"
  2163. ],
  2164. "psr-4": {
  2165. "GuzzleHttp\\Promise\\": "src/"
  2166. }
  2167. },
  2168. "notification-url": "https://packagist.org/downloads/",
  2169. "license": [
  2170. "MIT"
  2171. ],
  2172. "authors": [
  2173. {
  2174. "name": "Graham Campbell",
  2175. "email": "hello@gjcampbell.co.uk",
  2176. "homepage": "https://github.com/GrahamCampbell"
  2177. },
  2178. {
  2179. "name": "Michael Dowling",
  2180. "email": "mtdowling@gmail.com",
  2181. "homepage": "https://github.com/mtdowling"
  2182. },
  2183. {
  2184. "name": "Tobias Nyholm",
  2185. "email": "tobias.nyholm@gmail.com",
  2186. "homepage": "https://github.com/Nyholm"
  2187. },
  2188. {
  2189. "name": "Tobias Schultze",
  2190. "email": "webmaster@tubo-world.de",
  2191. "homepage": "https://github.com/Tobion"
  2192. }
  2193. ],
  2194. "description": "Guzzle promises library",
  2195. "keywords": [
  2196. "promise"
  2197. ],
  2198. "support": {
  2199. "issues": "https://github.com/guzzle/promises/issues",
  2200. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  2201. },
  2202. "funding": [
  2203. {
  2204. "url": "https://github.com/GrahamCampbell",
  2205. "type": "github"
  2206. },
  2207. {
  2208. "url": "https://github.com/Nyholm",
  2209. "type": "github"
  2210. },
  2211. {
  2212. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2213. "type": "tidelift"
  2214. }
  2215. ],
  2216. "time": "2022-08-28T14:55:35+00:00"
  2217. },
  2218. {
  2219. "name": "guzzlehttp/psr7",
  2220. "version": "1.9.0",
  2221. "source": {
  2222. "type": "git",
  2223. "url": "https://github.com/guzzle/psr7.git",
  2224. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318"
  2225. },
  2226. "dist": {
  2227. "type": "zip",
  2228. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  2229. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  2230. "shasum": "",
  2231. "mirrors": [
  2232. {
  2233. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2234. "preferred": true
  2235. }
  2236. ]
  2237. },
  2238. "require": {
  2239. "php": ">=5.4.0",
  2240. "psr/http-message": "~1.0",
  2241. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  2242. },
  2243. "provide": {
  2244. "psr/http-message-implementation": "1.0"
  2245. },
  2246. "require-dev": {
  2247. "ext-zlib": "*",
  2248. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  2249. },
  2250. "suggest": {
  2251. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2252. },
  2253. "type": "library",
  2254. "extra": {
  2255. "branch-alias": {
  2256. "dev-master": "1.9-dev"
  2257. }
  2258. },
  2259. "autoload": {
  2260. "files": [
  2261. "src/functions_include.php"
  2262. ],
  2263. "psr-4": {
  2264. "GuzzleHttp\\Psr7\\": "src/"
  2265. }
  2266. },
  2267. "notification-url": "https://packagist.org/downloads/",
  2268. "license": [
  2269. "MIT"
  2270. ],
  2271. "authors": [
  2272. {
  2273. "name": "Graham Campbell",
  2274. "email": "hello@gjcampbell.co.uk",
  2275. "homepage": "https://github.com/GrahamCampbell"
  2276. },
  2277. {
  2278. "name": "Michael Dowling",
  2279. "email": "mtdowling@gmail.com",
  2280. "homepage": "https://github.com/mtdowling"
  2281. },
  2282. {
  2283. "name": "George Mponos",
  2284. "email": "gmponos@gmail.com",
  2285. "homepage": "https://github.com/gmponos"
  2286. },
  2287. {
  2288. "name": "Tobias Nyholm",
  2289. "email": "tobias.nyholm@gmail.com",
  2290. "homepage": "https://github.com/Nyholm"
  2291. },
  2292. {
  2293. "name": "Márk Sági-Kazár",
  2294. "email": "mark.sagikazar@gmail.com",
  2295. "homepage": "https://github.com/sagikazarmark"
  2296. },
  2297. {
  2298. "name": "Tobias Schultze",
  2299. "email": "webmaster@tubo-world.de",
  2300. "homepage": "https://github.com/Tobion"
  2301. }
  2302. ],
  2303. "description": "PSR-7 message implementation that also provides common utility methods",
  2304. "keywords": [
  2305. "http",
  2306. "message",
  2307. "psr-7",
  2308. "request",
  2309. "response",
  2310. "stream",
  2311. "uri",
  2312. "url"
  2313. ],
  2314. "support": {
  2315. "issues": "https://github.com/guzzle/psr7/issues",
  2316. "source": "https://github.com/guzzle/psr7/tree/1.9.0"
  2317. },
  2318. "funding": [
  2319. {
  2320. "url": "https://github.com/GrahamCampbell",
  2321. "type": "github"
  2322. },
  2323. {
  2324. "url": "https://github.com/Nyholm",
  2325. "type": "github"
  2326. },
  2327. {
  2328. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2329. "type": "tidelift"
  2330. }
  2331. ],
  2332. "time": "2022-06-20T21:43:03+00:00"
  2333. },
  2334. {
  2335. "name": "guzzlehttp/ringphp",
  2336. "version": "1.1.1",
  2337. "source": {
  2338. "type": "git",
  2339. "url": "https://github.com/guzzle/RingPHP.git",
  2340. "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b"
  2341. },
  2342. "dist": {
  2343. "type": "zip",
  2344. "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/5e2a174052995663dd68e6b5ad838afd47dd615b",
  2345. "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b",
  2346. "shasum": "",
  2347. "mirrors": [
  2348. {
  2349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2350. "preferred": true
  2351. }
  2352. ]
  2353. },
  2354. "require": {
  2355. "guzzlehttp/streams": "~3.0",
  2356. "php": ">=5.4.0",
  2357. "react/promise": "~2.0"
  2358. },
  2359. "require-dev": {
  2360. "ext-curl": "*",
  2361. "phpunit/phpunit": "~4.0"
  2362. },
  2363. "suggest": {
  2364. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  2365. },
  2366. "type": "library",
  2367. "extra": {
  2368. "branch-alias": {
  2369. "dev-master": "1.1-dev"
  2370. }
  2371. },
  2372. "autoload": {
  2373. "psr-4": {
  2374. "GuzzleHttp\\Ring\\": "src/"
  2375. }
  2376. },
  2377. "notification-url": "https://packagist.org/downloads/",
  2378. "license": [
  2379. "MIT"
  2380. ],
  2381. "authors": [
  2382. {
  2383. "name": "Michael Dowling",
  2384. "email": "mtdowling@gmail.com",
  2385. "homepage": "https://github.com/mtdowling"
  2386. }
  2387. ],
  2388. "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.",
  2389. "support": {
  2390. "issues": "https://github.com/guzzle/RingPHP/issues",
  2391. "source": "https://github.com/guzzle/RingPHP/tree/1.1.1"
  2392. },
  2393. "abandoned": true,
  2394. "time": "2018-07-31T13:22:33+00:00"
  2395. },
  2396. {
  2397. "name": "guzzlehttp/streams",
  2398. "version": "3.0.0",
  2399. "source": {
  2400. "type": "git",
  2401. "url": "https://github.com/guzzle/streams.git",
  2402. "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5"
  2403. },
  2404. "dist": {
  2405. "type": "zip",
  2406. "url": "https://api.github.com/repos/guzzle/streams/zipball/47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5",
  2407. "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5",
  2408. "shasum": "",
  2409. "mirrors": [
  2410. {
  2411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2412. "preferred": true
  2413. }
  2414. ]
  2415. },
  2416. "require": {
  2417. "php": ">=5.4.0"
  2418. },
  2419. "require-dev": {
  2420. "phpunit/phpunit": "~4.0"
  2421. },
  2422. "type": "library",
  2423. "extra": {
  2424. "branch-alias": {
  2425. "dev-master": "3.0-dev"
  2426. }
  2427. },
  2428. "autoload": {
  2429. "psr-4": {
  2430. "GuzzleHttp\\Stream\\": "src/"
  2431. }
  2432. },
  2433. "notification-url": "https://packagist.org/downloads/",
  2434. "license": [
  2435. "MIT"
  2436. ],
  2437. "authors": [
  2438. {
  2439. "name": "Michael Dowling",
  2440. "email": "mtdowling@gmail.com",
  2441. "homepage": "https://github.com/mtdowling"
  2442. }
  2443. ],
  2444. "description": "Provides a simple abstraction over streams of data",
  2445. "homepage": "http://guzzlephp.org/",
  2446. "keywords": [
  2447. "Guzzle",
  2448. "stream"
  2449. ],
  2450. "support": {
  2451. "issues": "https://github.com/guzzle/streams/issues",
  2452. "source": "https://github.com/guzzle/streams/tree/master"
  2453. },
  2454. "abandoned": true,
  2455. "time": "2014-10-12T19:18:40+00:00"
  2456. },
  2457. {
  2458. "name": "intervention/image",
  2459. "version": "2.7.2",
  2460. "source": {
  2461. "type": "git",
  2462. "url": "https://github.com/Intervention/image.git",
  2463. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2464. },
  2465. "dist": {
  2466. "type": "zip",
  2467. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2468. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2469. "shasum": "",
  2470. "mirrors": [
  2471. {
  2472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2473. "preferred": true
  2474. }
  2475. ]
  2476. },
  2477. "require": {
  2478. "ext-fileinfo": "*",
  2479. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2480. "php": ">=5.4.0"
  2481. },
  2482. "require-dev": {
  2483. "mockery/mockery": "~0.9.2",
  2484. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2485. },
  2486. "suggest": {
  2487. "ext-gd": "to use GD library based image processing.",
  2488. "ext-imagick": "to use Imagick based image processing.",
  2489. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2490. },
  2491. "type": "library",
  2492. "extra": {
  2493. "branch-alias": {
  2494. "dev-master": "2.4-dev"
  2495. },
  2496. "laravel": {
  2497. "providers": [
  2498. "Intervention\\Image\\ImageServiceProvider"
  2499. ],
  2500. "aliases": {
  2501. "Image": "Intervention\\Image\\Facades\\Image"
  2502. }
  2503. }
  2504. },
  2505. "autoload": {
  2506. "psr-4": {
  2507. "Intervention\\Image\\": "src/Intervention/Image"
  2508. }
  2509. },
  2510. "notification-url": "https://packagist.org/downloads/",
  2511. "license": [
  2512. "MIT"
  2513. ],
  2514. "authors": [
  2515. {
  2516. "name": "Oliver Vogel",
  2517. "email": "oliver@intervention.io",
  2518. "homepage": "https://intervention.io/"
  2519. }
  2520. ],
  2521. "description": "Image handling and manipulation library with support for Laravel integration",
  2522. "homepage": "http://image.intervention.io/",
  2523. "keywords": [
  2524. "gd",
  2525. "image",
  2526. "imagick",
  2527. "laravel",
  2528. "thumbnail",
  2529. "watermark"
  2530. ],
  2531. "support": {
  2532. "issues": "https://github.com/Intervention/image/issues",
  2533. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2534. },
  2535. "funding": [
  2536. {
  2537. "url": "https://paypal.me/interventionio",
  2538. "type": "custom"
  2539. },
  2540. {
  2541. "url": "https://github.com/Intervention",
  2542. "type": "github"
  2543. }
  2544. ],
  2545. "time": "2022-05-21T17:30:32+00:00"
  2546. },
  2547. {
  2548. "name": "joypack/tencent-map",
  2549. "version": "1.0.0",
  2550. "source": {
  2551. "type": "git",
  2552. "url": "https://gitee.com/lphkxd/tencent-map",
  2553. "reference": "97c0269086d53dbecb9c3c6e1d2717645d7940a8"
  2554. },
  2555. "require": {
  2556. "php": ">=5.6"
  2557. },
  2558. "type": "library",
  2559. "autoload": {
  2560. "psr-4": {
  2561. "Joypack\\Tencent\\Map\\": "src"
  2562. }
  2563. },
  2564. "notification-url": "https://packagist.org/downloads/",
  2565. "license": [
  2566. "Apache-2.0"
  2567. ],
  2568. "authors": [
  2569. {
  2570. "name": "堪笑",
  2571. "email": "jixiang.f@gmail.com",
  2572. "homepage": "http://cli.life",
  2573. "role": "Developer"
  2574. }
  2575. ],
  2576. "description": "腾讯位置服务(WebService)",
  2577. "homepage": "https://github.com/joypack/tencent-map",
  2578. "keywords": [
  2579. "LBS",
  2580. "腾讯位置服务"
  2581. ],
  2582. "support": {
  2583. "email": "jixiang.f@gmail.com",
  2584. "issues": "https://github.com/joypack/tencent-map/issues",
  2585. "wiki": "https://github.com/joypack/tencent-map/wiki"
  2586. },
  2587. "time": "2021-11-16T06:49:35+00:00"
  2588. },
  2589. {
  2590. "name": "league/flysystem",
  2591. "version": "1.1.9",
  2592. "source": {
  2593. "type": "git",
  2594. "url": "https://github.com/thephpleague/flysystem.git",
  2595. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  2596. },
  2597. "dist": {
  2598. "type": "zip",
  2599. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  2600. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  2601. "shasum": "",
  2602. "mirrors": [
  2603. {
  2604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2605. "preferred": true
  2606. }
  2607. ]
  2608. },
  2609. "require": {
  2610. "ext-fileinfo": "*",
  2611. "league/mime-type-detection": "^1.3",
  2612. "php": "^7.2.5 || ^8.0"
  2613. },
  2614. "conflict": {
  2615. "league/flysystem-sftp": "<1.0.6"
  2616. },
  2617. "require-dev": {
  2618. "phpspec/prophecy": "^1.11.1",
  2619. "phpunit/phpunit": "^8.5.8"
  2620. },
  2621. "suggest": {
  2622. "ext-ftp": "Allows you to use FTP server storage",
  2623. "ext-openssl": "Allows you to use FTPS server storage",
  2624. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2625. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2626. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2627. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2628. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2629. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2630. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2631. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2632. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2633. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2634. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2635. },
  2636. "type": "library",
  2637. "extra": {
  2638. "branch-alias": {
  2639. "dev-master": "1.1-dev"
  2640. }
  2641. },
  2642. "autoload": {
  2643. "psr-4": {
  2644. "League\\Flysystem\\": "src/"
  2645. }
  2646. },
  2647. "notification-url": "https://packagist.org/downloads/",
  2648. "license": [
  2649. "MIT"
  2650. ],
  2651. "authors": [
  2652. {
  2653. "name": "Frank de Jonge",
  2654. "email": "info@frenky.net"
  2655. }
  2656. ],
  2657. "description": "Filesystem abstraction: Many filesystems, one API.",
  2658. "keywords": [
  2659. "Cloud Files",
  2660. "WebDAV",
  2661. "abstraction",
  2662. "aws",
  2663. "cloud",
  2664. "copy.com",
  2665. "dropbox",
  2666. "file systems",
  2667. "files",
  2668. "filesystem",
  2669. "filesystems",
  2670. "ftp",
  2671. "rackspace",
  2672. "remote",
  2673. "s3",
  2674. "sftp",
  2675. "storage"
  2676. ],
  2677. "support": {
  2678. "issues": "https://github.com/thephpleague/flysystem/issues",
  2679. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  2680. },
  2681. "funding": [
  2682. {
  2683. "url": "https://offset.earth/frankdejonge",
  2684. "type": "other"
  2685. }
  2686. ],
  2687. "time": "2021-12-09T09:40:50+00:00"
  2688. },
  2689. {
  2690. "name": "league/flysystem-cached-adapter",
  2691. "version": "1.1.0",
  2692. "source": {
  2693. "type": "git",
  2694. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  2695. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  2696. },
  2697. "dist": {
  2698. "type": "zip",
  2699. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  2700. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  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. "league/flysystem": "~1.0",
  2711. "psr/cache": "^1.0.0"
  2712. },
  2713. "require-dev": {
  2714. "mockery/mockery": "~0.9",
  2715. "phpspec/phpspec": "^3.4",
  2716. "phpunit/phpunit": "^5.7",
  2717. "predis/predis": "~1.0",
  2718. "tedivm/stash": "~0.12"
  2719. },
  2720. "suggest": {
  2721. "ext-phpredis": "Pure C implemented extension for PHP"
  2722. },
  2723. "type": "library",
  2724. "autoload": {
  2725. "psr-4": {
  2726. "League\\Flysystem\\Cached\\": "src/"
  2727. }
  2728. },
  2729. "notification-url": "https://packagist.org/downloads/",
  2730. "license": [
  2731. "MIT"
  2732. ],
  2733. "authors": [
  2734. {
  2735. "name": "frankdejonge",
  2736. "email": "info@frenky.net"
  2737. }
  2738. ],
  2739. "description": "An adapter decorator to enable meta-data caching.",
  2740. "support": {
  2741. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  2742. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  2743. },
  2744. "time": "2020-07-25T15:56:04+00:00"
  2745. },
  2746. {
  2747. "name": "league/mime-type-detection",
  2748. "version": "1.11.0",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2752. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2757. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2758. "shasum": "",
  2759. "mirrors": [
  2760. {
  2761. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2762. "preferred": true
  2763. }
  2764. ]
  2765. },
  2766. "require": {
  2767. "ext-fileinfo": "*",
  2768. "php": "^7.2 || ^8.0"
  2769. },
  2770. "require-dev": {
  2771. "friendsofphp/php-cs-fixer": "^3.2",
  2772. "phpstan/phpstan": "^0.12.68",
  2773. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2774. },
  2775. "type": "library",
  2776. "autoload": {
  2777. "psr-4": {
  2778. "League\\MimeTypeDetection\\": "src"
  2779. }
  2780. },
  2781. "notification-url": "https://packagist.org/downloads/",
  2782. "license": [
  2783. "MIT"
  2784. ],
  2785. "authors": [
  2786. {
  2787. "name": "Frank de Jonge",
  2788. "email": "info@frankdejonge.nl"
  2789. }
  2790. ],
  2791. "description": "Mime-type detection for Flysystem",
  2792. "support": {
  2793. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2794. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2795. },
  2796. "funding": [
  2797. {
  2798. "url": "https://github.com/frankdejonge",
  2799. "type": "github"
  2800. },
  2801. {
  2802. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2803. "type": "tidelift"
  2804. }
  2805. ],
  2806. "time": "2022-04-17T13:12:02+00:00"
  2807. },
  2808. {
  2809. "name": "lizhichao/one-sm",
  2810. "version": "1.10",
  2811. "source": {
  2812. "type": "git",
  2813. "url": "https://github.com/lizhichao/sm.git",
  2814. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2815. },
  2816. "dist": {
  2817. "type": "zip",
  2818. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2819. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2820. "shasum": "",
  2821. "mirrors": [
  2822. {
  2823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2824. "preferred": true
  2825. }
  2826. ]
  2827. },
  2828. "require": {
  2829. "php": ">=5.6"
  2830. },
  2831. "type": "library",
  2832. "autoload": {
  2833. "psr-4": {
  2834. "OneSm\\": "src/"
  2835. }
  2836. },
  2837. "notification-url": "https://packagist.org/downloads/",
  2838. "license": [
  2839. "Apache-2.0"
  2840. ],
  2841. "authors": [
  2842. {
  2843. "name": "tanszhe",
  2844. "email": "1018595261@qq.com"
  2845. }
  2846. ],
  2847. "description": "国密sm3",
  2848. "keywords": [
  2849. "php",
  2850. "sm3"
  2851. ],
  2852. "support": {
  2853. "issues": "https://github.com/lizhichao/sm/issues",
  2854. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2855. },
  2856. "funding": [
  2857. {
  2858. "url": "https://www.vicsdf.com/img/w.jpg",
  2859. "type": "custom"
  2860. },
  2861. {
  2862. "url": "https://www.vicsdf.com/img/z.jpg",
  2863. "type": "custom"
  2864. }
  2865. ],
  2866. "time": "2021-05-26T06:19:22+00:00"
  2867. },
  2868. {
  2869. "name": "maennchen/zipstream-php",
  2870. "version": "2.2.1",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2874. "reference": "211e9ba1530ea5260b45d90c9ea252f56ec52729"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/211e9ba1530ea5260b45d90c9ea252f56ec52729",
  2879. "reference": "211e9ba1530ea5260b45d90c9ea252f56ec52729",
  2880. "shasum": "",
  2881. "mirrors": [
  2882. {
  2883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2884. "preferred": true
  2885. }
  2886. ]
  2887. },
  2888. "require": {
  2889. "myclabs/php-enum": "^1.5",
  2890. "php": "^7.4 || ^8.0",
  2891. "psr/http-message": "^1.0",
  2892. "symfony/polyfill-mbstring": "^1.0"
  2893. },
  2894. "require-dev": {
  2895. "ext-zip": "*",
  2896. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2897. "mikey179/vfsstream": "^1.6",
  2898. "php-coveralls/php-coveralls": "^2.4",
  2899. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2900. "vimeo/psalm": "^4.1"
  2901. },
  2902. "type": "library",
  2903. "autoload": {
  2904. "psr-4": {
  2905. "ZipStream\\": "src/"
  2906. }
  2907. },
  2908. "notification-url": "https://packagist.org/downloads/",
  2909. "license": [
  2910. "MIT"
  2911. ],
  2912. "authors": [
  2913. {
  2914. "name": "Paul Duncan",
  2915. "email": "pabs@pablotron.org"
  2916. },
  2917. {
  2918. "name": "Jonatan Männchen",
  2919. "email": "jonatan@maennchen.ch"
  2920. },
  2921. {
  2922. "name": "Jesse Donat",
  2923. "email": "donatj@gmail.com"
  2924. },
  2925. {
  2926. "name": "András Kolesár",
  2927. "email": "kolesar@kolesar.hu"
  2928. }
  2929. ],
  2930. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2931. "keywords": [
  2932. "stream",
  2933. "zip"
  2934. ],
  2935. "support": {
  2936. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2937. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.1"
  2938. },
  2939. "funding": [
  2940. {
  2941. "url": "https://opencollective.com/zipstream",
  2942. "type": "open_collective"
  2943. }
  2944. ],
  2945. "time": "2022-05-18T15:52:06+00:00"
  2946. },
  2947. {
  2948. "name": "markbaker/complex",
  2949. "version": "3.0.1",
  2950. "source": {
  2951. "type": "git",
  2952. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2953. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22"
  2954. },
  2955. "dist": {
  2956. "type": "zip",
  2957. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  2958. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  2959. "shasum": "",
  2960. "mirrors": [
  2961. {
  2962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2963. "preferred": true
  2964. }
  2965. ]
  2966. },
  2967. "require": {
  2968. "php": "^7.2 || ^8.0"
  2969. },
  2970. "require-dev": {
  2971. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2972. "phpcompatibility/php-compatibility": "^9.0",
  2973. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2974. "squizlabs/php_codesniffer": "^3.4"
  2975. },
  2976. "type": "library",
  2977. "autoload": {
  2978. "psr-4": {
  2979. "Complex\\": "classes/src/"
  2980. }
  2981. },
  2982. "notification-url": "https://packagist.org/downloads/",
  2983. "license": [
  2984. "MIT"
  2985. ],
  2986. "authors": [
  2987. {
  2988. "name": "Mark Baker",
  2989. "email": "mark@lange.demon.co.uk"
  2990. }
  2991. ],
  2992. "description": "PHP Class for working with complex numbers",
  2993. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2994. "keywords": [
  2995. "complex",
  2996. "mathematics"
  2997. ],
  2998. "support": {
  2999. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3000. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.1"
  3001. },
  3002. "time": "2021-06-29T15:32:53+00:00"
  3003. },
  3004. {
  3005. "name": "markbaker/matrix",
  3006. "version": "3.0.0",
  3007. "source": {
  3008. "type": "git",
  3009. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3010. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576"
  3011. },
  3012. "dist": {
  3013. "type": "zip",
  3014. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/c66aefcafb4f6c269510e9ac46b82619a904c576",
  3015. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576",
  3016. "shasum": "",
  3017. "mirrors": [
  3018. {
  3019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3020. "preferred": true
  3021. }
  3022. ]
  3023. },
  3024. "require": {
  3025. "php": "^7.1 || ^8.0"
  3026. },
  3027. "require-dev": {
  3028. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3029. "phpcompatibility/php-compatibility": "^9.0",
  3030. "phpdocumentor/phpdocumentor": "2.*",
  3031. "phploc/phploc": "^4.0",
  3032. "phpmd/phpmd": "2.*",
  3033. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  3034. "sebastian/phpcpd": "^4.0",
  3035. "squizlabs/php_codesniffer": "^3.4"
  3036. },
  3037. "type": "library",
  3038. "autoload": {
  3039. "psr-4": {
  3040. "Matrix\\": "classes/src/"
  3041. }
  3042. },
  3043. "notification-url": "https://packagist.org/downloads/",
  3044. "license": [
  3045. "MIT"
  3046. ],
  3047. "authors": [
  3048. {
  3049. "name": "Mark Baker",
  3050. "email": "mark@demon-angel.eu"
  3051. }
  3052. ],
  3053. "description": "PHP Class for working with matrices",
  3054. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3055. "keywords": [
  3056. "mathematics",
  3057. "matrix",
  3058. "vector"
  3059. ],
  3060. "support": {
  3061. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3062. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.0"
  3063. },
  3064. "time": "2021-07-01T19:01:15+00:00"
  3065. },
  3066. {
  3067. "name": "monolog/monolog",
  3068. "version": "2.8.0",
  3069. "source": {
  3070. "type": "git",
  3071. "url": "https://github.com/Seldaek/monolog.git",
  3072. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  3073. },
  3074. "dist": {
  3075. "type": "zip",
  3076. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  3077. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  3078. "shasum": "",
  3079. "mirrors": [
  3080. {
  3081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3082. "preferred": true
  3083. }
  3084. ]
  3085. },
  3086. "require": {
  3087. "php": ">=7.2",
  3088. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3089. },
  3090. "provide": {
  3091. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3092. },
  3093. "require-dev": {
  3094. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3095. "doctrine/couchdb": "~1.0@dev",
  3096. "elasticsearch/elasticsearch": "^7 || ^8",
  3097. "ext-json": "*",
  3098. "graylog2/gelf-php": "^1.4.2",
  3099. "guzzlehttp/guzzle": "^7.4",
  3100. "guzzlehttp/psr7": "^2.2",
  3101. "mongodb/mongodb": "^1.8",
  3102. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3103. "phpspec/prophecy": "^1.15",
  3104. "phpstan/phpstan": "^0.12.91",
  3105. "phpunit/phpunit": "^8.5.14",
  3106. "predis/predis": "^1.1 || ^2.0",
  3107. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3108. "ruflin/elastica": "^7",
  3109. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3110. "symfony/mailer": "^5.4 || ^6",
  3111. "symfony/mime": "^5.4 || ^6"
  3112. },
  3113. "suggest": {
  3114. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3115. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3116. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3117. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3118. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3119. "ext-mbstring": "Allow to work properly with unicode symbols",
  3120. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3121. "ext-openssl": "Required to send log messages using SSL",
  3122. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3123. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3124. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3125. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3126. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3127. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3128. },
  3129. "type": "library",
  3130. "extra": {
  3131. "branch-alias": {
  3132. "dev-main": "2.x-dev"
  3133. }
  3134. },
  3135. "autoload": {
  3136. "psr-4": {
  3137. "Monolog\\": "src/Monolog"
  3138. }
  3139. },
  3140. "notification-url": "https://packagist.org/downloads/",
  3141. "license": [
  3142. "MIT"
  3143. ],
  3144. "authors": [
  3145. {
  3146. "name": "Jordi Boggiano",
  3147. "email": "j.boggiano@seld.be",
  3148. "homepage": "https://seld.be"
  3149. }
  3150. ],
  3151. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3152. "homepage": "https://github.com/Seldaek/monolog",
  3153. "keywords": [
  3154. "log",
  3155. "logging",
  3156. "psr-3"
  3157. ],
  3158. "support": {
  3159. "issues": "https://github.com/Seldaek/monolog/issues",
  3160. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  3161. },
  3162. "funding": [
  3163. {
  3164. "url": "https://github.com/Seldaek",
  3165. "type": "github"
  3166. },
  3167. {
  3168. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3169. "type": "tidelift"
  3170. }
  3171. ],
  3172. "time": "2022-07-24T11:55:47+00:00"
  3173. },
  3174. {
  3175. "name": "mtdowling/jmespath.php",
  3176. "version": "2.6.1",
  3177. "source": {
  3178. "type": "git",
  3179. "url": "https://github.com/jmespath/jmespath.php.git",
  3180. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  3181. },
  3182. "dist": {
  3183. "type": "zip",
  3184. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3185. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3186. "shasum": "",
  3187. "mirrors": [
  3188. {
  3189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3190. "preferred": true
  3191. }
  3192. ]
  3193. },
  3194. "require": {
  3195. "php": "^5.4 || ^7.0 || ^8.0",
  3196. "symfony/polyfill-mbstring": "^1.17"
  3197. },
  3198. "require-dev": {
  3199. "composer/xdebug-handler": "^1.4 || ^2.0",
  3200. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  3201. },
  3202. "bin": [
  3203. "bin/jp.php"
  3204. ],
  3205. "type": "library",
  3206. "extra": {
  3207. "branch-alias": {
  3208. "dev-master": "2.6-dev"
  3209. }
  3210. },
  3211. "autoload": {
  3212. "files": [
  3213. "src/JmesPath.php"
  3214. ],
  3215. "psr-4": {
  3216. "JmesPath\\": "src/"
  3217. }
  3218. },
  3219. "notification-url": "https://packagist.org/downloads/",
  3220. "license": [
  3221. "MIT"
  3222. ],
  3223. "authors": [
  3224. {
  3225. "name": "Michael Dowling",
  3226. "email": "mtdowling@gmail.com",
  3227. "homepage": "https://github.com/mtdowling"
  3228. }
  3229. ],
  3230. "description": "Declaratively specify how to extract elements from a JSON document",
  3231. "keywords": [
  3232. "json",
  3233. "jsonpath"
  3234. ],
  3235. "support": {
  3236. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3237. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  3238. },
  3239. "time": "2021-06-14T00:11:39+00:00"
  3240. },
  3241. {
  3242. "name": "myclabs/php-enum",
  3243. "version": "1.6.6",
  3244. "source": {
  3245. "type": "git",
  3246. "url": "https://github.com/myclabs/php-enum.git",
  3247. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e"
  3248. },
  3249. "dist": {
  3250. "type": "zip",
  3251. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  3252. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  3253. "shasum": "",
  3254. "mirrors": [
  3255. {
  3256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3257. "preferred": true
  3258. }
  3259. ]
  3260. },
  3261. "require": {
  3262. "ext-json": "*",
  3263. "php": ">=5.4"
  3264. },
  3265. "require-dev": {
  3266. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  3267. "squizlabs/php_codesniffer": "1.*"
  3268. },
  3269. "type": "library",
  3270. "autoload": {
  3271. "psr-4": {
  3272. "MyCLabs\\Enum\\": "src/"
  3273. }
  3274. },
  3275. "notification-url": "https://packagist.org/downloads/",
  3276. "license": [
  3277. "MIT"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "PHP Enum contributors",
  3282. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3283. }
  3284. ],
  3285. "description": "PHP Enum implementation",
  3286. "homepage": "http://github.com/myclabs/php-enum",
  3287. "keywords": [
  3288. "enum"
  3289. ],
  3290. "support": {
  3291. "issues": "https://github.com/myclabs/php-enum/issues",
  3292. "source": "https://github.com/myclabs/php-enum/tree/master"
  3293. },
  3294. "time": "2019-02-04T21:18:49+00:00"
  3295. },
  3296. {
  3297. "name": "nesbot/carbon",
  3298. "version": "2.62.1",
  3299. "source": {
  3300. "type": "git",
  3301. "url": "https://github.com/briannesbitt/Carbon.git",
  3302. "reference": "01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a"
  3303. },
  3304. "dist": {
  3305. "type": "zip",
  3306. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a",
  3307. "reference": "01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a",
  3308. "shasum": "",
  3309. "mirrors": [
  3310. {
  3311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3312. "preferred": true
  3313. }
  3314. ]
  3315. },
  3316. "require": {
  3317. "ext-json": "*",
  3318. "php": "^7.1.8 || ^8.0",
  3319. "symfony/polyfill-mbstring": "^1.0",
  3320. "symfony/polyfill-php80": "^1.16",
  3321. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3322. },
  3323. "require-dev": {
  3324. "doctrine/dbal": "^2.0 || ^3.0",
  3325. "doctrine/orm": "^2.7",
  3326. "friendsofphp/php-cs-fixer": "^3.0",
  3327. "kylekatarnls/multi-tester": "^2.0",
  3328. "ondrejmirtes/better-reflection": "*",
  3329. "phpmd/phpmd": "^2.9",
  3330. "phpstan/extension-installer": "^1.0",
  3331. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3332. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3333. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3334. "squizlabs/php_codesniffer": "^3.4"
  3335. },
  3336. "bin": [
  3337. "bin/carbon"
  3338. ],
  3339. "type": "library",
  3340. "extra": {
  3341. "branch-alias": {
  3342. "dev-3.x": "3.x-dev",
  3343. "dev-master": "2.x-dev"
  3344. },
  3345. "laravel": {
  3346. "providers": [
  3347. "Carbon\\Laravel\\ServiceProvider"
  3348. ]
  3349. },
  3350. "phpstan": {
  3351. "includes": [
  3352. "extension.neon"
  3353. ]
  3354. }
  3355. },
  3356. "autoload": {
  3357. "psr-4": {
  3358. "Carbon\\": "src/Carbon/"
  3359. }
  3360. },
  3361. "notification-url": "https://packagist.org/downloads/",
  3362. "license": [
  3363. "MIT"
  3364. ],
  3365. "authors": [
  3366. {
  3367. "name": "Brian Nesbitt",
  3368. "email": "brian@nesbot.com",
  3369. "homepage": "https://markido.com"
  3370. },
  3371. {
  3372. "name": "kylekatarnls",
  3373. "homepage": "https://github.com/kylekatarnls"
  3374. }
  3375. ],
  3376. "description": "An API extension for DateTime that supports 281 different languages.",
  3377. "homepage": "https://carbon.nesbot.com",
  3378. "keywords": [
  3379. "date",
  3380. "datetime",
  3381. "time"
  3382. ],
  3383. "support": {
  3384. "docs": "https://carbon.nesbot.com/docs",
  3385. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3386. "source": "https://github.com/briannesbitt/Carbon"
  3387. },
  3388. "funding": [
  3389. {
  3390. "url": "https://github.com/sponsors/kylekatarnls",
  3391. "type": "github"
  3392. },
  3393. {
  3394. "url": "https://opencollective.com/Carbon#sponsor",
  3395. "type": "opencollective"
  3396. },
  3397. {
  3398. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3399. "type": "tidelift"
  3400. }
  3401. ],
  3402. "time": "2022-09-02T07:48:13+00:00"
  3403. },
  3404. {
  3405. "name": "nette/php-generator",
  3406. "version": "v3.6.8",
  3407. "source": {
  3408. "type": "git",
  3409. "url": "https://github.com/nette/php-generator.git",
  3410. "reference": "9073c8ac505b5f65af3bc2d1665be7d256e2dbe3"
  3411. },
  3412. "dist": {
  3413. "type": "zip",
  3414. "url": "https://api.github.com/repos/nette/php-generator/zipball/9073c8ac505b5f65af3bc2d1665be7d256e2dbe3",
  3415. "reference": "9073c8ac505b5f65af3bc2d1665be7d256e2dbe3",
  3416. "shasum": "",
  3417. "mirrors": [
  3418. {
  3419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3420. "preferred": true
  3421. }
  3422. ]
  3423. },
  3424. "require": {
  3425. "nette/utils": "^3.1.2",
  3426. "php": ">=7.2 <8.3"
  3427. },
  3428. "require-dev": {
  3429. "nette/tester": "^2.4",
  3430. "nikic/php-parser": "^4.13",
  3431. "phpstan/phpstan": "^0.12",
  3432. "tracy/tracy": "^2.8"
  3433. },
  3434. "suggest": {
  3435. "nikic/php-parser": "to use ClassType::withBodiesFrom() & GlobalFunction::withBodyFrom()"
  3436. },
  3437. "type": "library",
  3438. "extra": {
  3439. "branch-alias": {
  3440. "dev-master": "3.6-dev"
  3441. }
  3442. },
  3443. "autoload": {
  3444. "classmap": [
  3445. "src/"
  3446. ]
  3447. },
  3448. "notification-url": "https://packagist.org/downloads/",
  3449. "license": [
  3450. "BSD-3-Clause",
  3451. "GPL-2.0-only",
  3452. "GPL-3.0-only"
  3453. ],
  3454. "authors": [
  3455. {
  3456. "name": "David Grudl",
  3457. "homepage": "https://davidgrudl.com"
  3458. },
  3459. {
  3460. "name": "Nette Community",
  3461. "homepage": "https://nette.org/contributors"
  3462. }
  3463. ],
  3464. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 8.1 features.",
  3465. "homepage": "https://nette.org",
  3466. "keywords": [
  3467. "code",
  3468. "nette",
  3469. "php",
  3470. "scaffolding"
  3471. ],
  3472. "support": {
  3473. "issues": "https://github.com/nette/php-generator/issues",
  3474. "source": "https://github.com/nette/php-generator/tree/v3.6.8"
  3475. },
  3476. "time": "2022-09-12T22:13:59+00:00"
  3477. },
  3478. {
  3479. "name": "nette/utils",
  3480. "version": "v3.2.8",
  3481. "source": {
  3482. "type": "git",
  3483. "url": "https://github.com/nette/utils.git",
  3484. "reference": "a6784d523c0e67409b5c64c3d951e9871ef64241"
  3485. },
  3486. "dist": {
  3487. "type": "zip",
  3488. "url": "https://api.github.com/repos/nette/utils/zipball/a6784d523c0e67409b5c64c3d951e9871ef64241",
  3489. "reference": "a6784d523c0e67409b5c64c3d951e9871ef64241",
  3490. "shasum": "",
  3491. "mirrors": [
  3492. {
  3493. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3494. "preferred": true
  3495. }
  3496. ]
  3497. },
  3498. "require": {
  3499. "php": ">=7.2 <8.3"
  3500. },
  3501. "conflict": {
  3502. "nette/di": "<3.0.6"
  3503. },
  3504. "require-dev": {
  3505. "nette/tester": "~2.0",
  3506. "phpstan/phpstan": "^1.0",
  3507. "tracy/tracy": "^2.3"
  3508. },
  3509. "suggest": {
  3510. "ext-gd": "to use Image",
  3511. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3512. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3513. "ext-json": "to use Nette\\Utils\\Json",
  3514. "ext-mbstring": "to use Strings::lower() etc...",
  3515. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3516. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3517. },
  3518. "type": "library",
  3519. "extra": {
  3520. "branch-alias": {
  3521. "dev-master": "3.2-dev"
  3522. }
  3523. },
  3524. "autoload": {
  3525. "classmap": [
  3526. "src/"
  3527. ]
  3528. },
  3529. "notification-url": "https://packagist.org/downloads/",
  3530. "license": [
  3531. "BSD-3-Clause",
  3532. "GPL-2.0-only",
  3533. "GPL-3.0-only"
  3534. ],
  3535. "authors": [
  3536. {
  3537. "name": "David Grudl",
  3538. "homepage": "https://davidgrudl.com"
  3539. },
  3540. {
  3541. "name": "Nette Community",
  3542. "homepage": "https://nette.org/contributors"
  3543. }
  3544. ],
  3545. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3546. "homepage": "https://nette.org",
  3547. "keywords": [
  3548. "array",
  3549. "core",
  3550. "datetime",
  3551. "images",
  3552. "json",
  3553. "nette",
  3554. "paginator",
  3555. "password",
  3556. "slugify",
  3557. "string",
  3558. "unicode",
  3559. "utf-8",
  3560. "utility",
  3561. "validation"
  3562. ],
  3563. "support": {
  3564. "issues": "https://github.com/nette/utils/issues",
  3565. "source": "https://github.com/nette/utils/tree/v3.2.8"
  3566. },
  3567. "time": "2022-09-06T00:55:00+00:00"
  3568. },
  3569. {
  3570. "name": "open-smf/connection-pool",
  3571. "version": "v1.0.16",
  3572. "source": {
  3573. "type": "git",
  3574. "url": "https://github.com/open-smf/connection-pool.git",
  3575. "reference": "f70e47dbf56f1869d3207e15825cf38810b865e0"
  3576. },
  3577. "dist": {
  3578. "type": "zip",
  3579. "url": "https://api.github.com/repos/open-smf/connection-pool/zipball/f70e47dbf56f1869d3207e15825cf38810b865e0",
  3580. "reference": "f70e47dbf56f1869d3207e15825cf38810b865e0",
  3581. "shasum": "",
  3582. "mirrors": [
  3583. {
  3584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3585. "preferred": true
  3586. }
  3587. ]
  3588. },
  3589. "require": {
  3590. "ext-json": "*",
  3591. "ext-swoole": ">=4.2.9",
  3592. "php": ">=7.0.0"
  3593. },
  3594. "require-dev": {
  3595. "swoole/ide-helper": "@dev"
  3596. },
  3597. "suggest": {
  3598. "ext-redis": "A PHP extension for Redis."
  3599. },
  3600. "type": "library",
  3601. "autoload": {
  3602. "psr-4": {
  3603. "Smf\\ConnectionPool\\": "src"
  3604. }
  3605. },
  3606. "notification-url": "https://packagist.org/downloads/",
  3607. "license": [
  3608. "MIT"
  3609. ],
  3610. "authors": [
  3611. {
  3612. "name": "Xie Biao",
  3613. "email": "hhxsv5@sina.com"
  3614. }
  3615. ],
  3616. "description": "A common connection pool based on Swoole is usually used as the database connection pool.",
  3617. "homepage": "https://github.com/open-smf/connection-pool",
  3618. "keywords": [
  3619. "connection-pool",
  3620. "database-connection-pool",
  3621. "swoole"
  3622. ],
  3623. "support": {
  3624. "issues": "https://github.com/open-smf/connection-pool/issues",
  3625. "source": "https://github.com/open-smf/connection-pool"
  3626. },
  3627. "time": "2021-03-01T04:13:24+00:00"
  3628. },
  3629. {
  3630. "name": "overtrue/socialite",
  3631. "version": "3.5.3",
  3632. "source": {
  3633. "type": "git",
  3634. "url": "https://github.com/overtrue/socialite.git",
  3635. "reference": "0d1a29e853cdb01e636715fe96290ed4b62106bc"
  3636. },
  3637. "dist": {
  3638. "type": "zip",
  3639. "url": "https://api.github.com/repos/overtrue/socialite/zipball/0d1a29e853cdb01e636715fe96290ed4b62106bc",
  3640. "reference": "0d1a29e853cdb01e636715fe96290ed4b62106bc",
  3641. "shasum": "",
  3642. "mirrors": [
  3643. {
  3644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3645. "preferred": true
  3646. }
  3647. ]
  3648. },
  3649. "require": {
  3650. "ext-json": "*",
  3651. "ext-openssl": "*",
  3652. "guzzlehttp/guzzle": "~6.0|~7.0",
  3653. "php": ">=7.4",
  3654. "symfony/http-foundation": "^5.0",
  3655. "symfony/psr-http-message-bridge": "^2.0"
  3656. },
  3657. "require-dev": {
  3658. "friendsofphp/php-cs-fixer": "^3.0",
  3659. "mockery/mockery": "~1.2",
  3660. "phpunit/phpunit": "~9.0"
  3661. },
  3662. "type": "library",
  3663. "autoload": {
  3664. "psr-4": {
  3665. "Overtrue\\Socialite\\": "src/"
  3666. }
  3667. },
  3668. "notification-url": "https://packagist.org/downloads/",
  3669. "license": [
  3670. "MIT"
  3671. ],
  3672. "authors": [
  3673. {
  3674. "name": "overtrue",
  3675. "email": "anzhengchao@gmail.com"
  3676. }
  3677. ],
  3678. "description": "A collection of OAuth 2 packages.",
  3679. "keywords": [
  3680. "Feishu",
  3681. "login",
  3682. "oauth",
  3683. "qcloud",
  3684. "qq",
  3685. "social",
  3686. "wechat",
  3687. "weibo"
  3688. ],
  3689. "support": {
  3690. "issues": "https://github.com/overtrue/socialite/issues",
  3691. "source": "https://github.com/overtrue/socialite/tree/3.5.3"
  3692. },
  3693. "funding": [
  3694. {
  3695. "url": "https://github.com/overtrue",
  3696. "type": "github"
  3697. }
  3698. ],
  3699. "time": "2022-08-22T02:55:49+00:00"
  3700. },
  3701. {
  3702. "name": "overtrue/wechat",
  3703. "version": "5.30.0",
  3704. "source": {
  3705. "type": "git",
  3706. "url": "https://github.com/w7corp/easywechat.git",
  3707. "reference": "245d1e821bc5a4609625c3244b111f570692cfc2"
  3708. },
  3709. "dist": {
  3710. "type": "zip",
  3711. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/245d1e821bc5a4609625c3244b111f570692cfc2",
  3712. "reference": "245d1e821bc5a4609625c3244b111f570692cfc2",
  3713. "shasum": "",
  3714. "mirrors": [
  3715. {
  3716. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3717. "preferred": true
  3718. }
  3719. ]
  3720. },
  3721. "require": {
  3722. "easywechat-composer/easywechat-composer": "^1.1",
  3723. "ext-fileinfo": "*",
  3724. "ext-libxml": "*",
  3725. "ext-openssl": "*",
  3726. "ext-simplexml": "*",
  3727. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3728. "monolog/monolog": "^1.22 || ^2.0",
  3729. "overtrue/socialite": "^3.2 || ^4.0",
  3730. "php": ">=7.4",
  3731. "pimple/pimple": "^3.0",
  3732. "psr/simple-cache": "^1.0||^2.0||^3.0",
  3733. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  3734. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  3735. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
  3736. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  3737. },
  3738. "require-dev": {
  3739. "brainmaestro/composer-git-hooks": "^2.7",
  3740. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  3741. "friendsofphp/php-cs-fixer": "^3.5.0",
  3742. "mikey179/vfsstream": "^1.6",
  3743. "mockery/mockery": "^1.2.3",
  3744. "phpstan/phpstan": "^0.12.0",
  3745. "phpunit/phpunit": "^9.3"
  3746. },
  3747. "type": "library",
  3748. "extra": {
  3749. "hooks": {
  3750. "pre-commit": [
  3751. "composer test",
  3752. "composer fix-style"
  3753. ],
  3754. "pre-push": [
  3755. "composer test",
  3756. "composer fix-style"
  3757. ]
  3758. }
  3759. },
  3760. "autoload": {
  3761. "files": [
  3762. "src/Kernel/Support/Helpers.php",
  3763. "src/Kernel/Helpers.php"
  3764. ],
  3765. "psr-4": {
  3766. "EasyWeChat\\": "src/"
  3767. }
  3768. },
  3769. "notification-url": "https://packagist.org/downloads/",
  3770. "license": [
  3771. "MIT"
  3772. ],
  3773. "authors": [
  3774. {
  3775. "name": "overtrue",
  3776. "email": "anzhengchao@gmail.com"
  3777. }
  3778. ],
  3779. "description": "微信SDK",
  3780. "keywords": [
  3781. "easywechat",
  3782. "sdk",
  3783. "wechat",
  3784. "weixin",
  3785. "weixin-sdk"
  3786. ],
  3787. "support": {
  3788. "issues": "https://github.com/w7corp/easywechat/issues",
  3789. "source": "https://github.com/w7corp/easywechat/tree/5.30.0"
  3790. },
  3791. "funding": [
  3792. {
  3793. "url": "https://github.com/overtrue",
  3794. "type": "github"
  3795. }
  3796. ],
  3797. "abandoned": "w7corp/easywechat",
  3798. "time": "2022-09-05T08:22:34+00:00"
  3799. },
  3800. {
  3801. "name": "phpoffice/phpspreadsheet",
  3802. "version": "1.24.0",
  3803. "source": {
  3804. "type": "git",
  3805. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3806. "reference": "ebe8745c92a7cac4514d040758393b5399633b83"
  3807. },
  3808. "dist": {
  3809. "type": "zip",
  3810. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/ebe8745c92a7cac4514d040758393b5399633b83",
  3811. "reference": "ebe8745c92a7cac4514d040758393b5399633b83",
  3812. "shasum": "",
  3813. "mirrors": [
  3814. {
  3815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3816. "preferred": true
  3817. }
  3818. ]
  3819. },
  3820. "require": {
  3821. "ext-ctype": "*",
  3822. "ext-dom": "*",
  3823. "ext-fileinfo": "*",
  3824. "ext-gd": "*",
  3825. "ext-iconv": "*",
  3826. "ext-libxml": "*",
  3827. "ext-mbstring": "*",
  3828. "ext-simplexml": "*",
  3829. "ext-xml": "*",
  3830. "ext-xmlreader": "*",
  3831. "ext-xmlwriter": "*",
  3832. "ext-zip": "*",
  3833. "ext-zlib": "*",
  3834. "ezyang/htmlpurifier": "^4.13",
  3835. "maennchen/zipstream-php": "^2.1",
  3836. "markbaker/complex": "^3.0",
  3837. "markbaker/matrix": "^3.0",
  3838. "php": "^7.3 || ^8.0",
  3839. "psr/http-client": "^1.0",
  3840. "psr/http-factory": "^1.0",
  3841. "psr/simple-cache": "^1.0 || ^2.0"
  3842. },
  3843. "require-dev": {
  3844. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3845. "dompdf/dompdf": "^1.0 || ^2.0",
  3846. "friendsofphp/php-cs-fixer": "^3.2",
  3847. "jpgraph/jpgraph": "^4.0",
  3848. "mpdf/mpdf": "8.1.1",
  3849. "phpcompatibility/php-compatibility": "^9.3",
  3850. "phpstan/phpstan": "^1.1",
  3851. "phpstan/phpstan-phpunit": "^1.0",
  3852. "phpunit/phpunit": "^8.5 || ^9.0",
  3853. "squizlabs/php_codesniffer": "^3.7",
  3854. "tecnickcom/tcpdf": "^6.4"
  3855. },
  3856. "suggest": {
  3857. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3858. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3859. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3860. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3861. },
  3862. "type": "library",
  3863. "autoload": {
  3864. "psr-4": {
  3865. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3866. }
  3867. },
  3868. "notification-url": "https://packagist.org/downloads/",
  3869. "license": [
  3870. "MIT"
  3871. ],
  3872. "authors": [
  3873. {
  3874. "name": "Maarten Balliauw",
  3875. "homepage": "https://blog.maartenballiauw.be"
  3876. },
  3877. {
  3878. "name": "Mark Baker",
  3879. "homepage": "https://markbakeruk.net"
  3880. },
  3881. {
  3882. "name": "Franck Lefevre",
  3883. "homepage": "https://rootslabs.net"
  3884. },
  3885. {
  3886. "name": "Erik Tilt"
  3887. },
  3888. {
  3889. "name": "Adrien Crivelli"
  3890. }
  3891. ],
  3892. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3893. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3894. "keywords": [
  3895. "OpenXML",
  3896. "excel",
  3897. "gnumeric",
  3898. "ods",
  3899. "php",
  3900. "spreadsheet",
  3901. "xls",
  3902. "xlsx"
  3903. ],
  3904. "support": {
  3905. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3906. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.24.0"
  3907. },
  3908. "time": "2022-07-09T13:49:09+00:00"
  3909. },
  3910. {
  3911. "name": "pimple/pimple",
  3912. "version": "v3.5.0",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://github.com/silexphp/Pimple.git",
  3916. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3921. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3922. "shasum": "",
  3923. "mirrors": [
  3924. {
  3925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3926. "preferred": true
  3927. }
  3928. ]
  3929. },
  3930. "require": {
  3931. "php": ">=7.2.5",
  3932. "psr/container": "^1.1 || ^2.0"
  3933. },
  3934. "require-dev": {
  3935. "symfony/phpunit-bridge": "^5.4@dev"
  3936. },
  3937. "type": "library",
  3938. "extra": {
  3939. "branch-alias": {
  3940. "dev-master": "3.4.x-dev"
  3941. }
  3942. },
  3943. "autoload": {
  3944. "psr-0": {
  3945. "Pimple": "src/"
  3946. }
  3947. },
  3948. "notification-url": "https://packagist.org/downloads/",
  3949. "license": [
  3950. "MIT"
  3951. ],
  3952. "authors": [
  3953. {
  3954. "name": "Fabien Potencier",
  3955. "email": "fabien@symfony.com"
  3956. }
  3957. ],
  3958. "description": "Pimple, a simple Dependency Injection Container",
  3959. "homepage": "https://pimple.symfony.com",
  3960. "keywords": [
  3961. "container",
  3962. "dependency injection"
  3963. ],
  3964. "support": {
  3965. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  3966. },
  3967. "time": "2021-10-28T11:13:42+00:00"
  3968. },
  3969. {
  3970. "name": "psr/cache",
  3971. "version": "1.0.1",
  3972. "source": {
  3973. "type": "git",
  3974. "url": "https://github.com/php-fig/cache.git",
  3975. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3976. },
  3977. "dist": {
  3978. "type": "zip",
  3979. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3980. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3981. "shasum": "",
  3982. "mirrors": [
  3983. {
  3984. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3985. "preferred": true
  3986. }
  3987. ]
  3988. },
  3989. "require": {
  3990. "php": ">=5.3.0"
  3991. },
  3992. "type": "library",
  3993. "extra": {
  3994. "branch-alias": {
  3995. "dev-master": "1.0.x-dev"
  3996. }
  3997. },
  3998. "autoload": {
  3999. "psr-4": {
  4000. "Psr\\Cache\\": "src/"
  4001. }
  4002. },
  4003. "notification-url": "https://packagist.org/downloads/",
  4004. "license": [
  4005. "MIT"
  4006. ],
  4007. "authors": [
  4008. {
  4009. "name": "PHP-FIG",
  4010. "homepage": "http://www.php-fig.org/"
  4011. }
  4012. ],
  4013. "description": "Common interface for caching libraries",
  4014. "keywords": [
  4015. "cache",
  4016. "psr",
  4017. "psr-6"
  4018. ],
  4019. "support": {
  4020. "source": "https://github.com/php-fig/cache/tree/master"
  4021. },
  4022. "time": "2016-08-06T20:24:11+00:00"
  4023. },
  4024. {
  4025. "name": "psr/container",
  4026. "version": "1.1.2",
  4027. "source": {
  4028. "type": "git",
  4029. "url": "https://github.com/php-fig/container.git",
  4030. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4031. },
  4032. "dist": {
  4033. "type": "zip",
  4034. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4035. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4036. "shasum": "",
  4037. "mirrors": [
  4038. {
  4039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4040. "preferred": true
  4041. }
  4042. ]
  4043. },
  4044. "require": {
  4045. "php": ">=7.4.0"
  4046. },
  4047. "type": "library",
  4048. "autoload": {
  4049. "psr-4": {
  4050. "Psr\\Container\\": "src/"
  4051. }
  4052. },
  4053. "notification-url": "https://packagist.org/downloads/",
  4054. "license": [
  4055. "MIT"
  4056. ],
  4057. "authors": [
  4058. {
  4059. "name": "PHP-FIG",
  4060. "homepage": "https://www.php-fig.org/"
  4061. }
  4062. ],
  4063. "description": "Common Container Interface (PHP FIG PSR-11)",
  4064. "homepage": "https://github.com/php-fig/container",
  4065. "keywords": [
  4066. "PSR-11",
  4067. "container",
  4068. "container-interface",
  4069. "container-interop",
  4070. "psr"
  4071. ],
  4072. "support": {
  4073. "issues": "https://github.com/php-fig/container/issues",
  4074. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4075. },
  4076. "time": "2021-11-05T16:50:12+00:00"
  4077. },
  4078. {
  4079. "name": "psr/event-dispatcher",
  4080. "version": "1.0.0",
  4081. "source": {
  4082. "type": "git",
  4083. "url": "https://github.com/php-fig/event-dispatcher.git",
  4084. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4085. },
  4086. "dist": {
  4087. "type": "zip",
  4088. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4089. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4090. "shasum": "",
  4091. "mirrors": [
  4092. {
  4093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4094. "preferred": true
  4095. }
  4096. ]
  4097. },
  4098. "require": {
  4099. "php": ">=7.2.0"
  4100. },
  4101. "type": "library",
  4102. "extra": {
  4103. "branch-alias": {
  4104. "dev-master": "1.0.x-dev"
  4105. }
  4106. },
  4107. "autoload": {
  4108. "psr-4": {
  4109. "Psr\\EventDispatcher\\": "src/"
  4110. }
  4111. },
  4112. "notification-url": "https://packagist.org/downloads/",
  4113. "license": [
  4114. "MIT"
  4115. ],
  4116. "authors": [
  4117. {
  4118. "name": "PHP-FIG",
  4119. "homepage": "http://www.php-fig.org/"
  4120. }
  4121. ],
  4122. "description": "Standard interfaces for event handling.",
  4123. "keywords": [
  4124. "events",
  4125. "psr",
  4126. "psr-14"
  4127. ],
  4128. "support": {
  4129. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4130. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4131. },
  4132. "time": "2019-01-08T18:20:26+00:00"
  4133. },
  4134. {
  4135. "name": "psr/http-client",
  4136. "version": "1.0.1",
  4137. "source": {
  4138. "type": "git",
  4139. "url": "https://github.com/php-fig/http-client.git",
  4140. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4141. },
  4142. "dist": {
  4143. "type": "zip",
  4144. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4145. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4146. "shasum": "",
  4147. "mirrors": [
  4148. {
  4149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4150. "preferred": true
  4151. }
  4152. ]
  4153. },
  4154. "require": {
  4155. "php": "^7.0 || ^8.0",
  4156. "psr/http-message": "^1.0"
  4157. },
  4158. "type": "library",
  4159. "extra": {
  4160. "branch-alias": {
  4161. "dev-master": "1.0.x-dev"
  4162. }
  4163. },
  4164. "autoload": {
  4165. "psr-4": {
  4166. "Psr\\Http\\Client\\": "src/"
  4167. }
  4168. },
  4169. "notification-url": "https://packagist.org/downloads/",
  4170. "license": [
  4171. "MIT"
  4172. ],
  4173. "authors": [
  4174. {
  4175. "name": "PHP-FIG",
  4176. "homepage": "http://www.php-fig.org/"
  4177. }
  4178. ],
  4179. "description": "Common interface for HTTP clients",
  4180. "homepage": "https://github.com/php-fig/http-client",
  4181. "keywords": [
  4182. "http",
  4183. "http-client",
  4184. "psr",
  4185. "psr-18"
  4186. ],
  4187. "support": {
  4188. "source": "https://github.com/php-fig/http-client/tree/master"
  4189. },
  4190. "time": "2020-06-29T06:28:15+00:00"
  4191. },
  4192. {
  4193. "name": "psr/http-factory",
  4194. "version": "1.0.1",
  4195. "source": {
  4196. "type": "git",
  4197. "url": "https://github.com/php-fig/http-factory.git",
  4198. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4199. },
  4200. "dist": {
  4201. "type": "zip",
  4202. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4203. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4204. "shasum": "",
  4205. "mirrors": [
  4206. {
  4207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4208. "preferred": true
  4209. }
  4210. ]
  4211. },
  4212. "require": {
  4213. "php": ">=7.0.0",
  4214. "psr/http-message": "^1.0"
  4215. },
  4216. "type": "library",
  4217. "extra": {
  4218. "branch-alias": {
  4219. "dev-master": "1.0.x-dev"
  4220. }
  4221. },
  4222. "autoload": {
  4223. "psr-4": {
  4224. "Psr\\Http\\Message\\": "src/"
  4225. }
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "authors": [
  4232. {
  4233. "name": "PHP-FIG",
  4234. "homepage": "http://www.php-fig.org/"
  4235. }
  4236. ],
  4237. "description": "Common interfaces for PSR-7 HTTP message factories",
  4238. "keywords": [
  4239. "factory",
  4240. "http",
  4241. "message",
  4242. "psr",
  4243. "psr-17",
  4244. "psr-7",
  4245. "request",
  4246. "response"
  4247. ],
  4248. "support": {
  4249. "source": "https://github.com/php-fig/http-factory/tree/master"
  4250. },
  4251. "time": "2019-04-30T12:38:16+00:00"
  4252. },
  4253. {
  4254. "name": "psr/http-message",
  4255. "version": "1.0.1",
  4256. "source": {
  4257. "type": "git",
  4258. "url": "https://github.com/php-fig/http-message.git",
  4259. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4260. },
  4261. "dist": {
  4262. "type": "zip",
  4263. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4264. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4265. "shasum": "",
  4266. "mirrors": [
  4267. {
  4268. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4269. "preferred": true
  4270. }
  4271. ]
  4272. },
  4273. "require": {
  4274. "php": ">=5.3.0"
  4275. },
  4276. "type": "library",
  4277. "extra": {
  4278. "branch-alias": {
  4279. "dev-master": "1.0.x-dev"
  4280. }
  4281. },
  4282. "autoload": {
  4283. "psr-4": {
  4284. "Psr\\Http\\Message\\": "src/"
  4285. }
  4286. },
  4287. "notification-url": "https://packagist.org/downloads/",
  4288. "license": [
  4289. "MIT"
  4290. ],
  4291. "authors": [
  4292. {
  4293. "name": "PHP-FIG",
  4294. "homepage": "http://www.php-fig.org/"
  4295. }
  4296. ],
  4297. "description": "Common interface for HTTP messages",
  4298. "homepage": "https://github.com/php-fig/http-message",
  4299. "keywords": [
  4300. "http",
  4301. "http-message",
  4302. "psr",
  4303. "psr-7",
  4304. "request",
  4305. "response"
  4306. ],
  4307. "support": {
  4308. "source": "https://github.com/php-fig/http-message/tree/master"
  4309. },
  4310. "time": "2016-08-06T14:39:51+00:00"
  4311. },
  4312. {
  4313. "name": "psr/log",
  4314. "version": "1.1.4",
  4315. "source": {
  4316. "type": "git",
  4317. "url": "https://github.com/php-fig/log.git",
  4318. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4319. },
  4320. "dist": {
  4321. "type": "zip",
  4322. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4323. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4324. "shasum": "",
  4325. "mirrors": [
  4326. {
  4327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4328. "preferred": true
  4329. }
  4330. ]
  4331. },
  4332. "require": {
  4333. "php": ">=5.3.0"
  4334. },
  4335. "type": "library",
  4336. "extra": {
  4337. "branch-alias": {
  4338. "dev-master": "1.1.x-dev"
  4339. }
  4340. },
  4341. "autoload": {
  4342. "psr-4": {
  4343. "Psr\\Log\\": "Psr/Log/"
  4344. }
  4345. },
  4346. "notification-url": "https://packagist.org/downloads/",
  4347. "license": [
  4348. "MIT"
  4349. ],
  4350. "authors": [
  4351. {
  4352. "name": "PHP-FIG",
  4353. "homepage": "https://www.php-fig.org/"
  4354. }
  4355. ],
  4356. "description": "Common interface for logging libraries",
  4357. "homepage": "https://github.com/php-fig/log",
  4358. "keywords": [
  4359. "log",
  4360. "psr",
  4361. "psr-3"
  4362. ],
  4363. "support": {
  4364. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4365. },
  4366. "time": "2021-05-03T11:20:27+00:00"
  4367. },
  4368. {
  4369. "name": "psr/simple-cache",
  4370. "version": "1.0.1",
  4371. "source": {
  4372. "type": "git",
  4373. "url": "https://github.com/php-fig/simple-cache.git",
  4374. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4375. },
  4376. "dist": {
  4377. "type": "zip",
  4378. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4379. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4380. "shasum": "",
  4381. "mirrors": [
  4382. {
  4383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4384. "preferred": true
  4385. }
  4386. ]
  4387. },
  4388. "require": {
  4389. "php": ">=5.3.0"
  4390. },
  4391. "type": "library",
  4392. "extra": {
  4393. "branch-alias": {
  4394. "dev-master": "1.0.x-dev"
  4395. }
  4396. },
  4397. "autoload": {
  4398. "psr-4": {
  4399. "Psr\\SimpleCache\\": "src/"
  4400. }
  4401. },
  4402. "notification-url": "https://packagist.org/downloads/",
  4403. "license": [
  4404. "MIT"
  4405. ],
  4406. "authors": [
  4407. {
  4408. "name": "PHP-FIG",
  4409. "homepage": "http://www.php-fig.org/"
  4410. }
  4411. ],
  4412. "description": "Common interfaces for simple caching",
  4413. "keywords": [
  4414. "cache",
  4415. "caching",
  4416. "psr",
  4417. "psr-16",
  4418. "simple-cache"
  4419. ],
  4420. "support": {
  4421. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4422. },
  4423. "time": "2017-10-23T01:57:42+00:00"
  4424. },
  4425. {
  4426. "name": "qcloud/cos-sdk-v5",
  4427. "version": "v2.5.6",
  4428. "source": {
  4429. "type": "git",
  4430. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  4431. "reference": "607ee49d372a799964206b6ae0a9eb2816201c42"
  4432. },
  4433. "dist": {
  4434. "type": "zip",
  4435. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/607ee49d372a799964206b6ae0a9eb2816201c42",
  4436. "reference": "607ee49d372a799964206b6ae0a9eb2816201c42",
  4437. "shasum": "",
  4438. "mirrors": [
  4439. {
  4440. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4441. "preferred": true
  4442. }
  4443. ]
  4444. },
  4445. "require": {
  4446. "ext-curl": "*",
  4447. "ext-json": "*",
  4448. "ext-simplexml": "*",
  4449. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  4450. "guzzlehttp/guzzle-services": "^1.1",
  4451. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  4452. "php": ">=5.6"
  4453. },
  4454. "type": "library",
  4455. "extra": {
  4456. "branch-alias": {
  4457. "dev-master": "2.4-dev"
  4458. }
  4459. },
  4460. "autoload": {
  4461. "files": [
  4462. "src/Common.php"
  4463. ],
  4464. "psr-4": {
  4465. "Qcloud\\Cos\\": "src/"
  4466. }
  4467. },
  4468. "notification-url": "https://packagist.org/downloads/",
  4469. "license": [
  4470. "MIT"
  4471. ],
  4472. "authors": [
  4473. {
  4474. "name": "yaozongyou",
  4475. "email": "yaozongyou@vip.qq.com"
  4476. },
  4477. {
  4478. "name": "lewzylu",
  4479. "email": "327874225@qq.com"
  4480. },
  4481. {
  4482. "name": "tuunalai",
  4483. "email": "550566181@qq.com"
  4484. }
  4485. ],
  4486. "description": "PHP SDK for QCloud COS",
  4487. "keywords": [
  4488. "cos",
  4489. "php",
  4490. "qcloud"
  4491. ],
  4492. "support": {
  4493. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  4494. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.5.6"
  4495. },
  4496. "time": "2022-06-07T14:49:19+00:00"
  4497. },
  4498. {
  4499. "name": "qcloud_sts/qcloud-sts-sdk",
  4500. "version": "3.0.8",
  4501. "source": {
  4502. "type": "git",
  4503. "url": "https://github.com/tencentyun/qcloud-cos-sts-php-sdk.git",
  4504. "reference": "d5722151ada6e41da3b27cd4b6ad2ce04baa1163"
  4505. },
  4506. "dist": {
  4507. "type": "zip",
  4508. "url": "https://api.github.com/repos/tencentyun/qcloud-cos-sts-php-sdk/zipball/d5722151ada6e41da3b27cd4b6ad2ce04baa1163",
  4509. "reference": "d5722151ada6e41da3b27cd4b6ad2ce04baa1163",
  4510. "shasum": "",
  4511. "mirrors": [
  4512. {
  4513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4514. "preferred": true
  4515. }
  4516. ]
  4517. },
  4518. "require": {
  4519. "ext-curl": "*",
  4520. "php": ">=5.3.0"
  4521. },
  4522. "type": "library",
  4523. "autoload": {
  4524. "psr-4": {
  4525. "QCloud\\COSSTS\\": "src"
  4526. }
  4527. },
  4528. "notification-url": "https://packagist.org/downloads/",
  4529. "license": [
  4530. "MIT"
  4531. ],
  4532. "authors": [
  4533. {
  4534. "name": "qcloudterminal",
  4535. "email": "qcloudterminal@gmail.com"
  4536. },
  4537. {
  4538. "name": "tuunalai",
  4539. "email": "550566181@qq.com"
  4540. }
  4541. ],
  4542. "description": "PHP SDK for QCloud STS",
  4543. "homepage": "https://github.com/tencentyun/qcloud-cos-sts-sdk",
  4544. "keywords": [
  4545. "cos",
  4546. "php",
  4547. "qcloud",
  4548. "sts"
  4549. ],
  4550. "support": {
  4551. "issues": "https://github.com/tencentyun/qcloud-cos-sts-php-sdk/issues",
  4552. "source": "https://github.com/tencentyun/qcloud-cos-sts-php-sdk/tree/3.0.8"
  4553. },
  4554. "time": "2022-04-15T02:46:57+00:00"
  4555. },
  4556. {
  4557. "name": "qiniu/php-sdk",
  4558. "version": "v7.7.0",
  4559. "source": {
  4560. "type": "git",
  4561. "url": "https://github.com/qiniu/php-sdk.git",
  4562. "reference": "dde03fc55de64815412f8ccfe24e1bd21564a6f1"
  4563. },
  4564. "dist": {
  4565. "type": "zip",
  4566. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/dde03fc55de64815412f8ccfe24e1bd21564a6f1",
  4567. "reference": "dde03fc55de64815412f8ccfe24e1bd21564a6f1",
  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. "myclabs/php-enum": "1.6.6",
  4578. "php": ">=5.3.3"
  4579. },
  4580. "require-dev": {
  4581. "paragonie/random_compat": ">=2",
  4582. "phpunit/phpunit": "~4.0",
  4583. "squizlabs/php_codesniffer": "~3.6"
  4584. },
  4585. "type": "library",
  4586. "autoload": {
  4587. "files": [
  4588. "src/Qiniu/functions.php"
  4589. ],
  4590. "psr-4": {
  4591. "Qiniu\\": "src/Qiniu"
  4592. }
  4593. },
  4594. "notification-url": "https://packagist.org/downloads/",
  4595. "license": [
  4596. "MIT"
  4597. ],
  4598. "authors": [
  4599. {
  4600. "name": "Qiniu",
  4601. "email": "sdk@qiniu.com",
  4602. "homepage": "http://www.qiniu.com"
  4603. }
  4604. ],
  4605. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  4606. "homepage": "http://developer.qiniu.com/",
  4607. "keywords": [
  4608. "cloud",
  4609. "qiniu",
  4610. "sdk",
  4611. "storage"
  4612. ],
  4613. "support": {
  4614. "issues": "https://github.com/qiniu/php-sdk/issues",
  4615. "source": "https://github.com/qiniu/php-sdk/tree/v7.7.0"
  4616. },
  4617. "time": "2022-09-02T10:53:05+00:00"
  4618. },
  4619. {
  4620. "name": "ralouphie/getallheaders",
  4621. "version": "3.0.3",
  4622. "source": {
  4623. "type": "git",
  4624. "url": "https://github.com/ralouphie/getallheaders.git",
  4625. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4626. },
  4627. "dist": {
  4628. "type": "zip",
  4629. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4630. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4631. "shasum": "",
  4632. "mirrors": [
  4633. {
  4634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4635. "preferred": true
  4636. }
  4637. ]
  4638. },
  4639. "require": {
  4640. "php": ">=5.6"
  4641. },
  4642. "require-dev": {
  4643. "php-coveralls/php-coveralls": "^2.1",
  4644. "phpunit/phpunit": "^5 || ^6.5"
  4645. },
  4646. "type": "library",
  4647. "autoload": {
  4648. "files": [
  4649. "src/getallheaders.php"
  4650. ]
  4651. },
  4652. "notification-url": "https://packagist.org/downloads/",
  4653. "license": [
  4654. "MIT"
  4655. ],
  4656. "authors": [
  4657. {
  4658. "name": "Ralph Khattar",
  4659. "email": "ralph.khattar@gmail.com"
  4660. }
  4661. ],
  4662. "description": "A polyfill for getallheaders.",
  4663. "support": {
  4664. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4665. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4666. },
  4667. "time": "2019-03-08T08:55:37+00:00"
  4668. },
  4669. {
  4670. "name": "react/promise",
  4671. "version": "v2.9.0",
  4672. "source": {
  4673. "type": "git",
  4674. "url": "https://github.com/reactphp/promise.git",
  4675. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910"
  4676. },
  4677. "dist": {
  4678. "type": "zip",
  4679. "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  4680. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  4681. "shasum": "",
  4682. "mirrors": [
  4683. {
  4684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4685. "preferred": true
  4686. }
  4687. ]
  4688. },
  4689. "require": {
  4690. "php": ">=5.4.0"
  4691. },
  4692. "require-dev": {
  4693. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  4694. },
  4695. "type": "library",
  4696. "autoload": {
  4697. "files": [
  4698. "src/functions_include.php"
  4699. ],
  4700. "psr-4": {
  4701. "React\\Promise\\": "src/"
  4702. }
  4703. },
  4704. "notification-url": "https://packagist.org/downloads/",
  4705. "license": [
  4706. "MIT"
  4707. ],
  4708. "authors": [
  4709. {
  4710. "name": "Jan Sorgalla",
  4711. "email": "jsorgalla@gmail.com",
  4712. "homepage": "https://sorgalla.com/"
  4713. },
  4714. {
  4715. "name": "Christian Lück",
  4716. "email": "christian@clue.engineering",
  4717. "homepage": "https://clue.engineering/"
  4718. },
  4719. {
  4720. "name": "Cees-Jan Kiewiet",
  4721. "email": "reactphp@ceesjankiewiet.nl",
  4722. "homepage": "https://wyrihaximus.net/"
  4723. },
  4724. {
  4725. "name": "Chris Boden",
  4726. "email": "cboden@gmail.com",
  4727. "homepage": "https://cboden.dev/"
  4728. }
  4729. ],
  4730. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  4731. "keywords": [
  4732. "promise",
  4733. "promises"
  4734. ],
  4735. "support": {
  4736. "issues": "https://github.com/reactphp/promise/issues",
  4737. "source": "https://github.com/reactphp/promise/tree/v2.9.0"
  4738. },
  4739. "funding": [
  4740. {
  4741. "url": "https://github.com/WyriHaximus",
  4742. "type": "github"
  4743. },
  4744. {
  4745. "url": "https://github.com/clue",
  4746. "type": "github"
  4747. }
  4748. ],
  4749. "time": "2022-02-11T10:27:51+00:00"
  4750. },
  4751. {
  4752. "name": "reasno/swoole-aliyunoss-addon",
  4753. "version": "v1.0.1",
  4754. "source": {
  4755. "type": "git",
  4756. "url": "https://github.com/Reasno/swoole-aliyunoss-addon.git",
  4757. "reference": "518575e697302842105d1774b219ebed17df345f"
  4758. },
  4759. "dist": {
  4760. "type": "zip",
  4761. "url": "https://api.github.com/repos/Reasno/swoole-aliyunoss-addon/zipball/518575e697302842105d1774b219ebed17df345f",
  4762. "reference": "518575e697302842105d1774b219ebed17df345f",
  4763. "shasum": "",
  4764. "mirrors": [
  4765. {
  4766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4767. "preferred": true
  4768. }
  4769. ]
  4770. },
  4771. "require": {
  4772. "ext-swoole": ">=4.4.13"
  4773. },
  4774. "require-dev": {
  4775. "swoole/ide-helper": "dev-master"
  4776. },
  4777. "suggest": {
  4778. "aliyuncs/oss-sdk-php": "install the official oss sdk"
  4779. },
  4780. "type": "library",
  4781. "autoload": {
  4782. "files": [
  4783. "src/Hook.php"
  4784. ]
  4785. },
  4786. "notification-url": "https://packagist.org/downloads/",
  4787. "license": [
  4788. "MIT"
  4789. ],
  4790. "authors": [
  4791. {
  4792. "name": "Reasno",
  4793. "email": "guxi99@gmail.com"
  4794. }
  4795. ],
  4796. "description": "Make Aliyun OSS SDK work with swoole CURL_HOOK.",
  4797. "support": {
  4798. "issues": "https://github.com/Reasno/swoole-aliyunoss-addon/issues",
  4799. "source": "https://github.com/Reasno/swoole-aliyunoss-addon/tree/v1.0.1"
  4800. },
  4801. "time": "2020-05-15T02:55:46+00:00"
  4802. },
  4803. {
  4804. "name": "songshenzong/support",
  4805. "version": "2.0.6",
  4806. "source": {
  4807. "type": "git",
  4808. "url": "https://github.com/aliguyong/support.git",
  4809. "reference": "b334d8abc99e8a85538a556e10c670c18b71c230"
  4810. },
  4811. "dist": {
  4812. "type": "zip",
  4813. "url": "https://api.github.com/repos/aliguyong/support/zipball/b334d8abc99e8a85538a556e10c670c18b71c230",
  4814. "reference": "b334d8abc99e8a85538a556e10c670c18b71c230",
  4815. "shasum": "",
  4816. "mirrors": [
  4817. {
  4818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4819. "preferred": true
  4820. }
  4821. ]
  4822. },
  4823. "require": {
  4824. "danielstjules/stringy": "^3.1",
  4825. "ext-json": "*",
  4826. "ext-simplexml": "*",
  4827. "ext-xml": "*",
  4828. "php": ">=5.5"
  4829. },
  4830. "require-dev": {
  4831. "laravel/framework": "^5.8",
  4832. "phpunit/phpunit": "^4.8.35|^5.4.3"
  4833. },
  4834. "type": "library",
  4835. "extra": {
  4836. "laravel": {
  4837. "providers": [
  4838. "Songshenzong\\Support\\StringsServiceProvider"
  4839. ],
  4840. "aliases": {
  4841. "Strings": "Songshenzong\\Support\\StringsFacade"
  4842. }
  4843. }
  4844. },
  4845. "autoload": {
  4846. "files": [
  4847. "src/StringsHelpers.php",
  4848. "src/BashEchoHelpers.php"
  4849. ],
  4850. "psr-4": {
  4851. "Songshenzong\\Support\\": "src/"
  4852. }
  4853. },
  4854. "notification-url": "https://packagist.org/downloads/",
  4855. "license": [
  4856. "MIT"
  4857. ],
  4858. "authors": [
  4859. {
  4860. "name": "Songshenzong",
  4861. "email": "i@songshenzong.com"
  4862. }
  4863. ],
  4864. "description": "The Songshenzong Support package.",
  4865. "homepage": "http://songshenzong.com",
  4866. "keywords": [
  4867. "laravel",
  4868. "support",
  4869. "tools",
  4870. "web"
  4871. ],
  4872. "support": {
  4873. "issues": "https://github.com/songshenzong/support/issues",
  4874. "source": "https://github.com/songshenzong/support"
  4875. },
  4876. "time": "2021-12-29T06:36:20+00:00"
  4877. },
  4878. {
  4879. "name": "spatie/macroable",
  4880. "version": "1.0.1",
  4881. "source": {
  4882. "type": "git",
  4883. "url": "https://github.com/spatie/macroable.git",
  4884. "reference": "7a99549fc001c925714b329220dea680c04bfa48"
  4885. },
  4886. "dist": {
  4887. "type": "zip",
  4888. "url": "https://api.github.com/repos/spatie/macroable/zipball/7a99549fc001c925714b329220dea680c04bfa48",
  4889. "reference": "7a99549fc001c925714b329220dea680c04bfa48",
  4890. "shasum": "",
  4891. "mirrors": [
  4892. {
  4893. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4894. "preferred": true
  4895. }
  4896. ]
  4897. },
  4898. "require": {
  4899. "php": "^7.2|^8.0"
  4900. },
  4901. "require-dev": {
  4902. "phpunit/phpunit": "^8.0|^9.3"
  4903. },
  4904. "type": "library",
  4905. "autoload": {
  4906. "psr-4": {
  4907. "Spatie\\Macroable\\": "src"
  4908. }
  4909. },
  4910. "notification-url": "https://packagist.org/downloads/",
  4911. "license": [
  4912. "MIT"
  4913. ],
  4914. "authors": [
  4915. {
  4916. "name": "Freek Van der Herten",
  4917. "email": "freek@spatie.be",
  4918. "homepage": "https://spatie.be",
  4919. "role": "Developer"
  4920. }
  4921. ],
  4922. "description": "A trait to dynamically add methods to a class",
  4923. "homepage": "https://github.com/spatie/macroable",
  4924. "keywords": [
  4925. "macroable",
  4926. "spatie"
  4927. ],
  4928. "support": {
  4929. "issues": "https://github.com/spatie/macroable/issues",
  4930. "source": "https://github.com/spatie/macroable/tree/1.0.1"
  4931. },
  4932. "time": "2020-11-03T10:15:05+00:00"
  4933. },
  4934. {
  4935. "name": "stechstudio/backoff",
  4936. "version": "1.2",
  4937. "source": {
  4938. "type": "git",
  4939. "url": "https://github.com/stechstudio/backoff.git",
  4940. "reference": "816e46107a6be2e1072ba0ff2cb26034872dfa49"
  4941. },
  4942. "dist": {
  4943. "type": "zip",
  4944. "url": "https://api.github.com/repos/stechstudio/backoff/zipball/816e46107a6be2e1072ba0ff2cb26034872dfa49",
  4945. "reference": "816e46107a6be2e1072ba0ff2cb26034872dfa49",
  4946. "shasum": "",
  4947. "mirrors": [
  4948. {
  4949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4950. "preferred": true
  4951. }
  4952. ]
  4953. },
  4954. "require-dev": {
  4955. "phpunit/phpunit": "5.5.*"
  4956. },
  4957. "type": "library",
  4958. "autoload": {
  4959. "files": [
  4960. "src/helpers.php"
  4961. ],
  4962. "psr-4": {
  4963. "STS\\Backoff\\": "src"
  4964. }
  4965. },
  4966. "notification-url": "https://packagist.org/downloads/",
  4967. "license": [
  4968. "MIT"
  4969. ],
  4970. "authors": [
  4971. {
  4972. "name": "Joseph Szobody",
  4973. "email": "joseph@stechstudio.com"
  4974. }
  4975. ],
  4976. "description": "PHP library providing retry functionality with multiple backoff strategies and jitter support",
  4977. "support": {
  4978. "issues": "https://github.com/stechstudio/backoff/issues",
  4979. "source": "https://github.com/stechstudio/backoff/tree/1.2"
  4980. },
  4981. "time": "2020-12-26T14:57:10+00:00"
  4982. },
  4983. {
  4984. "name": "swoole/ide-helper",
  4985. "version": "4.8.11",
  4986. "source": {
  4987. "type": "git",
  4988. "url": "https://github.com/swoole/ide-helper.git",
  4989. "reference": "edcf955501271b1fd5d77efef31027b1e08f4a85"
  4990. },
  4991. "dist": {
  4992. "type": "zip",
  4993. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/edcf955501271b1fd5d77efef31027b1e08f4a85",
  4994. "reference": "edcf955501271b1fd5d77efef31027b1e08f4a85",
  4995. "shasum": "",
  4996. "mirrors": [
  4997. {
  4998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4999. "preferred": true
  5000. }
  5001. ]
  5002. },
  5003. "type": "library",
  5004. "notification-url": "https://packagist.org/downloads/",
  5005. "license": [
  5006. "Apache-2.0"
  5007. ],
  5008. "authors": [
  5009. {
  5010. "name": "Team Swoole",
  5011. "email": "team@swoole.com"
  5012. }
  5013. ],
  5014. "description": "IDE help files for Swoole.",
  5015. "support": {
  5016. "issues": "https://github.com/swoole/ide-helper/issues",
  5017. "source": "https://github.com/swoole/ide-helper/tree/4.8.11"
  5018. },
  5019. "funding": [
  5020. {
  5021. "url": "https://gitee.com/swoole/swoole?donate=true",
  5022. "type": "custom"
  5023. },
  5024. {
  5025. "url": "https://github.com/swoole",
  5026. "type": "github"
  5027. }
  5028. ],
  5029. "time": "2022-07-09T06:20:31+00:00"
  5030. },
  5031. {
  5032. "name": "symfony/cache",
  5033. "version": "v5.4.11",
  5034. "source": {
  5035. "type": "git",
  5036. "url": "https://github.com/symfony/cache.git",
  5037. "reference": "5a0fff46df349f0db3fe242263451fddf5277362"
  5038. },
  5039. "dist": {
  5040. "type": "zip",
  5041. "url": "https://api.github.com/repos/symfony/cache/zipball/5a0fff46df349f0db3fe242263451fddf5277362",
  5042. "reference": "5a0fff46df349f0db3fe242263451fddf5277362",
  5043. "shasum": "",
  5044. "mirrors": [
  5045. {
  5046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5047. "preferred": true
  5048. }
  5049. ]
  5050. },
  5051. "require": {
  5052. "php": ">=7.2.5",
  5053. "psr/cache": "^1.0|^2.0",
  5054. "psr/log": "^1.1|^2|^3",
  5055. "symfony/cache-contracts": "^1.1.7|^2",
  5056. "symfony/deprecation-contracts": "^2.1|^3",
  5057. "symfony/polyfill-php73": "^1.9",
  5058. "symfony/polyfill-php80": "^1.16",
  5059. "symfony/service-contracts": "^1.1|^2|^3",
  5060. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  5061. },
  5062. "conflict": {
  5063. "doctrine/dbal": "<2.13.1",
  5064. "symfony/dependency-injection": "<4.4",
  5065. "symfony/http-kernel": "<4.4",
  5066. "symfony/var-dumper": "<4.4"
  5067. },
  5068. "provide": {
  5069. "psr/cache-implementation": "1.0|2.0",
  5070. "psr/simple-cache-implementation": "1.0|2.0",
  5071. "symfony/cache-implementation": "1.0|2.0"
  5072. },
  5073. "require-dev": {
  5074. "cache/integration-tests": "dev-master",
  5075. "doctrine/cache": "^1.6|^2.0",
  5076. "doctrine/dbal": "^2.13.1|^3.0",
  5077. "predis/predis": "^1.1",
  5078. "psr/simple-cache": "^1.0|^2.0",
  5079. "symfony/config": "^4.4|^5.0|^6.0",
  5080. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5081. "symfony/filesystem": "^4.4|^5.0|^6.0",
  5082. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5083. "symfony/messenger": "^4.4|^5.0|^6.0",
  5084. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5085. },
  5086. "type": "library",
  5087. "autoload": {
  5088. "psr-4": {
  5089. "Symfony\\Component\\Cache\\": ""
  5090. },
  5091. "exclude-from-classmap": [
  5092. "/Tests/"
  5093. ]
  5094. },
  5095. "notification-url": "https://packagist.org/downloads/",
  5096. "license": [
  5097. "MIT"
  5098. ],
  5099. "authors": [
  5100. {
  5101. "name": "Nicolas Grekas",
  5102. "email": "p@tchwork.com"
  5103. },
  5104. {
  5105. "name": "Symfony Community",
  5106. "homepage": "https://symfony.com/contributors"
  5107. }
  5108. ],
  5109. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  5110. "homepage": "https://symfony.com",
  5111. "keywords": [
  5112. "caching",
  5113. "psr6"
  5114. ],
  5115. "support": {
  5116. "source": "https://github.com/symfony/cache/tree/v5.4.11"
  5117. },
  5118. "funding": [
  5119. {
  5120. "url": "https://symfony.com/sponsor",
  5121. "type": "custom"
  5122. },
  5123. {
  5124. "url": "https://github.com/fabpot",
  5125. "type": "github"
  5126. },
  5127. {
  5128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5129. "type": "tidelift"
  5130. }
  5131. ],
  5132. "time": "2022-07-28T15:25:17+00:00"
  5133. },
  5134. {
  5135. "name": "symfony/cache-contracts",
  5136. "version": "v2.5.2",
  5137. "source": {
  5138. "type": "git",
  5139. "url": "https://github.com/symfony/cache-contracts.git",
  5140. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  5141. },
  5142. "dist": {
  5143. "type": "zip",
  5144. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  5145. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  5146. "shasum": "",
  5147. "mirrors": [
  5148. {
  5149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5150. "preferred": true
  5151. }
  5152. ]
  5153. },
  5154. "require": {
  5155. "php": ">=7.2.5",
  5156. "psr/cache": "^1.0|^2.0|^3.0"
  5157. },
  5158. "suggest": {
  5159. "symfony/cache-implementation": ""
  5160. },
  5161. "type": "library",
  5162. "extra": {
  5163. "branch-alias": {
  5164. "dev-main": "2.5-dev"
  5165. },
  5166. "thanks": {
  5167. "name": "symfony/contracts",
  5168. "url": "https://github.com/symfony/contracts"
  5169. }
  5170. },
  5171. "autoload": {
  5172. "psr-4": {
  5173. "Symfony\\Contracts\\Cache\\": ""
  5174. }
  5175. },
  5176. "notification-url": "https://packagist.org/downloads/",
  5177. "license": [
  5178. "MIT"
  5179. ],
  5180. "authors": [
  5181. {
  5182. "name": "Nicolas Grekas",
  5183. "email": "p@tchwork.com"
  5184. },
  5185. {
  5186. "name": "Symfony Community",
  5187. "homepage": "https://symfony.com/contributors"
  5188. }
  5189. ],
  5190. "description": "Generic abstractions related to caching",
  5191. "homepage": "https://symfony.com",
  5192. "keywords": [
  5193. "abstractions",
  5194. "contracts",
  5195. "decoupling",
  5196. "interfaces",
  5197. "interoperability",
  5198. "standards"
  5199. ],
  5200. "support": {
  5201. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  5202. },
  5203. "funding": [
  5204. {
  5205. "url": "https://symfony.com/sponsor",
  5206. "type": "custom"
  5207. },
  5208. {
  5209. "url": "https://github.com/fabpot",
  5210. "type": "github"
  5211. },
  5212. {
  5213. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5214. "type": "tidelift"
  5215. }
  5216. ],
  5217. "time": "2022-01-02T09:53:40+00:00"
  5218. },
  5219. {
  5220. "name": "symfony/deprecation-contracts",
  5221. "version": "v2.5.2",
  5222. "source": {
  5223. "type": "git",
  5224. "url": "https://github.com/symfony/deprecation-contracts.git",
  5225. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  5226. },
  5227. "dist": {
  5228. "type": "zip",
  5229. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5230. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5231. "shasum": "",
  5232. "mirrors": [
  5233. {
  5234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5235. "preferred": true
  5236. }
  5237. ]
  5238. },
  5239. "require": {
  5240. "php": ">=7.1"
  5241. },
  5242. "type": "library",
  5243. "extra": {
  5244. "branch-alias": {
  5245. "dev-main": "2.5-dev"
  5246. },
  5247. "thanks": {
  5248. "name": "symfony/contracts",
  5249. "url": "https://github.com/symfony/contracts"
  5250. }
  5251. },
  5252. "autoload": {
  5253. "files": [
  5254. "function.php"
  5255. ]
  5256. },
  5257. "notification-url": "https://packagist.org/downloads/",
  5258. "license": [
  5259. "MIT"
  5260. ],
  5261. "authors": [
  5262. {
  5263. "name": "Nicolas Grekas",
  5264. "email": "p@tchwork.com"
  5265. },
  5266. {
  5267. "name": "Symfony Community",
  5268. "homepage": "https://symfony.com/contributors"
  5269. }
  5270. ],
  5271. "description": "A generic function and convention to trigger deprecation notices",
  5272. "homepage": "https://symfony.com",
  5273. "support": {
  5274. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  5275. },
  5276. "funding": [
  5277. {
  5278. "url": "https://symfony.com/sponsor",
  5279. "type": "custom"
  5280. },
  5281. {
  5282. "url": "https://github.com/fabpot",
  5283. "type": "github"
  5284. },
  5285. {
  5286. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5287. "type": "tidelift"
  5288. }
  5289. ],
  5290. "time": "2022-01-02T09:53:40+00:00"
  5291. },
  5292. {
  5293. "name": "symfony/event-dispatcher",
  5294. "version": "v5.4.9",
  5295. "source": {
  5296. "type": "git",
  5297. "url": "https://github.com/symfony/event-dispatcher.git",
  5298. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  5299. },
  5300. "dist": {
  5301. "type": "zip",
  5302. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  5303. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  5304. "shasum": "",
  5305. "mirrors": [
  5306. {
  5307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5308. "preferred": true
  5309. }
  5310. ]
  5311. },
  5312. "require": {
  5313. "php": ">=7.2.5",
  5314. "symfony/deprecation-contracts": "^2.1|^3",
  5315. "symfony/event-dispatcher-contracts": "^2|^3",
  5316. "symfony/polyfill-php80": "^1.16"
  5317. },
  5318. "conflict": {
  5319. "symfony/dependency-injection": "<4.4"
  5320. },
  5321. "provide": {
  5322. "psr/event-dispatcher-implementation": "1.0",
  5323. "symfony/event-dispatcher-implementation": "2.0"
  5324. },
  5325. "require-dev": {
  5326. "psr/log": "^1|^2|^3",
  5327. "symfony/config": "^4.4|^5.0|^6.0",
  5328. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5329. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5330. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5331. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5332. "symfony/service-contracts": "^1.1|^2|^3",
  5333. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5334. },
  5335. "suggest": {
  5336. "symfony/dependency-injection": "",
  5337. "symfony/http-kernel": ""
  5338. },
  5339. "type": "library",
  5340. "autoload": {
  5341. "psr-4": {
  5342. "Symfony\\Component\\EventDispatcher\\": ""
  5343. },
  5344. "exclude-from-classmap": [
  5345. "/Tests/"
  5346. ]
  5347. },
  5348. "notification-url": "https://packagist.org/downloads/",
  5349. "license": [
  5350. "MIT"
  5351. ],
  5352. "authors": [
  5353. {
  5354. "name": "Fabien Potencier",
  5355. "email": "fabien@symfony.com"
  5356. },
  5357. {
  5358. "name": "Symfony Community",
  5359. "homepage": "https://symfony.com/contributors"
  5360. }
  5361. ],
  5362. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5363. "homepage": "https://symfony.com",
  5364. "support": {
  5365. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  5366. },
  5367. "funding": [
  5368. {
  5369. "url": "https://symfony.com/sponsor",
  5370. "type": "custom"
  5371. },
  5372. {
  5373. "url": "https://github.com/fabpot",
  5374. "type": "github"
  5375. },
  5376. {
  5377. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5378. "type": "tidelift"
  5379. }
  5380. ],
  5381. "time": "2022-05-05T16:45:39+00:00"
  5382. },
  5383. {
  5384. "name": "symfony/event-dispatcher-contracts",
  5385. "version": "v2.5.2",
  5386. "source": {
  5387. "type": "git",
  5388. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5389. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  5390. },
  5391. "dist": {
  5392. "type": "zip",
  5393. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  5394. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  5395. "shasum": "",
  5396. "mirrors": [
  5397. {
  5398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5399. "preferred": true
  5400. }
  5401. ]
  5402. },
  5403. "require": {
  5404. "php": ">=7.2.5",
  5405. "psr/event-dispatcher": "^1"
  5406. },
  5407. "suggest": {
  5408. "symfony/event-dispatcher-implementation": ""
  5409. },
  5410. "type": "library",
  5411. "extra": {
  5412. "branch-alias": {
  5413. "dev-main": "2.5-dev"
  5414. },
  5415. "thanks": {
  5416. "name": "symfony/contracts",
  5417. "url": "https://github.com/symfony/contracts"
  5418. }
  5419. },
  5420. "autoload": {
  5421. "psr-4": {
  5422. "Symfony\\Contracts\\EventDispatcher\\": ""
  5423. }
  5424. },
  5425. "notification-url": "https://packagist.org/downloads/",
  5426. "license": [
  5427. "MIT"
  5428. ],
  5429. "authors": [
  5430. {
  5431. "name": "Nicolas Grekas",
  5432. "email": "p@tchwork.com"
  5433. },
  5434. {
  5435. "name": "Symfony Community",
  5436. "homepage": "https://symfony.com/contributors"
  5437. }
  5438. ],
  5439. "description": "Generic abstractions related to dispatching event",
  5440. "homepage": "https://symfony.com",
  5441. "keywords": [
  5442. "abstractions",
  5443. "contracts",
  5444. "decoupling",
  5445. "interfaces",
  5446. "interoperability",
  5447. "standards"
  5448. ],
  5449. "support": {
  5450. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  5451. },
  5452. "funding": [
  5453. {
  5454. "url": "https://symfony.com/sponsor",
  5455. "type": "custom"
  5456. },
  5457. {
  5458. "url": "https://github.com/fabpot",
  5459. "type": "github"
  5460. },
  5461. {
  5462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5463. "type": "tidelift"
  5464. }
  5465. ],
  5466. "time": "2022-01-02T09:53:40+00:00"
  5467. },
  5468. {
  5469. "name": "symfony/finder",
  5470. "version": "v5.4.11",
  5471. "source": {
  5472. "type": "git",
  5473. "url": "https://github.com/symfony/finder.git",
  5474. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
  5475. },
  5476. "dist": {
  5477. "type": "zip",
  5478. "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
  5479. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
  5480. "shasum": "",
  5481. "mirrors": [
  5482. {
  5483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5484. "preferred": true
  5485. }
  5486. ]
  5487. },
  5488. "require": {
  5489. "php": ">=7.2.5",
  5490. "symfony/deprecation-contracts": "^2.1|^3",
  5491. "symfony/polyfill-php80": "^1.16"
  5492. },
  5493. "type": "library",
  5494. "autoload": {
  5495. "psr-4": {
  5496. "Symfony\\Component\\Finder\\": ""
  5497. },
  5498. "exclude-from-classmap": [
  5499. "/Tests/"
  5500. ]
  5501. },
  5502. "notification-url": "https://packagist.org/downloads/",
  5503. "license": [
  5504. "MIT"
  5505. ],
  5506. "authors": [
  5507. {
  5508. "name": "Fabien Potencier",
  5509. "email": "fabien@symfony.com"
  5510. },
  5511. {
  5512. "name": "Symfony Community",
  5513. "homepage": "https://symfony.com/contributors"
  5514. }
  5515. ],
  5516. "description": "Finds files and directories via an intuitive fluent interface",
  5517. "homepage": "https://symfony.com",
  5518. "support": {
  5519. "source": "https://github.com/symfony/finder/tree/v5.4.11"
  5520. },
  5521. "funding": [
  5522. {
  5523. "url": "https://symfony.com/sponsor",
  5524. "type": "custom"
  5525. },
  5526. {
  5527. "url": "https://github.com/fabpot",
  5528. "type": "github"
  5529. },
  5530. {
  5531. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5532. "type": "tidelift"
  5533. }
  5534. ],
  5535. "time": "2022-07-29T07:37:50+00:00"
  5536. },
  5537. {
  5538. "name": "symfony/http-client",
  5539. "version": "v5.4.25",
  5540. "source": {
  5541. "type": "git",
  5542. "url": "https://github.com/symfony/http-client.git",
  5543. "reference": "ccbb572627466f03a3d7aa1b23483787f5969afc"
  5544. },
  5545. "dist": {
  5546. "type": "zip",
  5547. "url": "https://api.github.com/repos/symfony/http-client/zipball/ccbb572627466f03a3d7aa1b23483787f5969afc",
  5548. "reference": "ccbb572627466f03a3d7aa1b23483787f5969afc",
  5549. "shasum": "",
  5550. "mirrors": [
  5551. {
  5552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5553. "preferred": true
  5554. }
  5555. ]
  5556. },
  5557. "require": {
  5558. "php": ">=7.2.5",
  5559. "psr/log": "^1|^2|^3",
  5560. "symfony/deprecation-contracts": "^2.1|^3",
  5561. "symfony/http-client-contracts": "^2.4",
  5562. "symfony/polyfill-php73": "^1.11",
  5563. "symfony/polyfill-php80": "^1.16",
  5564. "symfony/service-contracts": "^1.0|^2|^3"
  5565. },
  5566. "provide": {
  5567. "php-http/async-client-implementation": "*",
  5568. "php-http/client-implementation": "*",
  5569. "psr/http-client-implementation": "1.0",
  5570. "symfony/http-client-implementation": "2.4"
  5571. },
  5572. "require-dev": {
  5573. "amphp/amp": "^2.5",
  5574. "amphp/http-client": "^4.2.1",
  5575. "amphp/http-tunnel": "^1.0",
  5576. "amphp/socket": "^1.1",
  5577. "guzzlehttp/promises": "^1.4",
  5578. "nyholm/psr7": "^1.0",
  5579. "php-http/httplug": "^1.0|^2.0",
  5580. "php-http/message-factory": "^1.0",
  5581. "psr/http-client": "^1.0",
  5582. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5583. "symfony/http-kernel": "^4.4.13|^5.1.5|^6.0",
  5584. "symfony/process": "^4.4|^5.0|^6.0",
  5585. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5586. },
  5587. "type": "library",
  5588. "autoload": {
  5589. "psr-4": {
  5590. "Symfony\\Component\\HttpClient\\": ""
  5591. },
  5592. "exclude-from-classmap": [
  5593. "/Tests/"
  5594. ]
  5595. },
  5596. "notification-url": "https://packagist.org/downloads/",
  5597. "license": [
  5598. "MIT"
  5599. ],
  5600. "authors": [
  5601. {
  5602. "name": "Nicolas Grekas",
  5603. "email": "p@tchwork.com"
  5604. },
  5605. {
  5606. "name": "Symfony Community",
  5607. "homepage": "https://symfony.com/contributors"
  5608. }
  5609. ],
  5610. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5611. "homepage": "https://symfony.com",
  5612. "keywords": [
  5613. "http"
  5614. ],
  5615. "support": {
  5616. "source": "https://github.com/symfony/http-client/tree/v5.4.25"
  5617. },
  5618. "funding": [
  5619. {
  5620. "url": "https://symfony.com/sponsor",
  5621. "type": "custom"
  5622. },
  5623. {
  5624. "url": "https://github.com/fabpot",
  5625. "type": "github"
  5626. },
  5627. {
  5628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5629. "type": "tidelift"
  5630. }
  5631. ],
  5632. "time": "2023-06-21T14:44:30+00:00"
  5633. },
  5634. {
  5635. "name": "symfony/http-client-contracts",
  5636. "version": "v2.5.2",
  5637. "source": {
  5638. "type": "git",
  5639. "url": "https://github.com/symfony/http-client-contracts.git",
  5640. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70"
  5641. },
  5642. "dist": {
  5643. "type": "zip",
  5644. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  5645. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  5646. "shasum": "",
  5647. "mirrors": [
  5648. {
  5649. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5650. "preferred": true
  5651. }
  5652. ]
  5653. },
  5654. "require": {
  5655. "php": ">=7.2.5"
  5656. },
  5657. "suggest": {
  5658. "symfony/http-client-implementation": ""
  5659. },
  5660. "type": "library",
  5661. "extra": {
  5662. "branch-alias": {
  5663. "dev-main": "2.5-dev"
  5664. },
  5665. "thanks": {
  5666. "name": "symfony/contracts",
  5667. "url": "https://github.com/symfony/contracts"
  5668. }
  5669. },
  5670. "autoload": {
  5671. "psr-4": {
  5672. "Symfony\\Contracts\\HttpClient\\": ""
  5673. }
  5674. },
  5675. "notification-url": "https://packagist.org/downloads/",
  5676. "license": [
  5677. "MIT"
  5678. ],
  5679. "authors": [
  5680. {
  5681. "name": "Nicolas Grekas",
  5682. "email": "p@tchwork.com"
  5683. },
  5684. {
  5685. "name": "Symfony Community",
  5686. "homepage": "https://symfony.com/contributors"
  5687. }
  5688. ],
  5689. "description": "Generic abstractions related to HTTP clients",
  5690. "homepage": "https://symfony.com",
  5691. "keywords": [
  5692. "abstractions",
  5693. "contracts",
  5694. "decoupling",
  5695. "interfaces",
  5696. "interoperability",
  5697. "standards"
  5698. ],
  5699. "support": {
  5700. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2"
  5701. },
  5702. "funding": [
  5703. {
  5704. "url": "https://symfony.com/sponsor",
  5705. "type": "custom"
  5706. },
  5707. {
  5708. "url": "https://github.com/fabpot",
  5709. "type": "github"
  5710. },
  5711. {
  5712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5713. "type": "tidelift"
  5714. }
  5715. ],
  5716. "time": "2022-04-12T15:48:08+00:00"
  5717. },
  5718. {
  5719. "name": "symfony/http-foundation",
  5720. "version": "v5.4.12",
  5721. "source": {
  5722. "type": "git",
  5723. "url": "https://github.com/symfony/http-foundation.git",
  5724. "reference": "f4bfe9611b113b15d98a43da68ec9b5a00d56791"
  5725. },
  5726. "dist": {
  5727. "type": "zip",
  5728. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f4bfe9611b113b15d98a43da68ec9b5a00d56791",
  5729. "reference": "f4bfe9611b113b15d98a43da68ec9b5a00d56791",
  5730. "shasum": "",
  5731. "mirrors": [
  5732. {
  5733. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5734. "preferred": true
  5735. }
  5736. ]
  5737. },
  5738. "require": {
  5739. "php": ">=7.2.5",
  5740. "symfony/deprecation-contracts": "^2.1|^3",
  5741. "symfony/polyfill-mbstring": "~1.1",
  5742. "symfony/polyfill-php80": "^1.16"
  5743. },
  5744. "require-dev": {
  5745. "predis/predis": "~1.0",
  5746. "symfony/cache": "^4.4|^5.0|^6.0",
  5747. "symfony/dependency-injection": "^5.4|^6.0",
  5748. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5749. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5750. "symfony/mime": "^4.4|^5.0|^6.0",
  5751. "symfony/rate-limiter": "^5.2|^6.0"
  5752. },
  5753. "suggest": {
  5754. "symfony/mime": "To use the file extension guesser"
  5755. },
  5756. "type": "library",
  5757. "autoload": {
  5758. "psr-4": {
  5759. "Symfony\\Component\\HttpFoundation\\": ""
  5760. },
  5761. "exclude-from-classmap": [
  5762. "/Tests/"
  5763. ]
  5764. },
  5765. "notification-url": "https://packagist.org/downloads/",
  5766. "license": [
  5767. "MIT"
  5768. ],
  5769. "authors": [
  5770. {
  5771. "name": "Fabien Potencier",
  5772. "email": "fabien@symfony.com"
  5773. },
  5774. {
  5775. "name": "Symfony Community",
  5776. "homepage": "https://symfony.com/contributors"
  5777. }
  5778. ],
  5779. "description": "Defines an object-oriented layer for the HTTP specification",
  5780. "homepage": "https://symfony.com",
  5781. "support": {
  5782. "source": "https://github.com/symfony/http-foundation/tree/v5.4.12"
  5783. },
  5784. "funding": [
  5785. {
  5786. "url": "https://symfony.com/sponsor",
  5787. "type": "custom"
  5788. },
  5789. {
  5790. "url": "https://github.com/fabpot",
  5791. "type": "github"
  5792. },
  5793. {
  5794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5795. "type": "tidelift"
  5796. }
  5797. ],
  5798. "time": "2022-08-19T07:33:17+00:00"
  5799. },
  5800. {
  5801. "name": "symfony/polyfill-intl-idn",
  5802. "version": "v1.26.0",
  5803. "source": {
  5804. "type": "git",
  5805. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5806. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  5807. },
  5808. "dist": {
  5809. "type": "zip",
  5810. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  5811. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  5812. "shasum": "",
  5813. "mirrors": [
  5814. {
  5815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5816. "preferred": true
  5817. }
  5818. ]
  5819. },
  5820. "require": {
  5821. "php": ">=7.1",
  5822. "symfony/polyfill-intl-normalizer": "^1.10",
  5823. "symfony/polyfill-php72": "^1.10"
  5824. },
  5825. "suggest": {
  5826. "ext-intl": "For best performance"
  5827. },
  5828. "type": "library",
  5829. "extra": {
  5830. "branch-alias": {
  5831. "dev-main": "1.26-dev"
  5832. },
  5833. "thanks": {
  5834. "name": "symfony/polyfill",
  5835. "url": "https://github.com/symfony/polyfill"
  5836. }
  5837. },
  5838. "autoload": {
  5839. "files": [
  5840. "bootstrap.php"
  5841. ],
  5842. "psr-4": {
  5843. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5844. }
  5845. },
  5846. "notification-url": "https://packagist.org/downloads/",
  5847. "license": [
  5848. "MIT"
  5849. ],
  5850. "authors": [
  5851. {
  5852. "name": "Laurent Bassin",
  5853. "email": "laurent@bassin.info"
  5854. },
  5855. {
  5856. "name": "Trevor Rowbotham",
  5857. "email": "trevor.rowbotham@pm.me"
  5858. },
  5859. {
  5860. "name": "Symfony Community",
  5861. "homepage": "https://symfony.com/contributors"
  5862. }
  5863. ],
  5864. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5865. "homepage": "https://symfony.com",
  5866. "keywords": [
  5867. "compatibility",
  5868. "idn",
  5869. "intl",
  5870. "polyfill",
  5871. "portable",
  5872. "shim"
  5873. ],
  5874. "support": {
  5875. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  5876. },
  5877. "funding": [
  5878. {
  5879. "url": "https://symfony.com/sponsor",
  5880. "type": "custom"
  5881. },
  5882. {
  5883. "url": "https://github.com/fabpot",
  5884. "type": "github"
  5885. },
  5886. {
  5887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5888. "type": "tidelift"
  5889. }
  5890. ],
  5891. "time": "2022-05-24T11:49:31+00:00"
  5892. },
  5893. {
  5894. "name": "symfony/polyfill-intl-normalizer",
  5895. "version": "v1.26.0",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5899. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  5904. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  5905. "shasum": "",
  5906. "mirrors": [
  5907. {
  5908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5909. "preferred": true
  5910. }
  5911. ]
  5912. },
  5913. "require": {
  5914. "php": ">=7.1"
  5915. },
  5916. "suggest": {
  5917. "ext-intl": "For best performance"
  5918. },
  5919. "type": "library",
  5920. "extra": {
  5921. "branch-alias": {
  5922. "dev-main": "1.26-dev"
  5923. },
  5924. "thanks": {
  5925. "name": "symfony/polyfill",
  5926. "url": "https://github.com/symfony/polyfill"
  5927. }
  5928. },
  5929. "autoload": {
  5930. "files": [
  5931. "bootstrap.php"
  5932. ],
  5933. "psr-4": {
  5934. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5935. },
  5936. "classmap": [
  5937. "Resources/stubs"
  5938. ]
  5939. },
  5940. "notification-url": "https://packagist.org/downloads/",
  5941. "license": [
  5942. "MIT"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "Nicolas Grekas",
  5947. "email": "p@tchwork.com"
  5948. },
  5949. {
  5950. "name": "Symfony Community",
  5951. "homepage": "https://symfony.com/contributors"
  5952. }
  5953. ],
  5954. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5955. "homepage": "https://symfony.com",
  5956. "keywords": [
  5957. "compatibility",
  5958. "intl",
  5959. "normalizer",
  5960. "polyfill",
  5961. "portable",
  5962. "shim"
  5963. ],
  5964. "support": {
  5965. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  5966. },
  5967. "funding": [
  5968. {
  5969. "url": "https://symfony.com/sponsor",
  5970. "type": "custom"
  5971. },
  5972. {
  5973. "url": "https://github.com/fabpot",
  5974. "type": "github"
  5975. },
  5976. {
  5977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5978. "type": "tidelift"
  5979. }
  5980. ],
  5981. "time": "2022-05-24T11:49:31+00:00"
  5982. },
  5983. {
  5984. "name": "symfony/polyfill-mbstring",
  5985. "version": "v1.26.0",
  5986. "source": {
  5987. "type": "git",
  5988. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5989. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  5990. },
  5991. "dist": {
  5992. "type": "zip",
  5993. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  5994. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  5995. "shasum": "",
  5996. "mirrors": [
  5997. {
  5998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5999. "preferred": true
  6000. }
  6001. ]
  6002. },
  6003. "require": {
  6004. "php": ">=7.1"
  6005. },
  6006. "provide": {
  6007. "ext-mbstring": "*"
  6008. },
  6009. "suggest": {
  6010. "ext-mbstring": "For best performance"
  6011. },
  6012. "type": "library",
  6013. "extra": {
  6014. "branch-alias": {
  6015. "dev-main": "1.26-dev"
  6016. },
  6017. "thanks": {
  6018. "name": "symfony/polyfill",
  6019. "url": "https://github.com/symfony/polyfill"
  6020. }
  6021. },
  6022. "autoload": {
  6023. "files": [
  6024. "bootstrap.php"
  6025. ],
  6026. "psr-4": {
  6027. "Symfony\\Polyfill\\Mbstring\\": ""
  6028. }
  6029. },
  6030. "notification-url": "https://packagist.org/downloads/",
  6031. "license": [
  6032. "MIT"
  6033. ],
  6034. "authors": [
  6035. {
  6036. "name": "Nicolas Grekas",
  6037. "email": "p@tchwork.com"
  6038. },
  6039. {
  6040. "name": "Symfony Community",
  6041. "homepage": "https://symfony.com/contributors"
  6042. }
  6043. ],
  6044. "description": "Symfony polyfill for the Mbstring extension",
  6045. "homepage": "https://symfony.com",
  6046. "keywords": [
  6047. "compatibility",
  6048. "mbstring",
  6049. "polyfill",
  6050. "portable",
  6051. "shim"
  6052. ],
  6053. "support": {
  6054. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  6055. },
  6056. "funding": [
  6057. {
  6058. "url": "https://symfony.com/sponsor",
  6059. "type": "custom"
  6060. },
  6061. {
  6062. "url": "https://github.com/fabpot",
  6063. "type": "github"
  6064. },
  6065. {
  6066. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6067. "type": "tidelift"
  6068. }
  6069. ],
  6070. "time": "2022-05-24T11:49:31+00:00"
  6071. },
  6072. {
  6073. "name": "symfony/polyfill-php72",
  6074. "version": "v1.26.0",
  6075. "source": {
  6076. "type": "git",
  6077. "url": "https://github.com/symfony/polyfill-php72.git",
  6078. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  6079. },
  6080. "dist": {
  6081. "type": "zip",
  6082. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  6083. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  6084. "shasum": "",
  6085. "mirrors": [
  6086. {
  6087. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6088. "preferred": true
  6089. }
  6090. ]
  6091. },
  6092. "require": {
  6093. "php": ">=7.1"
  6094. },
  6095. "type": "library",
  6096. "extra": {
  6097. "branch-alias": {
  6098. "dev-main": "1.26-dev"
  6099. },
  6100. "thanks": {
  6101. "name": "symfony/polyfill",
  6102. "url": "https://github.com/symfony/polyfill"
  6103. }
  6104. },
  6105. "autoload": {
  6106. "files": [
  6107. "bootstrap.php"
  6108. ],
  6109. "psr-4": {
  6110. "Symfony\\Polyfill\\Php72\\": ""
  6111. }
  6112. },
  6113. "notification-url": "https://packagist.org/downloads/",
  6114. "license": [
  6115. "MIT"
  6116. ],
  6117. "authors": [
  6118. {
  6119. "name": "Nicolas Grekas",
  6120. "email": "p@tchwork.com"
  6121. },
  6122. {
  6123. "name": "Symfony Community",
  6124. "homepage": "https://symfony.com/contributors"
  6125. }
  6126. ],
  6127. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6128. "homepage": "https://symfony.com",
  6129. "keywords": [
  6130. "compatibility",
  6131. "polyfill",
  6132. "portable",
  6133. "shim"
  6134. ],
  6135. "support": {
  6136. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  6137. },
  6138. "funding": [
  6139. {
  6140. "url": "https://symfony.com/sponsor",
  6141. "type": "custom"
  6142. },
  6143. {
  6144. "url": "https://github.com/fabpot",
  6145. "type": "github"
  6146. },
  6147. {
  6148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6149. "type": "tidelift"
  6150. }
  6151. ],
  6152. "time": "2022-05-24T11:49:31+00:00"
  6153. },
  6154. {
  6155. "name": "symfony/polyfill-php73",
  6156. "version": "v1.26.0",
  6157. "source": {
  6158. "type": "git",
  6159. "url": "https://github.com/symfony/polyfill-php73.git",
  6160. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  6161. },
  6162. "dist": {
  6163. "type": "zip",
  6164. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  6165. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  6166. "shasum": "",
  6167. "mirrors": [
  6168. {
  6169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6170. "preferred": true
  6171. }
  6172. ]
  6173. },
  6174. "require": {
  6175. "php": ">=7.1"
  6176. },
  6177. "type": "library",
  6178. "extra": {
  6179. "branch-alias": {
  6180. "dev-main": "1.26-dev"
  6181. },
  6182. "thanks": {
  6183. "name": "symfony/polyfill",
  6184. "url": "https://github.com/symfony/polyfill"
  6185. }
  6186. },
  6187. "autoload": {
  6188. "files": [
  6189. "bootstrap.php"
  6190. ],
  6191. "psr-4": {
  6192. "Symfony\\Polyfill\\Php73\\": ""
  6193. },
  6194. "classmap": [
  6195. "Resources/stubs"
  6196. ]
  6197. },
  6198. "notification-url": "https://packagist.org/downloads/",
  6199. "license": [
  6200. "MIT"
  6201. ],
  6202. "authors": [
  6203. {
  6204. "name": "Nicolas Grekas",
  6205. "email": "p@tchwork.com"
  6206. },
  6207. {
  6208. "name": "Symfony Community",
  6209. "homepage": "https://symfony.com/contributors"
  6210. }
  6211. ],
  6212. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6213. "homepage": "https://symfony.com",
  6214. "keywords": [
  6215. "compatibility",
  6216. "polyfill",
  6217. "portable",
  6218. "shim"
  6219. ],
  6220. "support": {
  6221. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  6222. },
  6223. "funding": [
  6224. {
  6225. "url": "https://symfony.com/sponsor",
  6226. "type": "custom"
  6227. },
  6228. {
  6229. "url": "https://github.com/fabpot",
  6230. "type": "github"
  6231. },
  6232. {
  6233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6234. "type": "tidelift"
  6235. }
  6236. ],
  6237. "time": "2022-05-24T11:49:31+00:00"
  6238. },
  6239. {
  6240. "name": "symfony/polyfill-php80",
  6241. "version": "v1.26.0",
  6242. "source": {
  6243. "type": "git",
  6244. "url": "https://github.com/symfony/polyfill-php80.git",
  6245. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  6246. },
  6247. "dist": {
  6248. "type": "zip",
  6249. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  6250. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  6251. "shasum": "",
  6252. "mirrors": [
  6253. {
  6254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6255. "preferred": true
  6256. }
  6257. ]
  6258. },
  6259. "require": {
  6260. "php": ">=7.1"
  6261. },
  6262. "type": "library",
  6263. "extra": {
  6264. "branch-alias": {
  6265. "dev-main": "1.26-dev"
  6266. },
  6267. "thanks": {
  6268. "name": "symfony/polyfill",
  6269. "url": "https://github.com/symfony/polyfill"
  6270. }
  6271. },
  6272. "autoload": {
  6273. "files": [
  6274. "bootstrap.php"
  6275. ],
  6276. "psr-4": {
  6277. "Symfony\\Polyfill\\Php80\\": ""
  6278. },
  6279. "classmap": [
  6280. "Resources/stubs"
  6281. ]
  6282. },
  6283. "notification-url": "https://packagist.org/downloads/",
  6284. "license": [
  6285. "MIT"
  6286. ],
  6287. "authors": [
  6288. {
  6289. "name": "Ion Bazan",
  6290. "email": "ion.bazan@gmail.com"
  6291. },
  6292. {
  6293. "name": "Nicolas Grekas",
  6294. "email": "p@tchwork.com"
  6295. },
  6296. {
  6297. "name": "Symfony Community",
  6298. "homepage": "https://symfony.com/contributors"
  6299. }
  6300. ],
  6301. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6302. "homepage": "https://symfony.com",
  6303. "keywords": [
  6304. "compatibility",
  6305. "polyfill",
  6306. "portable",
  6307. "shim"
  6308. ],
  6309. "support": {
  6310. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  6311. },
  6312. "funding": [
  6313. {
  6314. "url": "https://symfony.com/sponsor",
  6315. "type": "custom"
  6316. },
  6317. {
  6318. "url": "https://github.com/fabpot",
  6319. "type": "github"
  6320. },
  6321. {
  6322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6323. "type": "tidelift"
  6324. }
  6325. ],
  6326. "time": "2022-05-10T07:21:04+00:00"
  6327. },
  6328. {
  6329. "name": "symfony/process",
  6330. "version": "v4.4.44",
  6331. "source": {
  6332. "type": "git",
  6333. "url": "https://github.com/symfony/process.git",
  6334. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  6335. },
  6336. "dist": {
  6337. "type": "zip",
  6338. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  6339. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  6340. "shasum": "",
  6341. "mirrors": [
  6342. {
  6343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6344. "preferred": true
  6345. }
  6346. ]
  6347. },
  6348. "require": {
  6349. "php": ">=7.1.3",
  6350. "symfony/polyfill-php80": "^1.16"
  6351. },
  6352. "type": "library",
  6353. "autoload": {
  6354. "psr-4": {
  6355. "Symfony\\Component\\Process\\": ""
  6356. },
  6357. "exclude-from-classmap": [
  6358. "/Tests/"
  6359. ]
  6360. },
  6361. "notification-url": "https://packagist.org/downloads/",
  6362. "license": [
  6363. "MIT"
  6364. ],
  6365. "authors": [
  6366. {
  6367. "name": "Fabien Potencier",
  6368. "email": "fabien@symfony.com"
  6369. },
  6370. {
  6371. "name": "Symfony Community",
  6372. "homepage": "https://symfony.com/contributors"
  6373. }
  6374. ],
  6375. "description": "Executes commands in sub-processes",
  6376. "homepage": "https://symfony.com",
  6377. "support": {
  6378. "source": "https://github.com/symfony/process/tree/v4.4.44"
  6379. },
  6380. "funding": [
  6381. {
  6382. "url": "https://symfony.com/sponsor",
  6383. "type": "custom"
  6384. },
  6385. {
  6386. "url": "https://github.com/fabpot",
  6387. "type": "github"
  6388. },
  6389. {
  6390. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6391. "type": "tidelift"
  6392. }
  6393. ],
  6394. "time": "2022-06-27T13:16:42+00:00"
  6395. },
  6396. {
  6397. "name": "symfony/psr-http-message-bridge",
  6398. "version": "v2.1.2",
  6399. "source": {
  6400. "type": "git",
  6401. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6402. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  6403. },
  6404. "dist": {
  6405. "type": "zip",
  6406. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  6407. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  6408. "shasum": "",
  6409. "mirrors": [
  6410. {
  6411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6412. "preferred": true
  6413. }
  6414. ]
  6415. },
  6416. "require": {
  6417. "php": ">=7.1",
  6418. "psr/http-message": "^1.0",
  6419. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  6420. },
  6421. "require-dev": {
  6422. "nyholm/psr7": "^1.1",
  6423. "psr/log": "^1.1 || ^2 || ^3",
  6424. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  6425. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  6426. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  6427. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  6428. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  6429. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  6430. },
  6431. "suggest": {
  6432. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6433. },
  6434. "type": "symfony-bridge",
  6435. "extra": {
  6436. "branch-alias": {
  6437. "dev-main": "2.1-dev"
  6438. }
  6439. },
  6440. "autoload": {
  6441. "psr-4": {
  6442. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6443. },
  6444. "exclude-from-classmap": [
  6445. "/Tests/"
  6446. ]
  6447. },
  6448. "notification-url": "https://packagist.org/downloads/",
  6449. "license": [
  6450. "MIT"
  6451. ],
  6452. "authors": [
  6453. {
  6454. "name": "Fabien Potencier",
  6455. "email": "fabien@symfony.com"
  6456. },
  6457. {
  6458. "name": "Symfony Community",
  6459. "homepage": "http://symfony.com/contributors"
  6460. }
  6461. ],
  6462. "description": "PSR HTTP message bridge",
  6463. "homepage": "http://symfony.com",
  6464. "keywords": [
  6465. "http",
  6466. "http-message",
  6467. "psr-17",
  6468. "psr-7"
  6469. ],
  6470. "support": {
  6471. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  6472. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  6473. },
  6474. "funding": [
  6475. {
  6476. "url": "https://symfony.com/sponsor",
  6477. "type": "custom"
  6478. },
  6479. {
  6480. "url": "https://github.com/fabpot",
  6481. "type": "github"
  6482. },
  6483. {
  6484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6485. "type": "tidelift"
  6486. }
  6487. ],
  6488. "time": "2021-11-05T13:13:39+00:00"
  6489. },
  6490. {
  6491. "name": "symfony/service-contracts",
  6492. "version": "v2.5.2",
  6493. "source": {
  6494. "type": "git",
  6495. "url": "https://github.com/symfony/service-contracts.git",
  6496. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  6497. },
  6498. "dist": {
  6499. "type": "zip",
  6500. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6501. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6502. "shasum": "",
  6503. "mirrors": [
  6504. {
  6505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6506. "preferred": true
  6507. }
  6508. ]
  6509. },
  6510. "require": {
  6511. "php": ">=7.2.5",
  6512. "psr/container": "^1.1",
  6513. "symfony/deprecation-contracts": "^2.1|^3"
  6514. },
  6515. "conflict": {
  6516. "ext-psr": "<1.1|>=2"
  6517. },
  6518. "suggest": {
  6519. "symfony/service-implementation": ""
  6520. },
  6521. "type": "library",
  6522. "extra": {
  6523. "branch-alias": {
  6524. "dev-main": "2.5-dev"
  6525. },
  6526. "thanks": {
  6527. "name": "symfony/contracts",
  6528. "url": "https://github.com/symfony/contracts"
  6529. }
  6530. },
  6531. "autoload": {
  6532. "psr-4": {
  6533. "Symfony\\Contracts\\Service\\": ""
  6534. }
  6535. },
  6536. "notification-url": "https://packagist.org/downloads/",
  6537. "license": [
  6538. "MIT"
  6539. ],
  6540. "authors": [
  6541. {
  6542. "name": "Nicolas Grekas",
  6543. "email": "p@tchwork.com"
  6544. },
  6545. {
  6546. "name": "Symfony Community",
  6547. "homepage": "https://symfony.com/contributors"
  6548. }
  6549. ],
  6550. "description": "Generic abstractions related to writing services",
  6551. "homepage": "https://symfony.com",
  6552. "keywords": [
  6553. "abstractions",
  6554. "contracts",
  6555. "decoupling",
  6556. "interfaces",
  6557. "interoperability",
  6558. "standards"
  6559. ],
  6560. "support": {
  6561. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  6562. },
  6563. "funding": [
  6564. {
  6565. "url": "https://symfony.com/sponsor",
  6566. "type": "custom"
  6567. },
  6568. {
  6569. "url": "https://github.com/fabpot",
  6570. "type": "github"
  6571. },
  6572. {
  6573. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6574. "type": "tidelift"
  6575. }
  6576. ],
  6577. "time": "2022-05-30T19:17:29+00:00"
  6578. },
  6579. {
  6580. "name": "symfony/translation",
  6581. "version": "v5.4.12",
  6582. "source": {
  6583. "type": "git",
  6584. "url": "https://github.com/symfony/translation.git",
  6585. "reference": "42ecc77eb4f229ce2df702a648ec93b8478d76ae"
  6586. },
  6587. "dist": {
  6588. "type": "zip",
  6589. "url": "https://api.github.com/repos/symfony/translation/zipball/42ecc77eb4f229ce2df702a648ec93b8478d76ae",
  6590. "reference": "42ecc77eb4f229ce2df702a648ec93b8478d76ae",
  6591. "shasum": "",
  6592. "mirrors": [
  6593. {
  6594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6595. "preferred": true
  6596. }
  6597. ]
  6598. },
  6599. "require": {
  6600. "php": ">=7.2.5",
  6601. "symfony/deprecation-contracts": "^2.1|^3",
  6602. "symfony/polyfill-mbstring": "~1.0",
  6603. "symfony/polyfill-php80": "^1.16",
  6604. "symfony/translation-contracts": "^2.3"
  6605. },
  6606. "conflict": {
  6607. "symfony/config": "<4.4",
  6608. "symfony/console": "<5.3",
  6609. "symfony/dependency-injection": "<5.0",
  6610. "symfony/http-kernel": "<5.0",
  6611. "symfony/twig-bundle": "<5.0",
  6612. "symfony/yaml": "<4.4"
  6613. },
  6614. "provide": {
  6615. "symfony/translation-implementation": "2.3"
  6616. },
  6617. "require-dev": {
  6618. "psr/log": "^1|^2|^3",
  6619. "symfony/config": "^4.4|^5.0|^6.0",
  6620. "symfony/console": "^5.4|^6.0",
  6621. "symfony/dependency-injection": "^5.0|^6.0",
  6622. "symfony/finder": "^4.4|^5.0|^6.0",
  6623. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6624. "symfony/http-kernel": "^5.0|^6.0",
  6625. "symfony/intl": "^4.4|^5.0|^6.0",
  6626. "symfony/polyfill-intl-icu": "^1.21",
  6627. "symfony/service-contracts": "^1.1.2|^2|^3",
  6628. "symfony/yaml": "^4.4|^5.0|^6.0"
  6629. },
  6630. "suggest": {
  6631. "psr/log-implementation": "To use logging capability in translator",
  6632. "symfony/config": "",
  6633. "symfony/yaml": ""
  6634. },
  6635. "type": "library",
  6636. "autoload": {
  6637. "files": [
  6638. "Resources/functions.php"
  6639. ],
  6640. "psr-4": {
  6641. "Symfony\\Component\\Translation\\": ""
  6642. },
  6643. "exclude-from-classmap": [
  6644. "/Tests/"
  6645. ]
  6646. },
  6647. "notification-url": "https://packagist.org/downloads/",
  6648. "license": [
  6649. "MIT"
  6650. ],
  6651. "authors": [
  6652. {
  6653. "name": "Fabien Potencier",
  6654. "email": "fabien@symfony.com"
  6655. },
  6656. {
  6657. "name": "Symfony Community",
  6658. "homepage": "https://symfony.com/contributors"
  6659. }
  6660. ],
  6661. "description": "Provides tools to internationalize your application",
  6662. "homepage": "https://symfony.com",
  6663. "support": {
  6664. "source": "https://github.com/symfony/translation/tree/v5.4.12"
  6665. },
  6666. "funding": [
  6667. {
  6668. "url": "https://symfony.com/sponsor",
  6669. "type": "custom"
  6670. },
  6671. {
  6672. "url": "https://github.com/fabpot",
  6673. "type": "github"
  6674. },
  6675. {
  6676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6677. "type": "tidelift"
  6678. }
  6679. ],
  6680. "time": "2022-08-02T15:52:22+00:00"
  6681. },
  6682. {
  6683. "name": "symfony/translation-contracts",
  6684. "version": "v2.5.2",
  6685. "source": {
  6686. "type": "git",
  6687. "url": "https://github.com/symfony/translation-contracts.git",
  6688. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  6689. },
  6690. "dist": {
  6691. "type": "zip",
  6692. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6693. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6694. "shasum": "",
  6695. "mirrors": [
  6696. {
  6697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6698. "preferred": true
  6699. }
  6700. ]
  6701. },
  6702. "require": {
  6703. "php": ">=7.2.5"
  6704. },
  6705. "suggest": {
  6706. "symfony/translation-implementation": ""
  6707. },
  6708. "type": "library",
  6709. "extra": {
  6710. "branch-alias": {
  6711. "dev-main": "2.5-dev"
  6712. },
  6713. "thanks": {
  6714. "name": "symfony/contracts",
  6715. "url": "https://github.com/symfony/contracts"
  6716. }
  6717. },
  6718. "autoload": {
  6719. "psr-4": {
  6720. "Symfony\\Contracts\\Translation\\": ""
  6721. }
  6722. },
  6723. "notification-url": "https://packagist.org/downloads/",
  6724. "license": [
  6725. "MIT"
  6726. ],
  6727. "authors": [
  6728. {
  6729. "name": "Nicolas Grekas",
  6730. "email": "p@tchwork.com"
  6731. },
  6732. {
  6733. "name": "Symfony Community",
  6734. "homepage": "https://symfony.com/contributors"
  6735. }
  6736. ],
  6737. "description": "Generic abstractions related to translation",
  6738. "homepage": "https://symfony.com",
  6739. "keywords": [
  6740. "abstractions",
  6741. "contracts",
  6742. "decoupling",
  6743. "interfaces",
  6744. "interoperability",
  6745. "standards"
  6746. ],
  6747. "support": {
  6748. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  6749. },
  6750. "funding": [
  6751. {
  6752. "url": "https://symfony.com/sponsor",
  6753. "type": "custom"
  6754. },
  6755. {
  6756. "url": "https://github.com/fabpot",
  6757. "type": "github"
  6758. },
  6759. {
  6760. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6761. "type": "tidelift"
  6762. }
  6763. ],
  6764. "time": "2022-06-27T16:58:25+00:00"
  6765. },
  6766. {
  6767. "name": "symfony/var-dumper",
  6768. "version": "v4.4.44",
  6769. "source": {
  6770. "type": "git",
  6771. "url": "https://github.com/symfony/var-dumper.git",
  6772. "reference": "f19951007dae942cc79b979c1fe26bfdfbeb54ed"
  6773. },
  6774. "dist": {
  6775. "type": "zip",
  6776. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f19951007dae942cc79b979c1fe26bfdfbeb54ed",
  6777. "reference": "f19951007dae942cc79b979c1fe26bfdfbeb54ed",
  6778. "shasum": "",
  6779. "mirrors": [
  6780. {
  6781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6782. "preferred": true
  6783. }
  6784. ]
  6785. },
  6786. "require": {
  6787. "php": ">=7.1.3",
  6788. "symfony/polyfill-mbstring": "~1.0",
  6789. "symfony/polyfill-php72": "~1.5",
  6790. "symfony/polyfill-php80": "^1.16"
  6791. },
  6792. "conflict": {
  6793. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  6794. "symfony/console": "<3.4"
  6795. },
  6796. "require-dev": {
  6797. "ext-iconv": "*",
  6798. "symfony/console": "^3.4|^4.0|^5.0",
  6799. "symfony/process": "^4.4|^5.0",
  6800. "twig/twig": "^1.43|^2.13|^3.0.4"
  6801. },
  6802. "suggest": {
  6803. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6804. "ext-intl": "To show region name in time zone dump",
  6805. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6806. },
  6807. "bin": [
  6808. "Resources/bin/var-dump-server"
  6809. ],
  6810. "type": "library",
  6811. "autoload": {
  6812. "files": [
  6813. "Resources/functions/dump.php"
  6814. ],
  6815. "psr-4": {
  6816. "Symfony\\Component\\VarDumper\\": ""
  6817. },
  6818. "exclude-from-classmap": [
  6819. "/Tests/"
  6820. ]
  6821. },
  6822. "notification-url": "https://packagist.org/downloads/",
  6823. "license": [
  6824. "MIT"
  6825. ],
  6826. "authors": [
  6827. {
  6828. "name": "Nicolas Grekas",
  6829. "email": "p@tchwork.com"
  6830. },
  6831. {
  6832. "name": "Symfony Community",
  6833. "homepage": "https://symfony.com/contributors"
  6834. }
  6835. ],
  6836. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6837. "homepage": "https://symfony.com",
  6838. "keywords": [
  6839. "debug",
  6840. "dump"
  6841. ],
  6842. "support": {
  6843. "source": "https://github.com/symfony/var-dumper/tree/v4.4.44"
  6844. },
  6845. "funding": [
  6846. {
  6847. "url": "https://symfony.com/sponsor",
  6848. "type": "custom"
  6849. },
  6850. {
  6851. "url": "https://github.com/fabpot",
  6852. "type": "github"
  6853. },
  6854. {
  6855. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6856. "type": "tidelift"
  6857. }
  6858. ],
  6859. "time": "2022-07-20T09:59:04+00:00"
  6860. },
  6861. {
  6862. "name": "symfony/var-exporter",
  6863. "version": "v5.4.10",
  6864. "source": {
  6865. "type": "git",
  6866. "url": "https://github.com/symfony/var-exporter.git",
  6867. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340"
  6868. },
  6869. "dist": {
  6870. "type": "zip",
  6871. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  6872. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  6873. "shasum": "",
  6874. "mirrors": [
  6875. {
  6876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6877. "preferred": true
  6878. }
  6879. ]
  6880. },
  6881. "require": {
  6882. "php": ">=7.2.5",
  6883. "symfony/polyfill-php80": "^1.16"
  6884. },
  6885. "require-dev": {
  6886. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  6887. },
  6888. "type": "library",
  6889. "autoload": {
  6890. "psr-4": {
  6891. "Symfony\\Component\\VarExporter\\": ""
  6892. },
  6893. "exclude-from-classmap": [
  6894. "/Tests/"
  6895. ]
  6896. },
  6897. "notification-url": "https://packagist.org/downloads/",
  6898. "license": [
  6899. "MIT"
  6900. ],
  6901. "authors": [
  6902. {
  6903. "name": "Nicolas Grekas",
  6904. "email": "p@tchwork.com"
  6905. },
  6906. {
  6907. "name": "Symfony Community",
  6908. "homepage": "https://symfony.com/contributors"
  6909. }
  6910. ],
  6911. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  6912. "homepage": "https://symfony.com",
  6913. "keywords": [
  6914. "clone",
  6915. "construct",
  6916. "export",
  6917. "hydrate",
  6918. "instantiate",
  6919. "serialize"
  6920. ],
  6921. "support": {
  6922. "source": "https://github.com/symfony/var-exporter/tree/v5.4.10"
  6923. },
  6924. "funding": [
  6925. {
  6926. "url": "https://symfony.com/sponsor",
  6927. "type": "custom"
  6928. },
  6929. {
  6930. "url": "https://github.com/fabpot",
  6931. "type": "github"
  6932. },
  6933. {
  6934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6935. "type": "tidelift"
  6936. }
  6937. ],
  6938. "time": "2022-05-27T12:56:18+00:00"
  6939. },
  6940. {
  6941. "name": "topthink/framework",
  6942. "version": "v6.0.9",
  6943. "source": {
  6944. "type": "git",
  6945. "url": "https://github.com/top-think/framework.git",
  6946. "reference": "0b5fb453f0e533de3af3a1ab6a202510b61be617"
  6947. },
  6948. "dist": {
  6949. "type": "zip",
  6950. "url": "https://api.github.com/repos/top-think/framework/zipball/0b5fb453f0e533de3af3a1ab6a202510b61be617",
  6951. "reference": "0b5fb453f0e533de3af3a1ab6a202510b61be617",
  6952. "shasum": "",
  6953. "mirrors": [
  6954. {
  6955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6956. "preferred": true
  6957. }
  6958. ]
  6959. },
  6960. "require": {
  6961. "ext-json": "*",
  6962. "ext-mbstring": "*",
  6963. "league/flysystem": "^1.1.4",
  6964. "league/flysystem-cached-adapter": "^1.0",
  6965. "php": ">=7.2.5",
  6966. "psr/container": "~1.0",
  6967. "psr/log": "~1.0",
  6968. "psr/simple-cache": "^1.0",
  6969. "topthink/think-helper": "^3.1.1",
  6970. "topthink/think-orm": "^2.0"
  6971. },
  6972. "require-dev": {
  6973. "mikey179/vfsstream": "^1.6",
  6974. "mockery/mockery": "^1.2",
  6975. "phpunit/phpunit": "^7.0"
  6976. },
  6977. "type": "library",
  6978. "autoload": {
  6979. "files": [],
  6980. "psr-4": {
  6981. "think\\": "src/think/"
  6982. }
  6983. },
  6984. "notification-url": "https://packagist.org/downloads/",
  6985. "license": [
  6986. "Apache-2.0"
  6987. ],
  6988. "authors": [
  6989. {
  6990. "name": "liu21st",
  6991. "email": "liu21st@gmail.com"
  6992. },
  6993. {
  6994. "name": "yunwuxin",
  6995. "email": "448901948@qq.com"
  6996. }
  6997. ],
  6998. "description": "The ThinkPHP Framework.",
  6999. "homepage": "http://thinkphp.cn/",
  7000. "keywords": [
  7001. "framework",
  7002. "orm",
  7003. "thinkphp"
  7004. ],
  7005. "support": {
  7006. "issues": "https://github.com/top-think/framework/issues",
  7007. "source": "https://github.com/top-think/framework/tree/v6.0.9"
  7008. },
  7009. "time": "2021-07-22T03:24:49+00:00"
  7010. },
  7011. {
  7012. "name": "topthink/think-captcha",
  7013. "version": "v3.0.7",
  7014. "source": {
  7015. "type": "git",
  7016. "url": "https://github.com/top-think/think-captcha.git",
  7017. "reference": "a450602932a5d9ba183e288b79921ba3b9a92331"
  7018. },
  7019. "dist": {
  7020. "type": "zip",
  7021. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/a450602932a5d9ba183e288b79921ba3b9a92331",
  7022. "reference": "a450602932a5d9ba183e288b79921ba3b9a92331",
  7023. "shasum": "",
  7024. "mirrors": [
  7025. {
  7026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7027. "preferred": true
  7028. }
  7029. ]
  7030. },
  7031. "require": {
  7032. "topthink/framework": "^6.0.0"
  7033. },
  7034. "type": "library",
  7035. "extra": {
  7036. "think": {
  7037. "services": [
  7038. "think\\captcha\\CaptchaService"
  7039. ],
  7040. "config": {
  7041. "captcha": "src/config.php"
  7042. }
  7043. }
  7044. },
  7045. "autoload": {
  7046. "files": [
  7047. "src/helper.php"
  7048. ],
  7049. "psr-4": {
  7050. "think\\captcha\\": "src/"
  7051. }
  7052. },
  7053. "notification-url": "https://packagist.org/downloads/",
  7054. "license": [
  7055. "Apache-2.0"
  7056. ],
  7057. "authors": [
  7058. {
  7059. "name": "yunwuxin",
  7060. "email": "448901948@qq.com"
  7061. }
  7062. ],
  7063. "description": "captcha package for thinkphp",
  7064. "support": {
  7065. "issues": "https://github.com/top-think/think-captcha/issues",
  7066. "source": "https://github.com/top-think/think-captcha/tree/v3.0.7"
  7067. },
  7068. "time": "2022-04-23T02:38:14+00:00"
  7069. },
  7070. {
  7071. "name": "topthink/think-helper",
  7072. "version": "v3.1.6",
  7073. "source": {
  7074. "type": "git",
  7075. "url": "https://github.com/top-think/think-helper.git",
  7076. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  7077. },
  7078. "dist": {
  7079. "type": "zip",
  7080. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  7081. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  7082. "shasum": "",
  7083. "mirrors": [
  7084. {
  7085. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7086. "preferred": true
  7087. }
  7088. ]
  7089. },
  7090. "require": {
  7091. "php": ">=7.1.0"
  7092. },
  7093. "require-dev": {
  7094. "phpunit/phpunit": "^9.5"
  7095. },
  7096. "type": "library",
  7097. "autoload": {
  7098. "files": [
  7099. "src/helper.php"
  7100. ],
  7101. "psr-4": {
  7102. "think\\": "src"
  7103. }
  7104. },
  7105. "notification-url": "https://packagist.org/downloads/",
  7106. "license": [
  7107. "Apache-2.0"
  7108. ],
  7109. "authors": [
  7110. {
  7111. "name": "yunwuxin",
  7112. "email": "448901948@qq.com"
  7113. }
  7114. ],
  7115. "description": "The ThinkPHP6 Helper Package",
  7116. "support": {
  7117. "issues": "https://github.com/top-think/think-helper/issues",
  7118. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  7119. },
  7120. "time": "2021-12-15T04:27:55+00:00"
  7121. },
  7122. {
  7123. "name": "topthink/think-image",
  7124. "version": "v1.0.7",
  7125. "source": {
  7126. "type": "git",
  7127. "url": "https://github.com/top-think/think-image.git",
  7128. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  7129. },
  7130. "dist": {
  7131. "type": "zip",
  7132. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  7133. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  7134. "shasum": "",
  7135. "mirrors": [
  7136. {
  7137. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7138. "preferred": true
  7139. }
  7140. ]
  7141. },
  7142. "require": {
  7143. "ext-gd": "*"
  7144. },
  7145. "require-dev": {
  7146. "phpunit/phpunit": "4.8.*",
  7147. "topthink/framework": "^5.0"
  7148. },
  7149. "type": "library",
  7150. "autoload": {
  7151. "psr-4": {
  7152. "think\\": "src"
  7153. }
  7154. },
  7155. "notification-url": "https://packagist.org/downloads/",
  7156. "license": [
  7157. "Apache-2.0"
  7158. ],
  7159. "authors": [
  7160. {
  7161. "name": "yunwuxin",
  7162. "email": "448901948@qq.com"
  7163. }
  7164. ],
  7165. "description": "The ThinkPHP5 Image Package",
  7166. "support": {
  7167. "issues": "https://github.com/top-think/think-image/issues",
  7168. "source": "https://github.com/top-think/think-image/tree/master"
  7169. },
  7170. "time": "2016-09-29T06:05:43+00:00"
  7171. },
  7172. {
  7173. "name": "topthink/think-migration",
  7174. "version": "v3.0.3",
  7175. "source": {
  7176. "type": "git",
  7177. "url": "https://github.com/top-think/think-migration.git",
  7178. "reference": "5717d9e5f3ea745f6dbfd1e30b4402aaadff9a79"
  7179. },
  7180. "dist": {
  7181. "type": "zip",
  7182. "url": "https://api.github.com/repos/top-think/think-migration/zipball/5717d9e5f3ea745f6dbfd1e30b4402aaadff9a79",
  7183. "reference": "5717d9e5f3ea745f6dbfd1e30b4402aaadff9a79",
  7184. "shasum": "",
  7185. "mirrors": [
  7186. {
  7187. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7188. "preferred": true
  7189. }
  7190. ]
  7191. },
  7192. "require": {
  7193. "topthink/framework": "^6.0.0",
  7194. "topthink/think-helper": "^3.0.3"
  7195. },
  7196. "require-dev": {
  7197. "fzaninotto/faker": "^1.8"
  7198. },
  7199. "suggest": {
  7200. "fzaninotto/faker": "Required to use the factory builder (^1.8)."
  7201. },
  7202. "type": "library",
  7203. "extra": {
  7204. "think": {
  7205. "services": [
  7206. "think\\migration\\Service"
  7207. ]
  7208. }
  7209. },
  7210. "autoload": {
  7211. "psr-4": {
  7212. "Phinx\\": "phinx/src/Phinx",
  7213. "think\\migration\\": "src"
  7214. }
  7215. },
  7216. "notification-url": "https://packagist.org/downloads/",
  7217. "license": [
  7218. "Apache-2.0"
  7219. ],
  7220. "authors": [
  7221. {
  7222. "name": "yunwuxin",
  7223. "email": "448901948@qq.com"
  7224. }
  7225. ],
  7226. "support": {
  7227. "issues": "https://github.com/top-think/think-migration/issues",
  7228. "source": "https://github.com/top-think/think-migration/tree/v3.0.3"
  7229. },
  7230. "time": "2020-12-07T05:54:22+00:00"
  7231. },
  7232. {
  7233. "name": "topthink/think-orm",
  7234. "version": "v2.0.54",
  7235. "source": {
  7236. "type": "git",
  7237. "url": "https://github.com/top-think/think-orm.git",
  7238. "reference": "97b061b47616301ff29fbd4c35ed9184e1162e4e"
  7239. },
  7240. "dist": {
  7241. "type": "zip",
  7242. "url": "https://api.github.com/repos/top-think/think-orm/zipball/97b061b47616301ff29fbd4c35ed9184e1162e4e",
  7243. "reference": "97b061b47616301ff29fbd4c35ed9184e1162e4e",
  7244. "shasum": "",
  7245. "mirrors": [
  7246. {
  7247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7248. "preferred": true
  7249. }
  7250. ]
  7251. },
  7252. "require": {
  7253. "ext-json": "*",
  7254. "ext-pdo": "*",
  7255. "php": ">=7.1.0",
  7256. "psr/log": "^1.0|^2.0",
  7257. "psr/simple-cache": "^1.0|^2.0",
  7258. "topthink/think-helper": "^3.1"
  7259. },
  7260. "require-dev": {
  7261. "phpunit/phpunit": "^7|^8|^9.5"
  7262. },
  7263. "type": "library",
  7264. "autoload": {
  7265. "files": [
  7266. "stubs/load_stubs.php"
  7267. ],
  7268. "psr-4": {
  7269. "think\\": "src"
  7270. }
  7271. },
  7272. "notification-url": "https://packagist.org/downloads/",
  7273. "license": [
  7274. "Apache-2.0"
  7275. ],
  7276. "authors": [
  7277. {
  7278. "name": "liu21st",
  7279. "email": "liu21st@gmail.com"
  7280. }
  7281. ],
  7282. "description": "think orm",
  7283. "keywords": [
  7284. "database",
  7285. "orm"
  7286. ],
  7287. "support": {
  7288. "issues": "https://github.com/top-think/think-orm/issues",
  7289. "source": "https://github.com/top-think/think-orm/tree/v2.0.54"
  7290. },
  7291. "time": "2022-07-05T05:25:51+00:00"
  7292. },
  7293. {
  7294. "name": "topthink/think-queue",
  7295. "version": "v3.0.7",
  7296. "source": {
  7297. "type": "git",
  7298. "url": "https://github.com/top-think/think-queue.git",
  7299. "reference": "cded7616e313f9daa55c0ad0de5791f0d1fb3066"
  7300. },
  7301. "dist": {
  7302. "type": "zip",
  7303. "url": "https://api.github.com/repos/top-think/think-queue/zipball/cded7616e313f9daa55c0ad0de5791f0d1fb3066",
  7304. "reference": "cded7616e313f9daa55c0ad0de5791f0d1fb3066",
  7305. "shasum": "",
  7306. "mirrors": [
  7307. {
  7308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7309. "preferred": true
  7310. }
  7311. ]
  7312. },
  7313. "require": {
  7314. "ext-json": "*",
  7315. "nesbot/carbon": "^2.16",
  7316. "symfony/process": "^4.2",
  7317. "topthink/framework": "^6.0"
  7318. },
  7319. "require-dev": {
  7320. "mockery/mockery": "^1.2",
  7321. "phpunit/phpunit": "^6.2",
  7322. "topthink/think-migration": "^3.0.0"
  7323. },
  7324. "type": "library",
  7325. "extra": {
  7326. "think": {
  7327. "services": [
  7328. "think\\queue\\Service"
  7329. ],
  7330. "config": {
  7331. "queue": "src/config.php"
  7332. }
  7333. }
  7334. },
  7335. "autoload": {
  7336. "files": [
  7337. "src/common.php"
  7338. ],
  7339. "psr-4": {
  7340. "think\\": "src"
  7341. }
  7342. },
  7343. "notification-url": "https://packagist.org/downloads/",
  7344. "license": [
  7345. "Apache-2.0"
  7346. ],
  7347. "authors": [
  7348. {
  7349. "name": "yunwuxin",
  7350. "email": "448901948@qq.com"
  7351. }
  7352. ],
  7353. "description": "The ThinkPHP6 Queue Package",
  7354. "support": {
  7355. "issues": "https://github.com/top-think/think-queue/issues",
  7356. "source": "https://github.com/top-think/think-queue/tree/v3.0.7"
  7357. },
  7358. "time": "2021-12-20T08:04:36+00:00"
  7359. },
  7360. {
  7361. "name": "topthink/think-swoole",
  7362. "version": "v4.0.7",
  7363. "source": {
  7364. "type": "git",
  7365. "url": "https://github.com/top-think/think-swoole.git",
  7366. "reference": "70a1f7f0dad2881b7bb08eef19ea6c6bc04b483a"
  7367. },
  7368. "dist": {
  7369. "type": "zip",
  7370. "url": "https://api.github.com/repos/top-think/think-swoole/zipball/70a1f7f0dad2881b7bb08eef19ea6c6bc04b483a",
  7371. "reference": "70a1f7f0dad2881b7bb08eef19ea6c6bc04b483a",
  7372. "shasum": "",
  7373. "mirrors": [
  7374. {
  7375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7376. "preferred": true
  7377. }
  7378. ]
  7379. },
  7380. "require": {
  7381. "ext-json": "*",
  7382. "ext-swoole": ">=4.6",
  7383. "nette/php-generator": "^3.2",
  7384. "open-smf/connection-pool": "~1.0",
  7385. "php": ">=7.4",
  7386. "stechstudio/backoff": "^1.2",
  7387. "swoole/ide-helper": "^4.3",
  7388. "symfony/finder": "^4.3.2|^5.1",
  7389. "topthink/framework": "^6.0"
  7390. },
  7391. "require-dev": {
  7392. "phpunit/phpunit": "^9.5",
  7393. "symfony/var-dumper": "^4.3|^5.1",
  7394. "topthink/think-queue": "^3.0",
  7395. "topthink/think-tracing": "^1.0"
  7396. },
  7397. "type": "library",
  7398. "extra": {
  7399. "think": {
  7400. "services": [
  7401. "think\\swoole\\Service"
  7402. ],
  7403. "config": {
  7404. "swoole": "src/config/swoole.php"
  7405. }
  7406. }
  7407. },
  7408. "autoload": {
  7409. "files": [
  7410. "src/helpers.php"
  7411. ],
  7412. "psr-4": {
  7413. "think\\swoole\\": "src"
  7414. }
  7415. },
  7416. "notification-url": "https://packagist.org/downloads/",
  7417. "license": [
  7418. "Apache-2.0"
  7419. ],
  7420. "authors": [
  7421. {
  7422. "name": "liu21st",
  7423. "email": "liu21st@gmail.com"
  7424. }
  7425. ],
  7426. "description": "Swoole extend for thinkphp",
  7427. "support": {
  7428. "issues": "https://github.com/top-think/think-swoole/issues",
  7429. "source": "https://github.com/top-think/think-swoole/tree/v4.0.7"
  7430. },
  7431. "time": "2022-01-18T13:33:54+00:00"
  7432. },
  7433. {
  7434. "name": "topthink/think-template",
  7435. "version": "v2.0.8",
  7436. "source": {
  7437. "type": "git",
  7438. "url": "https://github.com/top-think/think-template.git",
  7439. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368"
  7440. },
  7441. "dist": {
  7442. "type": "zip",
  7443. "url": "https://api.github.com/repos/top-think/think-template/zipball/abfc293f74f9ef5127b5c416310a01fe42e59368",
  7444. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368",
  7445. "shasum": "",
  7446. "mirrors": [
  7447. {
  7448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7449. "preferred": true
  7450. }
  7451. ]
  7452. },
  7453. "require": {
  7454. "php": ">=7.1.0",
  7455. "psr/simple-cache": "^1.0"
  7456. },
  7457. "type": "library",
  7458. "autoload": {
  7459. "psr-4": {
  7460. "think\\": "src"
  7461. }
  7462. },
  7463. "notification-url": "https://packagist.org/downloads/",
  7464. "license": [
  7465. "Apache-2.0"
  7466. ],
  7467. "authors": [
  7468. {
  7469. "name": "liu21st",
  7470. "email": "liu21st@gmail.com"
  7471. }
  7472. ],
  7473. "description": "the php template engine",
  7474. "support": {
  7475. "issues": "https://github.com/top-think/think-template/issues",
  7476. "source": "https://github.com/top-think/think-template/tree/v2.0.8"
  7477. },
  7478. "time": "2020-12-10T07:52:03+00:00"
  7479. },
  7480. {
  7481. "name": "topthink/think-view",
  7482. "version": "v1.0.14",
  7483. "source": {
  7484. "type": "git",
  7485. "url": "https://github.com/top-think/think-view.git",
  7486. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  7487. },
  7488. "dist": {
  7489. "type": "zip",
  7490. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  7491. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  7492. "shasum": "",
  7493. "mirrors": [
  7494. {
  7495. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7496. "preferred": true
  7497. }
  7498. ]
  7499. },
  7500. "require": {
  7501. "php": ">=7.1.0",
  7502. "topthink/think-template": "^2.0"
  7503. },
  7504. "type": "library",
  7505. "autoload": {
  7506. "psr-4": {
  7507. "think\\view\\driver\\": "src"
  7508. }
  7509. },
  7510. "notification-url": "https://packagist.org/downloads/",
  7511. "license": [
  7512. "Apache-2.0"
  7513. ],
  7514. "authors": [
  7515. {
  7516. "name": "liu21st",
  7517. "email": "liu21st@gmail.com"
  7518. }
  7519. ],
  7520. "description": "thinkphp template driver",
  7521. "support": {
  7522. "issues": "https://github.com/top-think/think-view/issues",
  7523. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  7524. },
  7525. "time": "2019-11-06T11:40:13+00:00"
  7526. },
  7527. {
  7528. "name": "xaboy/form-builder",
  7529. "version": "2.0.19",
  7530. "source": {
  7531. "type": "git",
  7532. "url": "https://github.com/xaboy/form-builder.git",
  7533. "reference": "5cf3f5435a63954c1d11ba82c3cd4cfe3d145acf"
  7534. },
  7535. "dist": {
  7536. "type": "zip",
  7537. "url": "https://api.github.com/repos/xaboy/form-builder/zipball/5cf3f5435a63954c1d11ba82c3cd4cfe3d145acf",
  7538. "reference": "5cf3f5435a63954c1d11ba82c3cd4cfe3d145acf",
  7539. "shasum": "",
  7540. "mirrors": [
  7541. {
  7542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7543. "preferred": true
  7544. }
  7545. ]
  7546. },
  7547. "require": {
  7548. "doctrine/annotations": "^1.2.7",
  7549. "ext-json": "*",
  7550. "php": ">=5.4.0",
  7551. "symfony/http-foundation": ">=2.6"
  7552. },
  7553. "type": "library",
  7554. "autoload": {
  7555. "psr-4": {
  7556. "FormBuilder\\": "./src/"
  7557. }
  7558. },
  7559. "notification-url": "https://packagist.org/downloads/",
  7560. "license": [
  7561. "MIT"
  7562. ],
  7563. "authors": [
  7564. {
  7565. "name": "xaboy",
  7566. "email": "xaboy2005@qq.com"
  7567. }
  7568. ],
  7569. "description": "PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  7570. "homepage": "https://github.com/xaboy/form-builder",
  7571. "keywords": [
  7572. "dynamic-form",
  7573. "element-ui",
  7574. "form",
  7575. "form-create",
  7576. "form-generator",
  7577. "iview"
  7578. ],
  7579. "support": {
  7580. "issues": "https://github.com/xaboy/form-builder/issues",
  7581. "source": "https://github.com/xaboy/form-builder"
  7582. },
  7583. "time": "2021-02-25T03:51:14+00:00"
  7584. },
  7585. {
  7586. "name": "xiaodi/think-pullword",
  7587. "version": "v1.2.1",
  7588. "source": {
  7589. "type": "git",
  7590. "url": "https://github.com/friendsofthinkphp/think-pullword.git",
  7591. "reference": "0e6f1ee141090a012dc8876209eaa3cf166c84c4"
  7592. },
  7593. "dist": {
  7594. "type": "zip",
  7595. "url": "https://api.github.com/repos/friendsofthinkphp/think-pullword/zipball/0e6f1ee141090a012dc8876209eaa3cf166c84c4",
  7596. "reference": "0e6f1ee141090a012dc8876209eaa3cf166c84c4",
  7597. "shasum": "",
  7598. "mirrors": [
  7599. {
  7600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7601. "preferred": true
  7602. }
  7603. ]
  7604. },
  7605. "require": {
  7606. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  7607. "topthink/framework": "6.0.*|5.1.*"
  7608. },
  7609. "type": "library",
  7610. "extra": {
  7611. "think": {
  7612. "services": [
  7613. "PullWord\\PullWordService"
  7614. ]
  7615. }
  7616. },
  7617. "autoload": {
  7618. "files": [
  7619. "src/helper.php"
  7620. ],
  7621. "psr-4": {
  7622. "PullWord\\": "src"
  7623. }
  7624. },
  7625. "notification-url": "https://packagist.org/downloads/",
  7626. "license": [
  7627. "MIT"
  7628. ],
  7629. "authors": [
  7630. {
  7631. "name": "xiaodi",
  7632. "email": "liangjinbiao@live.com"
  7633. }
  7634. ],
  7635. "description": "ThinkPHP 分词/抽词 扩展包",
  7636. "keywords": [
  7637. "php",
  7638. "think-extend",
  7639. "thinkphp"
  7640. ],
  7641. "support": {
  7642. "issues": "https://github.com/friendsofthinkphp/think-pullword/issues",
  7643. "source": "https://github.com/friendsofthinkphp/think-pullword/tree/v1.2.1"
  7644. },
  7645. "time": "2021-01-05T02:48:17+00:00"
  7646. },
  7647. {
  7648. "name": "xin/container",
  7649. "version": "2.0.1",
  7650. "source": {
  7651. "type": "git",
  7652. "url": "https://gitee.com/liuxiaojinla/php-container",
  7653. "reference": "97bb67f87dd851545938a1f2fe0ffbd379e3ff81"
  7654. },
  7655. "require": {
  7656. "ext-ctype": "*",
  7657. "ext-iconv": "*",
  7658. "ext-json": "*",
  7659. "ext-libxml": "*",
  7660. "ext-mbstring": "*",
  7661. "ext-openssl": "*",
  7662. "ext-simplexml": "*",
  7663. "psr/container": "^1.0",
  7664. "xin/helper": "^1.0"
  7665. },
  7666. "type": "library",
  7667. "autoload": {
  7668. "psr-4": {
  7669. "xin\\container\\": "src/"
  7670. }
  7671. },
  7672. "notification-url": "https://packagist.org/downloads/",
  7673. "license": [
  7674. "Apache-2.0"
  7675. ],
  7676. "authors": [
  7677. {
  7678. "name": "晋",
  7679. "email": "657306123@qq.com"
  7680. }
  7681. ],
  7682. "description": "严格基于PSR11规范实现基础的容器和依赖注入",
  7683. "time": "2019-10-21T03:51:25+00:00"
  7684. },
  7685. {
  7686. "name": "xin/helper",
  7687. "version": "1.0.0",
  7688. "source": {
  7689. "type": "git",
  7690. "url": "https://gitee.com/liuxiaojinla/php-helper",
  7691. "reference": "02a58132dae2aea2d1c0b8e66f55125969224747"
  7692. },
  7693. "require": {
  7694. "ext-ctype": "*",
  7695. "ext-iconv": "*",
  7696. "ext-json": "*",
  7697. "ext-libxml": "*",
  7698. "ext-mbstring": "*",
  7699. "ext-openssl": "*",
  7700. "ext-simplexml": "*"
  7701. },
  7702. "type": "library",
  7703. "autoload": {
  7704. "psr-4": {
  7705. "xin\\helper\\": "src/"
  7706. }
  7707. },
  7708. "notification-url": "https://packagist.org/downloads/",
  7709. "license": [
  7710. "Apache-2.0"
  7711. ],
  7712. "authors": [
  7713. {
  7714. "name": "晋",
  7715. "email": "1540175452@qq.com"
  7716. }
  7717. ],
  7718. "description": "PHP项目日常开发必备基础库,数组工具类、字符串工具类、数字工具类、函数工具类、服务器工具类、加密工具类",
  7719. "time": "2019-06-22T08:28:23+00:00"
  7720. },
  7721. {
  7722. "name": "yurunsoft/composer-include-files",
  7723. "version": "v2.0.0",
  7724. "source": {
  7725. "type": "git",
  7726. "url": "https://github.com/Yurunsoft/composer-include-files.git",
  7727. "reference": "277ed077b85d7a9d7b6b73ff148a48d9d676218d"
  7728. },
  7729. "dist": {
  7730. "type": "zip",
  7731. "url": "https://api.github.com/repos/Yurunsoft/composer-include-files/zipball/277ed077b85d7a9d7b6b73ff148a48d9d676218d",
  7732. "reference": "277ed077b85d7a9d7b6b73ff148a48d9d676218d",
  7733. "shasum": "",
  7734. "mirrors": [
  7735. {
  7736. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7737. "preferred": true
  7738. }
  7739. ]
  7740. },
  7741. "require": {
  7742. "composer-plugin-api": "^1.0 || ^2.0"
  7743. },
  7744. "type": "composer-plugin",
  7745. "extra": {
  7746. "class": "ComposerIncludeFiles\\Plugin"
  7747. },
  7748. "autoload": {
  7749. "psr-4": {
  7750. "ComposerIncludeFiles\\": "src"
  7751. }
  7752. },
  7753. "notification-url": "https://packagist.org/downloads/",
  7754. "license": [
  7755. "MIT"
  7756. ],
  7757. "authors": [
  7758. {
  7759. "name": "Tim Robertson",
  7760. "email": "funkjedi@gmail.com"
  7761. }
  7762. ],
  7763. "description": "Include files at a higher priority than autoload files.",
  7764. "homepage": "https://github.com/funkjedi/composer-include-files",
  7765. "keywords": [
  7766. "autoload",
  7767. "composer"
  7768. ],
  7769. "support": {
  7770. "source": "https://github.com/Yurunsoft/composer-include-files/tree/v2.0.0"
  7771. },
  7772. "time": "2020-10-26T05:59:11+00:00"
  7773. },
  7774. {
  7775. "name": "yurunsoft/guzzle-swoole",
  7776. "version": "v2.2.4",
  7777. "source": {
  7778. "type": "git",
  7779. "url": "https://github.com/Yurunsoft/Guzzle-Swoole.git",
  7780. "reference": "89bb58446aa0a3d6448de3943b40a5d79b18cbda"
  7781. },
  7782. "dist": {
  7783. "type": "zip",
  7784. "url": "https://api.github.com/repos/Yurunsoft/Guzzle-Swoole/zipball/89bb58446aa0a3d6448de3943b40a5d79b18cbda",
  7785. "reference": "89bb58446aa0a3d6448de3943b40a5d79b18cbda",
  7786. "shasum": "",
  7787. "mirrors": [
  7788. {
  7789. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7790. "preferred": true
  7791. }
  7792. ]
  7793. },
  7794. "require": {
  7795. "composer-plugin-api": "^1.0|^2.0",
  7796. "guzzlehttp/guzzle": "~6.0|~7.0",
  7797. "guzzlehttp/ringphp": "~1.0",
  7798. "php": ">=7.1",
  7799. "yurunsoft/composer-include-files": "^1.0|^2.0",
  7800. "yurunsoft/yurun-http": "^4.0"
  7801. },
  7802. "require-dev": {
  7803. "composer/composer": "^1.0|^2.0",
  7804. "phpunit/phpunit": ">=7",
  7805. "swoole/ide-helper": "*"
  7806. },
  7807. "type": "composer-plugin",
  7808. "extra": {
  7809. "class": "Yurun\\Util\\Swoole\\Guzzle\\Plugin\\Plugin",
  7810. "include_files": [
  7811. "src/load_include.php",
  7812. "src/functions.php"
  7813. ]
  7814. },
  7815. "autoload": {
  7816. "psr-4": {
  7817. "GuzzleHttp\\": "src/GuzzleHttp/",
  7818. "Yurun\\Util\\Swoole\\Guzzle\\": "src/"
  7819. }
  7820. },
  7821. "notification-url": "https://packagist.org/downloads/",
  7822. "license": [
  7823. "MIT"
  7824. ],
  7825. "description": "让 Guzzle 支持 Swoole 协程,可以用于 ElasticSearch、AWS 等 SDK 当中",
  7826. "support": {
  7827. "issues": "https://github.com/Yurunsoft/Guzzle-Swoole/issues",
  7828. "source": "https://github.com/Yurunsoft/Guzzle-Swoole/tree/v2.2.4"
  7829. },
  7830. "time": "2022-01-10T08:45:12+00:00"
  7831. },
  7832. {
  7833. "name": "yurunsoft/yurun-http",
  7834. "version": "v4.3.12",
  7835. "source": {
  7836. "type": "git",
  7837. "url": "https://github.com/Yurunsoft/YurunHttp.git",
  7838. "reference": "e0f50f4024da89f62e7e38a4faa9096483032349"
  7839. },
  7840. "dist": {
  7841. "type": "zip",
  7842. "url": "https://api.github.com/repos/Yurunsoft/YurunHttp/zipball/e0f50f4024da89f62e7e38a4faa9096483032349",
  7843. "reference": "e0f50f4024da89f62e7e38a4faa9096483032349",
  7844. "shasum": "",
  7845. "mirrors": [
  7846. {
  7847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7848. "preferred": true
  7849. }
  7850. ]
  7851. },
  7852. "require": {
  7853. "php": ">=5.5.0",
  7854. "psr/http-message": "~1.0"
  7855. },
  7856. "require-dev": {
  7857. "phpunit/phpunit": ">=4",
  7858. "swoole/ide-helper": "^4.5",
  7859. "workerman/workerman": "^4.0"
  7860. },
  7861. "type": "library",
  7862. "autoload": {
  7863. "psr-4": {
  7864. "Yurun\\Util\\": "./src/"
  7865. }
  7866. },
  7867. "notification-url": "https://packagist.org/downloads/",
  7868. "license": [
  7869. "MIT"
  7870. ],
  7871. "description": "YurunHttp 是开源的 PHP HTTP 类库,支持链式操作,简单易用。支持 Curl、Swoole,支持 Http、Http2、WebSocket!",
  7872. "support": {
  7873. "issues": "https://github.com/Yurunsoft/YurunHttp/issues",
  7874. "source": "https://github.com/Yurunsoft/YurunHttp/tree/v4.3.12"
  7875. },
  7876. "time": "2022-03-31T09:14:42+00:00"
  7877. }
  7878. ],
  7879. "packages-dev": [],
  7880. "aliases": [],
  7881. "minimum-stability": "stable",
  7882. "stability-flags": [],
  7883. "prefer-stable": false,
  7884. "prefer-lowest": false,
  7885. "platform": {
  7886. "php": ">=7.1.0",
  7887. "ext-json": "*",
  7888. "ext-curl": "*",
  7889. "ext-bcmath": "*",
  7890. "ext-mbstring": "*",
  7891. "ext-openssl": "*"
  7892. },
  7893. "platform-dev": [],
  7894. "plugin-api-version": "2.3.0"
  7895. }