composer.lock 259 KB

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