composer.lock 245 KB

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