composer.lock 315 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823
  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": "9bf15b34bc2b98d2024ed7f686fd144b",
  8. "packages": [
  9. {
  10. "name": "doctrine/annotations",
  11. "version": "1.11.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/annotations.git",
  15. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  20. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  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. "doctrine/lexer": "1.*",
  31. "ext-tokenizer": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "doctrine/cache": "1.*",
  36. "doctrine/coding-standard": "^6.0 || ^8.1",
  37. "phpstan/phpstan": "^0.12.20",
  38. "phpunit/phpunit": "^7.5 || ^9.1.5"
  39. },
  40. "type": "library",
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "1.11.x-dev"
  44. }
  45. },
  46. "autoload": {
  47. "psr-4": {
  48. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  49. }
  50. },
  51. "notification-url": "https://packagist.org/downloads/",
  52. "license": [
  53. "MIT"
  54. ],
  55. "authors": [
  56. {
  57. "name": "Guilherme Blanco",
  58. "email": "guilhermeblanco@gmail.com"
  59. },
  60. {
  61. "name": "Roman Borschel",
  62. "email": "roman@code-factory.org"
  63. },
  64. {
  65. "name": "Benjamin Eberlei",
  66. "email": "kontakt@beberlei.de"
  67. },
  68. {
  69. "name": "Jonathan Wage",
  70. "email": "jonwage@gmail.com"
  71. },
  72. {
  73. "name": "Johannes Schmitt",
  74. "email": "schmittjoh@gmail.com"
  75. }
  76. ],
  77. "description": "Docblock Annotations Parser",
  78. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  79. "keywords": [
  80. "annotations",
  81. "docblock",
  82. "parser"
  83. ],
  84. "support": {
  85. "issues": "https://github.com/doctrine/annotations/issues",
  86. "source": "https://github.com/doctrine/annotations/tree/1.11.1"
  87. },
  88. "time": "2020-10-26T10:28:16+00:00"
  89. },
  90. {
  91. "name": "doctrine/inflector",
  92. "version": "2.0.3",
  93. "source": {
  94. "type": "git",
  95. "url": "https://github.com/doctrine/inflector.git",
  96. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  97. },
  98. "dist": {
  99. "type": "zip",
  100. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  101. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  102. "shasum": "",
  103. "mirrors": [
  104. {
  105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  106. "preferred": true
  107. }
  108. ]
  109. },
  110. "require": {
  111. "php": "^7.2 || ^8.0"
  112. },
  113. "require-dev": {
  114. "doctrine/coding-standard": "^7.0",
  115. "phpstan/phpstan": "^0.11",
  116. "phpstan/phpstan-phpunit": "^0.11",
  117. "phpstan/phpstan-strict-rules": "^0.11",
  118. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  119. },
  120. "type": "library",
  121. "extra": {
  122. "branch-alias": {
  123. "dev-master": "2.0.x-dev"
  124. }
  125. },
  126. "autoload": {
  127. "psr-4": {
  128. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  129. }
  130. },
  131. "notification-url": "https://packagist.org/downloads/",
  132. "license": [
  133. "MIT"
  134. ],
  135. "authors": [
  136. {
  137. "name": "Guilherme Blanco",
  138. "email": "guilhermeblanco@gmail.com"
  139. },
  140. {
  141. "name": "Roman Borschel",
  142. "email": "roman@code-factory.org"
  143. },
  144. {
  145. "name": "Benjamin Eberlei",
  146. "email": "kontakt@beberlei.de"
  147. },
  148. {
  149. "name": "Jonathan Wage",
  150. "email": "jonwage@gmail.com"
  151. },
  152. {
  153. "name": "Johannes Schmitt",
  154. "email": "schmittjoh@gmail.com"
  155. }
  156. ],
  157. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  158. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  159. "keywords": [
  160. "inflection",
  161. "inflector",
  162. "lowercase",
  163. "manipulation",
  164. "php",
  165. "plural",
  166. "singular",
  167. "strings",
  168. "uppercase",
  169. "words"
  170. ],
  171. "support": {
  172. "issues": "https://github.com/doctrine/inflector/issues",
  173. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  174. },
  175. "funding": [
  176. {
  177. "url": "https://www.doctrine-project.org/sponsorship.html",
  178. "type": "custom"
  179. },
  180. {
  181. "url": "https://www.patreon.com/phpdoctrine",
  182. "type": "patreon"
  183. },
  184. {
  185. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  186. "type": "tidelift"
  187. }
  188. ],
  189. "time": "2020-05-29T15:13:26+00:00"
  190. },
  191. {
  192. "name": "doctrine/instantiator",
  193. "version": "1.3.1",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/doctrine/instantiator.git",
  197. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  202. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  203. "shasum": "",
  204. "mirrors": [
  205. {
  206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  207. "preferred": true
  208. }
  209. ]
  210. },
  211. "require": {
  212. "php": "^7.1 || ^8.0"
  213. },
  214. "require-dev": {
  215. "doctrine/coding-standard": "^6.0",
  216. "ext-pdo": "*",
  217. "ext-phar": "*",
  218. "phpbench/phpbench": "^0.13",
  219. "phpstan/phpstan-phpunit": "^0.11",
  220. "phpstan/phpstan-shim": "^0.11",
  221. "phpunit/phpunit": "^7.0"
  222. },
  223. "type": "library",
  224. "extra": {
  225. "branch-alias": {
  226. "dev-master": "1.2.x-dev"
  227. }
  228. },
  229. "autoload": {
  230. "psr-4": {
  231. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  232. }
  233. },
  234. "notification-url": "https://packagist.org/downloads/",
  235. "license": [
  236. "MIT"
  237. ],
  238. "authors": [
  239. {
  240. "name": "Marco Pivetta",
  241. "email": "ocramius@gmail.com",
  242. "homepage": "http://ocramius.github.com/"
  243. }
  244. ],
  245. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  246. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  247. "keywords": [
  248. "constructor",
  249. "instantiate"
  250. ],
  251. "support": {
  252. "issues": "https://github.com/doctrine/instantiator/issues",
  253. "source": "https://github.com/doctrine/instantiator/tree/1.3.x"
  254. },
  255. "funding": [
  256. {
  257. "url": "https://www.doctrine-project.org/sponsorship.html",
  258. "type": "custom"
  259. },
  260. {
  261. "url": "https://www.patreon.com/phpdoctrine",
  262. "type": "patreon"
  263. },
  264. {
  265. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  266. "type": "tidelift"
  267. }
  268. ],
  269. "time": "2020-05-29T17:27:14+00:00"
  270. },
  271. {
  272. "name": "doctrine/lexer",
  273. "version": "1.2.1",
  274. "source": {
  275. "type": "git",
  276. "url": "https://github.com/doctrine/lexer.git",
  277. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  278. },
  279. "dist": {
  280. "type": "zip",
  281. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  282. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  283. "shasum": "",
  284. "mirrors": [
  285. {
  286. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  287. "preferred": true
  288. }
  289. ]
  290. },
  291. "require": {
  292. "php": "^7.2 || ^8.0"
  293. },
  294. "require-dev": {
  295. "doctrine/coding-standard": "^6.0",
  296. "phpstan/phpstan": "^0.11.8",
  297. "phpunit/phpunit": "^8.2"
  298. },
  299. "type": "library",
  300. "extra": {
  301. "branch-alias": {
  302. "dev-master": "1.2.x-dev"
  303. }
  304. },
  305. "autoload": {
  306. "psr-4": {
  307. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  308. }
  309. },
  310. "notification-url": "https://packagist.org/downloads/",
  311. "license": [
  312. "MIT"
  313. ],
  314. "authors": [
  315. {
  316. "name": "Guilherme Blanco",
  317. "email": "guilhermeblanco@gmail.com"
  318. },
  319. {
  320. "name": "Roman Borschel",
  321. "email": "roman@code-factory.org"
  322. },
  323. {
  324. "name": "Johannes Schmitt",
  325. "email": "schmittjoh@gmail.com"
  326. }
  327. ],
  328. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  329. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  330. "keywords": [
  331. "annotations",
  332. "docblock",
  333. "lexer",
  334. "parser",
  335. "php"
  336. ],
  337. "support": {
  338. "issues": "https://github.com/doctrine/lexer/issues",
  339. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  340. },
  341. "funding": [
  342. {
  343. "url": "https://www.doctrine-project.org/sponsorship.html",
  344. "type": "custom"
  345. },
  346. {
  347. "url": "https://www.patreon.com/phpdoctrine",
  348. "type": "patreon"
  349. },
  350. {
  351. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  352. "type": "tidelift"
  353. }
  354. ],
  355. "time": "2020-05-25T17:44:05+00:00"
  356. },
  357. {
  358. "name": "fig/http-message-util",
  359. "version": "1.1.4",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/php-fig/http-message-util.git",
  363. "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/3242caa9da7221a304b8f84eb9eaddae0a7cf422",
  368. "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422",
  369. "shasum": "",
  370. "mirrors": [
  371. {
  372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  373. "preferred": true
  374. }
  375. ]
  376. },
  377. "require": {
  378. "php": "^5.3 || ^7.0"
  379. },
  380. "suggest": {
  381. "psr/http-message": "The package containing the PSR-7 interfaces"
  382. },
  383. "type": "library",
  384. "extra": {
  385. "branch-alias": {
  386. "dev-master": "1.1.x-dev"
  387. }
  388. },
  389. "autoload": {
  390. "psr-4": {
  391. "Fig\\Http\\Message\\": "src/"
  392. }
  393. },
  394. "notification-url": "https://packagist.org/downloads/",
  395. "license": [
  396. "MIT"
  397. ],
  398. "authors": [
  399. {
  400. "name": "PHP-FIG",
  401. "homepage": "http://www.php-fig.org/"
  402. }
  403. ],
  404. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  405. "keywords": [
  406. "http",
  407. "http-message",
  408. "psr",
  409. "psr-7",
  410. "request",
  411. "response"
  412. ],
  413. "support": {
  414. "issues": "https://github.com/php-fig/http-message-util/issues",
  415. "source": "https://github.com/php-fig/http-message-util/tree/1.1.4"
  416. },
  417. "time": "2020-02-05T20:36:27+00:00"
  418. },
  419. {
  420. "name": "guzzlehttp/guzzle",
  421. "version": "6.5.5",
  422. "source": {
  423. "type": "git",
  424. "url": "https://github.com/guzzle/guzzle.git",
  425. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  426. },
  427. "dist": {
  428. "type": "zip",
  429. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  430. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  431. "shasum": "",
  432. "mirrors": [
  433. {
  434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  435. "preferred": true
  436. }
  437. ]
  438. },
  439. "require": {
  440. "ext-json": "*",
  441. "guzzlehttp/promises": "^1.0",
  442. "guzzlehttp/psr7": "^1.6.1",
  443. "php": ">=5.5",
  444. "symfony/polyfill-intl-idn": "^1.17.0"
  445. },
  446. "require-dev": {
  447. "ext-curl": "*",
  448. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  449. "psr/log": "^1.1"
  450. },
  451. "suggest": {
  452. "psr/log": "Required for using the Log middleware"
  453. },
  454. "type": "library",
  455. "extra": {
  456. "branch-alias": {
  457. "dev-master": "6.5-dev"
  458. }
  459. },
  460. "autoload": {
  461. "psr-4": {
  462. "GuzzleHttp\\": "src/"
  463. },
  464. "files": [
  465. "src/functions_include.php"
  466. ]
  467. },
  468. "notification-url": "https://packagist.org/downloads/",
  469. "license": [
  470. "MIT"
  471. ],
  472. "authors": [
  473. {
  474. "name": "Michael Dowling",
  475. "email": "mtdowling@gmail.com",
  476. "homepage": "https://github.com/mtdowling"
  477. }
  478. ],
  479. "description": "Guzzle is a PHP HTTP client library",
  480. "homepage": "http://guzzlephp.org/",
  481. "keywords": [
  482. "client",
  483. "curl",
  484. "framework",
  485. "http",
  486. "http client",
  487. "rest",
  488. "web service"
  489. ],
  490. "support": {
  491. "issues": "https://github.com/guzzle/guzzle/issues",
  492. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  493. },
  494. "time": "2020-06-16T21:01:06+00:00"
  495. },
  496. {
  497. "name": "guzzlehttp/promises",
  498. "version": "1.4.0",
  499. "source": {
  500. "type": "git",
  501. "url": "https://github.com/guzzle/promises.git",
  502. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  503. },
  504. "dist": {
  505. "type": "zip",
  506. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  507. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  508. "shasum": "",
  509. "mirrors": [
  510. {
  511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  512. "preferred": true
  513. }
  514. ]
  515. },
  516. "require": {
  517. "php": ">=5.5"
  518. },
  519. "require-dev": {
  520. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  521. },
  522. "type": "library",
  523. "extra": {
  524. "branch-alias": {
  525. "dev-master": "1.4-dev"
  526. }
  527. },
  528. "autoload": {
  529. "psr-4": {
  530. "GuzzleHttp\\Promise\\": "src/"
  531. },
  532. "files": [
  533. "src/functions_include.php"
  534. ]
  535. },
  536. "notification-url": "https://packagist.org/downloads/",
  537. "license": [
  538. "MIT"
  539. ],
  540. "authors": [
  541. {
  542. "name": "Michael Dowling",
  543. "email": "mtdowling@gmail.com",
  544. "homepage": "https://github.com/mtdowling"
  545. }
  546. ],
  547. "description": "Guzzle promises library",
  548. "keywords": [
  549. "promise"
  550. ],
  551. "support": {
  552. "issues": "https://github.com/guzzle/promises/issues",
  553. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  554. },
  555. "time": "2020-09-30T07:37:28+00:00"
  556. },
  557. {
  558. "name": "guzzlehttp/psr7",
  559. "version": "1.7.0",
  560. "source": {
  561. "type": "git",
  562. "url": "https://github.com/guzzle/psr7.git",
  563. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  564. },
  565. "dist": {
  566. "type": "zip",
  567. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  568. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  569. "shasum": "",
  570. "mirrors": [
  571. {
  572. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  573. "preferred": true
  574. }
  575. ]
  576. },
  577. "require": {
  578. "php": ">=5.4.0",
  579. "psr/http-message": "~1.0",
  580. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  581. },
  582. "provide": {
  583. "psr/http-message-implementation": "1.0"
  584. },
  585. "require-dev": {
  586. "ext-zlib": "*",
  587. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  588. },
  589. "suggest": {
  590. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  591. },
  592. "type": "library",
  593. "extra": {
  594. "branch-alias": {
  595. "dev-master": "1.7-dev"
  596. }
  597. },
  598. "autoload": {
  599. "psr-4": {
  600. "GuzzleHttp\\Psr7\\": "src/"
  601. },
  602. "files": [
  603. "src/functions_include.php"
  604. ]
  605. },
  606. "notification-url": "https://packagist.org/downloads/",
  607. "license": [
  608. "MIT"
  609. ],
  610. "authors": [
  611. {
  612. "name": "Michael Dowling",
  613. "email": "mtdowling@gmail.com",
  614. "homepage": "https://github.com/mtdowling"
  615. },
  616. {
  617. "name": "Tobias Schultze",
  618. "homepage": "https://github.com/Tobion"
  619. }
  620. ],
  621. "description": "PSR-7 message implementation that also provides common utility methods",
  622. "keywords": [
  623. "http",
  624. "message",
  625. "psr-7",
  626. "request",
  627. "response",
  628. "stream",
  629. "uri",
  630. "url"
  631. ],
  632. "support": {
  633. "issues": "https://github.com/guzzle/psr7/issues",
  634. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  635. },
  636. "time": "2020-09-30T07:37:11+00:00"
  637. },
  638. {
  639. "name": "hyperf/async-queue",
  640. "version": "v2.0.11",
  641. "source": {
  642. "type": "git",
  643. "url": "https://github.com/hyperf/async-queue.git",
  644. "reference": "a67b73d5692ec55c53964718cfb097342e07eec2"
  645. },
  646. "dist": {
  647. "type": "zip",
  648. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/a67b73d5692ec55c53964718cfb097342e07eec2",
  649. "reference": "a67b73d5692ec55c53964718cfb097342e07eec2",
  650. "shasum": "",
  651. "mirrors": [
  652. {
  653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  654. "preferred": true
  655. }
  656. ]
  657. },
  658. "require": {
  659. "hyperf/command": "~2.0.0",
  660. "hyperf/contract": "~2.0.0",
  661. "hyperf/utils": "~2.0.0",
  662. "php": ">=7.2",
  663. "psr/container": "^1.0",
  664. "psr/event-dispatcher": "^1.0"
  665. },
  666. "require-dev": {
  667. "friendsofphp/php-cs-fixer": "^2.9",
  668. "hyperf/process": "~2.0.0",
  669. "malukenho/docheader": "^0.1.6",
  670. "mockery/mockery": "^1.0",
  671. "phpunit/phpunit": "^7.0.0"
  672. },
  673. "suggest": {
  674. "hyperf/di": "Required to use annotations.",
  675. "hyperf/event": "Required to dispatch a event.",
  676. "hyperf/process": "Auto register the consumer process for server."
  677. },
  678. "type": "library",
  679. "extra": {
  680. "branch-alias": {
  681. "dev-master": "2.0-dev"
  682. },
  683. "hyperf": {
  684. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  685. }
  686. },
  687. "autoload": {
  688. "psr-4": {
  689. "Hyperf\\AsyncQueue\\": "src/"
  690. }
  691. },
  692. "notification-url": "https://packagist.org/downloads/",
  693. "license": [
  694. "MIT"
  695. ],
  696. "description": "A async queue component for hyperf.",
  697. "homepage": "https://hyperf.io",
  698. "keywords": [
  699. "async-queue",
  700. "hyperf",
  701. "php"
  702. ],
  703. "support": {
  704. "docs": "https://hyperf.wiki",
  705. "issues": "https://github.com/hyperf/hyperf/issues",
  706. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  707. "source": "https://github.com/hyperf/hyperf"
  708. },
  709. "time": "2020-09-08T03:35:00+00:00"
  710. },
  711. {
  712. "name": "hyperf/cache",
  713. "version": "v2.0.9",
  714. "source": {
  715. "type": "git",
  716. "url": "https://github.com/hyperf/cache.git",
  717. "reference": "7c99de7133fa0a0678c0c99e2187fa6a7cba6fca"
  718. },
  719. "dist": {
  720. "type": "zip",
  721. "url": "https://api.github.com/repos/hyperf/cache/zipball/7c99de7133fa0a0678c0c99e2187fa6a7cba6fca",
  722. "reference": "7c99de7133fa0a0678c0c99e2187fa6a7cba6fca",
  723. "shasum": "",
  724. "mirrors": [
  725. {
  726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  727. "preferred": true
  728. }
  729. ]
  730. },
  731. "require": {
  732. "hyperf/contract": "~2.0.0",
  733. "hyperf/utils": "~2.0.0",
  734. "php": ">=7.2",
  735. "psr/container": "^1.0",
  736. "psr/simple-cache": "^1.0"
  737. },
  738. "require-dev": {
  739. "friendsofphp/php-cs-fixer": "^2.9",
  740. "hyperf/di": "~2.0.0",
  741. "hyperf/event": "~2.0.0",
  742. "malukenho/docheader": "^0.1.6",
  743. "mockery/mockery": "^1.0",
  744. "phpunit/phpunit": "^7.0.0"
  745. },
  746. "suggest": {
  747. "hyperf/di": "Use cache annotations.",
  748. "hyperf/event": "Use listener to delete annotation cache."
  749. },
  750. "type": "library",
  751. "extra": {
  752. "branch-alias": {
  753. "dev-master": "2.0-dev"
  754. },
  755. "hyperf": {
  756. "config": "Hyperf\\Cache\\ConfigProvider"
  757. }
  758. },
  759. "autoload": {
  760. "psr-4": {
  761. "Hyperf\\Cache\\": "src/"
  762. }
  763. },
  764. "notification-url": "https://packagist.org/downloads/",
  765. "license": [
  766. "MIT"
  767. ],
  768. "description": "A cache component for hyperf.",
  769. "homepage": "https://hyperf.io",
  770. "keywords": [
  771. "cache",
  772. "hyperf",
  773. "php"
  774. ],
  775. "support": {
  776. "docs": "https://hyperf.wiki",
  777. "issues": "https://github.com/hyperf/hyperf/issues",
  778. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  779. "source": "https://github.com/hyperf/hyperf"
  780. },
  781. "time": "2020-08-24T08:37:21+00:00"
  782. },
  783. {
  784. "name": "hyperf/command",
  785. "version": "v2.0.10",
  786. "source": {
  787. "type": "git",
  788. "url": "https://github.com/hyperf/command.git",
  789. "reference": "3c9e632a2f4e780e38bc14c83feb7bb3d1da5473"
  790. },
  791. "dist": {
  792. "type": "zip",
  793. "url": "https://api.github.com/repos/hyperf/command/zipball/3c9e632a2f4e780e38bc14c83feb7bb3d1da5473",
  794. "reference": "3c9e632a2f4e780e38bc14c83feb7bb3d1da5473",
  795. "shasum": "",
  796. "mirrors": [
  797. {
  798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  799. "preferred": true
  800. }
  801. ]
  802. },
  803. "require": {
  804. "hyperf/utils": "~2.0.0",
  805. "php": ">=7.2",
  806. "psr/event-dispatcher": "^1.0",
  807. "symfony/console": "^5.0"
  808. },
  809. "require-dev": {
  810. "friendsofphp/php-cs-fixer": "^2.9",
  811. "malukenho/docheader": "^0.1.6",
  812. "mockery/mockery": "^1.0",
  813. "phpunit/phpunit": "^7.0.0"
  814. },
  815. "suggest": {
  816. "hyperf/di": "Required to use annotations."
  817. },
  818. "type": "library",
  819. "extra": {
  820. "branch-alias": {
  821. "dev-master": "2.0-dev"
  822. }
  823. },
  824. "autoload": {
  825. "psr-4": {
  826. "Hyperf\\Command\\": "src/"
  827. }
  828. },
  829. "notification-url": "https://packagist.org/downloads/",
  830. "license": [
  831. "MIT"
  832. ],
  833. "description": "Command for hyperf",
  834. "keywords": [
  835. "command",
  836. "php",
  837. "swoole"
  838. ],
  839. "support": {
  840. "issues": "https://github.com/hyperf/command/issues",
  841. "source": "https://github.com/hyperf/command/tree/v2.0.10"
  842. },
  843. "time": "2020-09-03T09:27:40+00:00"
  844. },
  845. {
  846. "name": "hyperf/config",
  847. "version": "v2.0.9",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/hyperf/config.git",
  851. "reference": "55a1035f3caea366aeea02d9dbe5b09914ea8d2e"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/hyperf/config/zipball/55a1035f3caea366aeea02d9dbe5b09914ea8d2e",
  856. "reference": "55a1035f3caea366aeea02d9dbe5b09914ea8d2e",
  857. "shasum": "",
  858. "mirrors": [
  859. {
  860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  861. "preferred": true
  862. }
  863. ]
  864. },
  865. "require": {
  866. "hyperf/contract": "~2.0.0",
  867. "hyperf/utils": "~2.0.0",
  868. "php": ">=7.2",
  869. "psr/container": "^1.0",
  870. "symfony/finder": "^5.0",
  871. "vlucas/phpdotenv": "^4.0"
  872. },
  873. "require-dev": {
  874. "friendsofphp/php-cs-fixer": "^2.9",
  875. "hyperf/di": "~2.0.0",
  876. "hyperf/event": "~2.0.0",
  877. "hyperf/framework": "~2.0.0",
  878. "malukenho/docheader": "^0.1.6",
  879. "mockery/mockery": "^1.0",
  880. "phpunit/phpunit": "^7.0.0"
  881. },
  882. "suggest": {
  883. "hyperf/di": "Allows using @Value annotation",
  884. "hyperf/event": "Allows using @Value annotation",
  885. "hyperf/framework": "Allows using @Value annotation",
  886. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  887. },
  888. "type": "library",
  889. "extra": {
  890. "branch-alias": {
  891. "dev-master": "2.0-dev"
  892. },
  893. "hyperf": {
  894. "config": "Hyperf\\Config\\ConfigProvider"
  895. }
  896. },
  897. "autoload": {
  898. "files": [
  899. "./src/Functions.php"
  900. ],
  901. "psr-4": {
  902. "Hyperf\\Config\\": "src/"
  903. }
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "description": "An independent component that provides configuration container.",
  910. "homepage": "https://hyperf.io",
  911. "keywords": [
  912. "config",
  913. "configuration",
  914. "hyperf",
  915. "php",
  916. "swoole"
  917. ],
  918. "support": {
  919. "docs": "https://hyperf.wiki",
  920. "issues": "https://github.com/hyperf/hyperf/issues",
  921. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  922. "source": "https://github.com/hyperf/hyperf"
  923. },
  924. "time": "2020-08-24T08:37:21+00:00"
  925. },
  926. {
  927. "name": "hyperf/config-apollo",
  928. "version": "v2.0.10",
  929. "source": {
  930. "type": "git",
  931. "url": "https://github.com/hyperf/config-apollo.git",
  932. "reference": "3095bb52523146cd54beecadb8d56cbeb0209a12"
  933. },
  934. "dist": {
  935. "type": "zip",
  936. "url": "https://api.github.com/repos/hyperf/config-apollo/zipball/3095bb52523146cd54beecadb8d56cbeb0209a12",
  937. "reference": "3095bb52523146cd54beecadb8d56cbeb0209a12",
  938. "shasum": "",
  939. "mirrors": [
  940. {
  941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  942. "preferred": true
  943. }
  944. ]
  945. },
  946. "require": {
  947. "hyperf/contract": "~2.0.0",
  948. "hyperf/utils": "~2.0.0",
  949. "php": ">=7.2",
  950. "psr/container": "^1.0"
  951. },
  952. "require-dev": {
  953. "friendsofphp/php-cs-fixer": "^2.9",
  954. "hyperf/config": "~2.0.0",
  955. "hyperf/event": "~2.0.0",
  956. "hyperf/framework": "~2.0.0",
  957. "hyperf/process": "~2.0.0",
  958. "malukenho/docheader": "^0.1.6",
  959. "mockery/mockery": "^1.0",
  960. "phpunit/phpunit": "^7.0.0"
  961. },
  962. "suggest": {
  963. "hyperf/process": "Use hyperf process to run ConfigFetcherProcess."
  964. },
  965. "type": "library",
  966. "extra": {
  967. "branch-alias": {
  968. "dev-master": "2.0-dev"
  969. },
  970. "hyperf": {
  971. "config": "Hyperf\\ConfigApollo\\ConfigProvider"
  972. }
  973. },
  974. "autoload": {
  975. "psr-4": {
  976. "Hyperf\\ConfigApollo\\": "src/"
  977. }
  978. },
  979. "notification-url": "https://packagist.org/downloads/",
  980. "license": [
  981. "MIT"
  982. ],
  983. "description": "An apollo adapter for Hyperf config component.",
  984. "homepage": "https://hyperf.io",
  985. "keywords": [
  986. "apollo",
  987. "config",
  988. "configuration",
  989. "hyperf",
  990. "php",
  991. "swoole"
  992. ],
  993. "support": {
  994. "docs": "https://hyperf.wiki",
  995. "issues": "https://github.com/hyperf/hyperf/issues",
  996. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  997. "source": "https://github.com/hyperf/hyperf"
  998. },
  999. "time": "2020-09-07T01:45:40+00:00"
  1000. },
  1001. {
  1002. "name": "hyperf/constants",
  1003. "version": "v2.0.9",
  1004. "source": {
  1005. "type": "git",
  1006. "url": "https://github.com/hyperf/constants.git",
  1007. "reference": "bf74fce39a22267677ffb2ae7e03762b4b641b12"
  1008. },
  1009. "dist": {
  1010. "type": "zip",
  1011. "url": "https://api.github.com/repos/hyperf/constants/zipball/bf74fce39a22267677ffb2ae7e03762b4b641b12",
  1012. "reference": "bf74fce39a22267677ffb2ae7e03762b4b641b12",
  1013. "shasum": "",
  1014. "mirrors": [
  1015. {
  1016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1017. "preferred": true
  1018. }
  1019. ]
  1020. },
  1021. "require": {
  1022. "hyperf/di": "~2.0.0",
  1023. "hyperf/utils": "~2.0.0",
  1024. "php": ">=7.2"
  1025. },
  1026. "require-dev": {
  1027. "friendsofphp/php-cs-fixer": "^2.9",
  1028. "malukenho/docheader": "^0.1.6",
  1029. "mockery/mockery": "^1.0",
  1030. "phpunit/phpunit": "^7.0.0"
  1031. },
  1032. "suggest": {
  1033. "hyperf/translation": "Required to use translation."
  1034. },
  1035. "type": "library",
  1036. "extra": {
  1037. "branch-alias": {
  1038. "dev-master": "2.0-dev"
  1039. },
  1040. "hyperf": {
  1041. "config": "Hyperf\\Constants\\ConfigProvider"
  1042. }
  1043. },
  1044. "autoload": {
  1045. "psr-4": {
  1046. "Hyperf\\Constants\\": "src/"
  1047. }
  1048. },
  1049. "notification-url": "https://packagist.org/downloads/",
  1050. "license": [
  1051. "MIT"
  1052. ],
  1053. "description": "A constants component for hyperf.",
  1054. "homepage": "https://hyperf.io",
  1055. "keywords": [
  1056. "constants",
  1057. "hyperf",
  1058. "php"
  1059. ],
  1060. "support": {
  1061. "docs": "https://hyperf.wiki",
  1062. "issues": "https://github.com/hyperf/hyperf/issues",
  1063. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1064. "source": "https://github.com/hyperf/hyperf"
  1065. },
  1066. "time": "2020-08-24T08:37:21+00:00"
  1067. },
  1068. {
  1069. "name": "hyperf/contract",
  1070. "version": "v2.0.13",
  1071. "source": {
  1072. "type": "git",
  1073. "url": "https://github.com/hyperf/contract.git",
  1074. "reference": "02eb7c2affbc9ef020b02801b4b21c69c7e4fd5b"
  1075. },
  1076. "dist": {
  1077. "type": "zip",
  1078. "url": "https://api.github.com/repos/hyperf/contract/zipball/02eb7c2affbc9ef020b02801b4b21c69c7e4fd5b",
  1079. "reference": "02eb7c2affbc9ef020b02801b4b21c69c7e4fd5b",
  1080. "shasum": "",
  1081. "mirrors": [
  1082. {
  1083. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1084. "preferred": true
  1085. }
  1086. ]
  1087. },
  1088. "require": {
  1089. "php": ">=7.2"
  1090. },
  1091. "require-dev": {
  1092. "friendsofphp/php-cs-fixer": "^2.9",
  1093. "malukenho/docheader": "^0.1.6",
  1094. "mockery/mockery": "^1.0",
  1095. "phpunit/phpunit": "^7.0.0"
  1096. },
  1097. "type": "library",
  1098. "extra": {
  1099. "branch-alias": {
  1100. "dev-master": "2.0-dev"
  1101. },
  1102. "hyperf": []
  1103. },
  1104. "autoload": {
  1105. "psr-4": {
  1106. "Hyperf\\Contract\\": "src/"
  1107. }
  1108. },
  1109. "notification-url": "https://packagist.org/downloads/",
  1110. "license": [
  1111. "MIT"
  1112. ],
  1113. "description": "The contracts of Hyperf.",
  1114. "homepage": "https://hyperf.io",
  1115. "keywords": [
  1116. "hyperf",
  1117. "php",
  1118. "swoole"
  1119. ],
  1120. "support": {
  1121. "docs": "https://hyperf.wiki",
  1122. "issues": "https://github.com/hyperf/hyperf/issues",
  1123. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1124. "source": "https://github.com/hyperf/hyperf"
  1125. },
  1126. "time": "2020-09-27T08:25:56+00:00"
  1127. },
  1128. {
  1129. "name": "hyperf/database",
  1130. "version": "v2.0.18",
  1131. "source": {
  1132. "type": "git",
  1133. "url": "https://github.com/hyperf/database.git",
  1134. "reference": "38a05c44f4becba11f3e4eb93b9bb68aa39fbff0"
  1135. },
  1136. "dist": {
  1137. "type": "zip",
  1138. "url": "https://api.github.com/repos/hyperf/database/zipball/38a05c44f4becba11f3e4eb93b9bb68aa39fbff0",
  1139. "reference": "38a05c44f4becba11f3e4eb93b9bb68aa39fbff0",
  1140. "shasum": "",
  1141. "mirrors": [
  1142. {
  1143. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1144. "preferred": true
  1145. }
  1146. ]
  1147. },
  1148. "require": {
  1149. "hyperf/paginator": "~2.0.0",
  1150. "hyperf/utils": "~2.0.0",
  1151. "nesbot/carbon": "^2.0",
  1152. "php": ">=7.2",
  1153. "psr/container": "^1.0",
  1154. "psr/event-dispatcher": "^1.0"
  1155. },
  1156. "require-dev": {
  1157. "friendsofphp/php-cs-fixer": "^2.9",
  1158. "malukenho/docheader": "^0.1.6",
  1159. "mockery/mockery": "^1.0",
  1160. "phpunit/phpunit": "^7.0.0"
  1161. },
  1162. "suggest": {
  1163. "doctrine/dbal": "Required to rename columns (^2.6).",
  1164. "roave/better-reflection": "Required to use ModelCommand (^4.0)."
  1165. },
  1166. "type": "library",
  1167. "extra": {
  1168. "branch-alias": {
  1169. "dev-master": "2.0-dev"
  1170. }
  1171. },
  1172. "autoload": {
  1173. "psr-4": {
  1174. "Hyperf\\Database\\": "src/"
  1175. }
  1176. },
  1177. "notification-url": "https://packagist.org/downloads/",
  1178. "license": [
  1179. "MIT"
  1180. ],
  1181. "description": "A flexible database library.",
  1182. "homepage": "https://hyperf.io",
  1183. "keywords": [
  1184. "database",
  1185. "hyperf",
  1186. "php"
  1187. ],
  1188. "support": {
  1189. "docs": "https://hyperf.wiki",
  1190. "issues": "https://github.com/hyperf/hyperf/issues",
  1191. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1192. "source": "https://github.com/hyperf/hyperf"
  1193. },
  1194. "time": "2020-10-31T08:06:50+00:00"
  1195. },
  1196. {
  1197. "name": "hyperf/db-connection",
  1198. "version": "v2.0.12",
  1199. "source": {
  1200. "type": "git",
  1201. "url": "https://github.com/hyperf/db-connection.git",
  1202. "reference": "b983f82a4b307619289737580d3bf7ba1379beb1"
  1203. },
  1204. "dist": {
  1205. "type": "zip",
  1206. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/b983f82a4b307619289737580d3bf7ba1379beb1",
  1207. "reference": "b983f82a4b307619289737580d3bf7ba1379beb1",
  1208. "shasum": "",
  1209. "mirrors": [
  1210. {
  1211. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1212. "preferred": true
  1213. }
  1214. ]
  1215. },
  1216. "require": {
  1217. "hyperf/database": "~2.0.0",
  1218. "hyperf/di": "~2.0.0",
  1219. "hyperf/framework": "~2.0.0",
  1220. "hyperf/model-listener": "~2.0.0",
  1221. "hyperf/pool": "~2.0.0",
  1222. "hyperf/utils": "~2.0.0",
  1223. "php": ">=7.2"
  1224. },
  1225. "require-dev": {
  1226. "friendsofphp/php-cs-fixer": "^2.9",
  1227. "malukenho/docheader": "^0.1.6",
  1228. "mockery/mockery": "^1.0",
  1229. "phpunit/phpunit": "^7.0.0"
  1230. },
  1231. "type": "library",
  1232. "extra": {
  1233. "branch-alias": {
  1234. "dev-master": "2.0-dev"
  1235. },
  1236. "hyperf": {
  1237. "config": "Hyperf\\DbConnection\\ConfigProvider"
  1238. }
  1239. },
  1240. "autoload": {
  1241. "psr-4": {
  1242. "Hyperf\\DbConnection\\": "src/"
  1243. }
  1244. },
  1245. "notification-url": "https://packagist.org/downloads/",
  1246. "license": [
  1247. "MIT"
  1248. ],
  1249. "description": "A hyperf db connection handler for hyperf/database.",
  1250. "homepage": "https://hyperf.io",
  1251. "keywords": [
  1252. "Connection",
  1253. "database",
  1254. "hyperf",
  1255. "php"
  1256. ],
  1257. "support": {
  1258. "docs": "https://hyperf.wiki",
  1259. "issues": "https://github.com/hyperf/hyperf/issues",
  1260. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1261. "source": "https://github.com/hyperf/hyperf"
  1262. },
  1263. "time": "2020-09-18T09:45:22+00:00"
  1264. },
  1265. {
  1266. "name": "hyperf/di",
  1267. "version": "v2.0.16",
  1268. "source": {
  1269. "type": "git",
  1270. "url": "https://github.com/hyperf/di.git",
  1271. "reference": "7643986788422d29b23c930f60816650ec7b9bc8"
  1272. },
  1273. "dist": {
  1274. "type": "zip",
  1275. "url": "https://api.github.com/repos/hyperf/di/zipball/7643986788422d29b23c930f60816650ec7b9bc8",
  1276. "reference": "7643986788422d29b23c930f60816650ec7b9bc8",
  1277. "shasum": "",
  1278. "mirrors": [
  1279. {
  1280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1281. "preferred": true
  1282. }
  1283. ]
  1284. },
  1285. "require": {
  1286. "doctrine/annotations": "^1.6",
  1287. "doctrine/instantiator": "^1.0",
  1288. "nikic/php-parser": "^4.1",
  1289. "php": ">=7.2",
  1290. "psr/container": "^1.0",
  1291. "roave/better-reflection": "^4.0",
  1292. "symfony/finder": "^5.0"
  1293. },
  1294. "require-dev": {
  1295. "friendsofphp/php-cs-fixer": "^2.9",
  1296. "malukenho/docheader": "^0.1.6",
  1297. "mockery/mockery": "^1.0",
  1298. "phpunit/phpunit": "^7.0.0"
  1299. },
  1300. "suggest": {
  1301. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  1302. },
  1303. "type": "library",
  1304. "extra": {
  1305. "branch-alias": {
  1306. "dev-master": "2.0-dev"
  1307. },
  1308. "hyperf": {
  1309. "config": "Hyperf\\Di\\ConfigProvider"
  1310. }
  1311. },
  1312. "autoload": {
  1313. "files": [
  1314. "src/Functions.php"
  1315. ],
  1316. "psr-4": {
  1317. "Hyperf\\Di\\": "src/"
  1318. }
  1319. },
  1320. "notification-url": "https://packagist.org/downloads/",
  1321. "license": [
  1322. "MIT"
  1323. ],
  1324. "description": "A DI for Hyperf.",
  1325. "homepage": "https://hyperf.io",
  1326. "keywords": [
  1327. "annotation",
  1328. "di",
  1329. "hyperf",
  1330. "php",
  1331. "swoole"
  1332. ],
  1333. "support": {
  1334. "docs": "https://hyperf.wiki",
  1335. "issues": "https://github.com/hyperf/hyperf/issues",
  1336. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1337. "source": "https://github.com/hyperf/hyperf"
  1338. },
  1339. "time": "2020-10-26T04:07:29+00:00"
  1340. },
  1341. {
  1342. "name": "hyperf/dispatcher",
  1343. "version": "v2.0.10",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/hyperf/dispatcher.git",
  1347. "reference": "cba2e31a835ac5c904d149f170ee7a71a0699b3a"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/cba2e31a835ac5c904d149f170ee7a71a0699b3a",
  1352. "reference": "cba2e31a835ac5c904d149f170ee7a71a0699b3a",
  1353. "shasum": "",
  1354. "mirrors": [
  1355. {
  1356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1357. "preferred": true
  1358. }
  1359. ]
  1360. },
  1361. "require": {
  1362. "hyperf/contract": "~2.0.0",
  1363. "php": ">=7.2",
  1364. "psr/container": "^1.0",
  1365. "psr/http-message": "^1.0",
  1366. "psr/http-server-middleware": "^1.0"
  1367. },
  1368. "require-dev": {
  1369. "friendsofphp/php-cs-fixer": "^2.9",
  1370. "malukenho/docheader": "^0.1.6",
  1371. "mockery/mockery": "^1.0",
  1372. "phpunit/phpunit": "^7.0.0"
  1373. },
  1374. "type": "library",
  1375. "extra": {
  1376. "branch-alias": {
  1377. "dev-master": "2.0-dev"
  1378. },
  1379. "hyperf": {
  1380. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  1381. }
  1382. },
  1383. "autoload": {
  1384. "psr-4": {
  1385. "Hyperf\\Dispatcher\\": "src/"
  1386. }
  1387. },
  1388. "notification-url": "https://packagist.org/downloads/",
  1389. "license": [
  1390. "MIT"
  1391. ],
  1392. "description": "A HTTP Server for Hyperf.",
  1393. "homepage": "https://hyperf.io",
  1394. "keywords": [
  1395. "dispatcher",
  1396. "filter",
  1397. "hyperf",
  1398. "middleware",
  1399. "php",
  1400. "swoole"
  1401. ],
  1402. "support": {
  1403. "docs": "https://hyperf.wiki",
  1404. "issues": "https://github.com/hyperf/hyperf/issues",
  1405. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1406. "source": "https://github.com/hyperf/hyperf"
  1407. },
  1408. "time": "2020-08-31T06:51:22+00:00"
  1409. },
  1410. {
  1411. "name": "hyperf/event",
  1412. "version": "v2.0.10",
  1413. "source": {
  1414. "type": "git",
  1415. "url": "https://github.com/hyperf/event.git",
  1416. "reference": "1f80fd5277e1d5228ddf8f4db1458fe94a349472"
  1417. },
  1418. "dist": {
  1419. "type": "zip",
  1420. "url": "https://api.github.com/repos/hyperf/event/zipball/1f80fd5277e1d5228ddf8f4db1458fe94a349472",
  1421. "reference": "1f80fd5277e1d5228ddf8f4db1458fe94a349472",
  1422. "shasum": "",
  1423. "mirrors": [
  1424. {
  1425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1426. "preferred": true
  1427. }
  1428. ]
  1429. },
  1430. "require": {
  1431. "hyperf/contract": "~2.0.0",
  1432. "php": ">=7.2",
  1433. "psr/event-dispatcher": "^1.0"
  1434. },
  1435. "require-dev": {
  1436. "friendsofphp/php-cs-fixer": "^2.9",
  1437. "hyperf/di": "~2.0.0",
  1438. "malukenho/docheader": "^0.1.6",
  1439. "mockery/mockery": "^1.0",
  1440. "phpunit/phpunit": "^7.0.0"
  1441. },
  1442. "suggest": {
  1443. "hyperf/di": "Required to use annotatioins."
  1444. },
  1445. "type": "library",
  1446. "extra": {
  1447. "branch-alias": {
  1448. "dev-master": "2.0-dev"
  1449. },
  1450. "hyperf": {
  1451. "config": "Hyperf\\Event\\ConfigProvider"
  1452. }
  1453. },
  1454. "autoload": {
  1455. "psr-4": {
  1456. "Hyperf\\Event\\": "src/"
  1457. }
  1458. },
  1459. "notification-url": "https://packagist.org/downloads/",
  1460. "license": [
  1461. "MIT"
  1462. ],
  1463. "description": "an event manager that implements PSR-14.",
  1464. "homepage": "https://hyperf.io",
  1465. "keywords": [
  1466. "event",
  1467. "hyperf",
  1468. "php",
  1469. "swoole"
  1470. ],
  1471. "support": {
  1472. "docs": "https://hyperf.wiki",
  1473. "issues": "https://github.com/hyperf/hyperf/issues",
  1474. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1475. "source": "https://github.com/hyperf/hyperf"
  1476. },
  1477. "time": "2020-08-31T06:51:22+00:00"
  1478. },
  1479. {
  1480. "name": "hyperf/exception-handler",
  1481. "version": "v2.0.13",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/hyperf/exception-handler.git",
  1485. "reference": "ceb5de4a710757c087815997fd4132beb90c19dc"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/ceb5de4a710757c087815997fd4132beb90c19dc",
  1490. "reference": "ceb5de4a710757c087815997fd4132beb90c19dc",
  1491. "shasum": "",
  1492. "mirrors": [
  1493. {
  1494. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1495. "preferred": true
  1496. }
  1497. ]
  1498. },
  1499. "require": {
  1500. "hyperf/contract": "~2.0.0",
  1501. "hyperf/dispatcher": "~2.0.0",
  1502. "hyperf/utils": "~2.0.0",
  1503. "php": ">=7.2",
  1504. "psr/container": "^1.0",
  1505. "psr/http-message": "^1.0"
  1506. },
  1507. "require-dev": {
  1508. "friendsofphp/php-cs-fixer": "^2.9",
  1509. "malukenho/docheader": "^0.1.6",
  1510. "mockery/mockery": "^1.0",
  1511. "phpunit/phpunit": "^7.0.0"
  1512. },
  1513. "type": "library",
  1514. "extra": {
  1515. "branch-alias": {
  1516. "dev-master": "2.0-dev"
  1517. },
  1518. "hyperf": {
  1519. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  1520. }
  1521. },
  1522. "autoload": {
  1523. "psr-4": {
  1524. "Hyperf\\ExceptionHandler\\": "src/"
  1525. }
  1526. },
  1527. "notification-url": "https://packagist.org/downloads/",
  1528. "license": [
  1529. "MIT"
  1530. ],
  1531. "description": "Exception handler for hyperf",
  1532. "keywords": [
  1533. "exception-handler",
  1534. "php",
  1535. "swoole"
  1536. ],
  1537. "support": {
  1538. "issues": "https://github.com/hyperf/exception-handler/issues",
  1539. "source": "https://github.com/hyperf/exception-handler/tree/v2.0.13"
  1540. },
  1541. "time": "2020-09-24T03:36:22+00:00"
  1542. },
  1543. {
  1544. "name": "hyperf/framework",
  1545. "version": "v2.0.11",
  1546. "source": {
  1547. "type": "git",
  1548. "url": "https://github.com/hyperf/framework.git",
  1549. "reference": "ff6307193d0e5dd33376888ac0bb80799ae2d728"
  1550. },
  1551. "dist": {
  1552. "type": "zip",
  1553. "url": "https://api.github.com/repos/hyperf/framework/zipball/ff6307193d0e5dd33376888ac0bb80799ae2d728",
  1554. "reference": "ff6307193d0e5dd33376888ac0bb80799ae2d728",
  1555. "shasum": "",
  1556. "mirrors": [
  1557. {
  1558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1559. "preferred": true
  1560. }
  1561. ]
  1562. },
  1563. "require": {
  1564. "ext-swoole": ">=4.4",
  1565. "fig/http-message-util": "^1.1.2",
  1566. "hyperf/contract": "~2.0.0",
  1567. "hyperf/utils": "~2.0.0",
  1568. "php": ">=7.2",
  1569. "psr/container": "^1.0",
  1570. "psr/event-dispatcher": "^1.0",
  1571. "psr/log": "^1.0"
  1572. },
  1573. "require-dev": {
  1574. "doctrine/common": "@stable",
  1575. "friendsofphp/php-cs-fixer": "^2.9",
  1576. "malukenho/docheader": "^0.1.6",
  1577. "mockery/mockery": "^1.0",
  1578. "phpunit/phpunit": "^7.0.0"
  1579. },
  1580. "suggest": {
  1581. "hyperf/command": "Required to use Command annotation.",
  1582. "hyperf/di": "Required to use Command annotation.",
  1583. "hyperf/dispatcher": "Required to use BootApplication event.",
  1584. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0)."
  1585. },
  1586. "type": "library",
  1587. "extra": {
  1588. "branch-alias": {
  1589. "dev-master": "2.0-dev"
  1590. },
  1591. "hyperf": {
  1592. "config": "Hyperf\\Framework\\ConfigProvider"
  1593. }
  1594. },
  1595. "autoload": {
  1596. "psr-4": {
  1597. "Hyperf\\Framework\\": "src/"
  1598. }
  1599. },
  1600. "notification-url": "https://packagist.org/downloads/",
  1601. "license": [
  1602. "MIT"
  1603. ],
  1604. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  1605. "homepage": "https://hyperf.io",
  1606. "keywords": [
  1607. "Microservice",
  1608. "framework",
  1609. "hyperf",
  1610. "middleware",
  1611. "php",
  1612. "swoole"
  1613. ],
  1614. "support": {
  1615. "docs": "https://hyperf.wiki",
  1616. "issues": "https://github.com/hyperf/hyperf/issues",
  1617. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1618. "source": "https://github.com/hyperf/hyperf"
  1619. },
  1620. "time": "2020-09-07T10:26:15+00:00"
  1621. },
  1622. {
  1623. "name": "hyperf/guzzle",
  1624. "version": "v2.0.11",
  1625. "source": {
  1626. "type": "git",
  1627. "url": "https://github.com/hyperf/guzzle.git",
  1628. "reference": "d0a5d72e93f4c6fa90c3e25a0eb192e1445cc1e0"
  1629. },
  1630. "dist": {
  1631. "type": "zip",
  1632. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/d0a5d72e93f4c6fa90c3e25a0eb192e1445cc1e0",
  1633. "reference": "d0a5d72e93f4c6fa90c3e25a0eb192e1445cc1e0",
  1634. "shasum": "",
  1635. "mirrors": [
  1636. {
  1637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1638. "preferred": true
  1639. }
  1640. ]
  1641. },
  1642. "require": {
  1643. "guzzlehttp/guzzle": "^6.3",
  1644. "php": ">=7.0",
  1645. "psr/container": "^1.0",
  1646. "psr/http-message": "^1.0"
  1647. },
  1648. "require-dev": {
  1649. "ezimuel/ringphp": "~1.0"
  1650. },
  1651. "suggest": {
  1652. "hyperf/pool": "Required to use pool handler."
  1653. },
  1654. "type": "library",
  1655. "extra": {
  1656. "branch-alias": {
  1657. "dev-master": "2.0-dev"
  1658. },
  1659. "hyperf": {
  1660. "config": "Hyperf\\Guzzle\\ConfigProvider"
  1661. }
  1662. },
  1663. "autoload": {
  1664. "psr-4": {
  1665. "Hyperf\\Guzzle\\": "src/"
  1666. }
  1667. },
  1668. "notification-url": "https://packagist.org/downloads/",
  1669. "license": [
  1670. "MIT"
  1671. ],
  1672. "description": "Swoole coroutine handler for guzzle",
  1673. "keywords": [
  1674. "Guzzle",
  1675. "handler",
  1676. "php",
  1677. "swoole"
  1678. ],
  1679. "support": {
  1680. "issues": "https://github.com/hyperf/guzzle/issues",
  1681. "source": "https://github.com/hyperf/guzzle/tree/v2.0.11"
  1682. },
  1683. "time": "2020-09-07T10:26:15+00:00"
  1684. },
  1685. {
  1686. "name": "hyperf/http-message",
  1687. "version": "v2.0.14",
  1688. "source": {
  1689. "type": "git",
  1690. "url": "https://github.com/hyperf/http-message.git",
  1691. "reference": "13e8ece7141c11ce1154b40136b2fd3b32285586"
  1692. },
  1693. "dist": {
  1694. "type": "zip",
  1695. "url": "https://api.github.com/repos/hyperf/http-message/zipball/13e8ece7141c11ce1154b40136b2fd3b32285586",
  1696. "reference": "13e8ece7141c11ce1154b40136b2fd3b32285586",
  1697. "shasum": "",
  1698. "mirrors": [
  1699. {
  1700. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1701. "preferred": true
  1702. }
  1703. ]
  1704. },
  1705. "require": {
  1706. "hyperf/utils": "~2.0.0",
  1707. "laminas/laminas-mime": "^2.7",
  1708. "psr/http-message": "^1.0"
  1709. },
  1710. "require-dev": {
  1711. "psr/container": "^1.0"
  1712. },
  1713. "suggest": {
  1714. "psr/container": "Required to replace RequestParserInterface."
  1715. },
  1716. "type": "library",
  1717. "extra": {
  1718. "branch-alias": {
  1719. "dev-master": "2.0-dev"
  1720. },
  1721. "hyperf": {
  1722. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  1723. }
  1724. },
  1725. "autoload": {
  1726. "psr-4": {
  1727. "Hyperf\\HttpMessage\\": "src/"
  1728. }
  1729. },
  1730. "notification-url": "https://packagist.org/downloads/",
  1731. "license": [
  1732. "MIT"
  1733. ],
  1734. "description": "microservice framework base on swoole",
  1735. "keywords": [
  1736. "http-message",
  1737. "hyperf",
  1738. "php",
  1739. "swoole"
  1740. ],
  1741. "support": {
  1742. "issues": "https://github.com/hyperf/http-message/issues",
  1743. "source": "https://github.com/hyperf/http-message/tree/v2.0.14"
  1744. },
  1745. "time": "2020-10-04T10:27:39+00:00"
  1746. },
  1747. {
  1748. "name": "hyperf/http-server",
  1749. "version": "v2.0.18",
  1750. "source": {
  1751. "type": "git",
  1752. "url": "https://github.com/hyperf/http-server.git",
  1753. "reference": "aadfd385041083f04b2c6be7fd56256b457598dd"
  1754. },
  1755. "dist": {
  1756. "type": "zip",
  1757. "url": "https://api.github.com/repos/hyperf/http-server/zipball/aadfd385041083f04b2c6be7fd56256b457598dd",
  1758. "reference": "aadfd385041083f04b2c6be7fd56256b457598dd",
  1759. "shasum": "",
  1760. "mirrors": [
  1761. {
  1762. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1763. "preferred": true
  1764. }
  1765. ]
  1766. },
  1767. "require": {
  1768. "hyperf/contract": "~2.0.0",
  1769. "hyperf/dispatcher": "~2.0.0",
  1770. "hyperf/event": "~2.0.0",
  1771. "hyperf/exception-handler": "~2.0.0",
  1772. "hyperf/http-message": "~2.0.0",
  1773. "hyperf/server": "~2.0.0",
  1774. "hyperf/utils": "~2.0.0",
  1775. "nikic/fast-route": "^1.3",
  1776. "php": ">=7.2",
  1777. "psr/container": "^1.0"
  1778. },
  1779. "require-dev": {
  1780. "friendsofphp/php-cs-fixer": "^2.9",
  1781. "hyperf/di": "~2.0.0",
  1782. "malukenho/docheader": "^0.1.6",
  1783. "mockery/mockery": "^1.0",
  1784. "phpunit/phpunit": "^7.0.0"
  1785. },
  1786. "suggest": {
  1787. "hyperf/di": "Required to use annotations."
  1788. },
  1789. "type": "library",
  1790. "extra": {
  1791. "branch-alias": {
  1792. "dev-master": "2.0-dev"
  1793. },
  1794. "hyperf": {
  1795. "config": "Hyperf\\HttpServer\\ConfigProvider"
  1796. }
  1797. },
  1798. "autoload": {
  1799. "psr-4": {
  1800. "Hyperf\\HttpServer\\": "src/"
  1801. }
  1802. },
  1803. "notification-url": "https://packagist.org/downloads/",
  1804. "license": [
  1805. "MIT"
  1806. ],
  1807. "description": "A HTTP Server for Hyperf.",
  1808. "homepage": "https://hyperf.io",
  1809. "keywords": [
  1810. "http",
  1811. "http-server",
  1812. "hyperf",
  1813. "php",
  1814. "swoole"
  1815. ],
  1816. "support": {
  1817. "docs": "https://hyperf.wiki",
  1818. "issues": "https://github.com/hyperf/hyperf/issues",
  1819. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1820. "source": "https://github.com/hyperf/hyperf"
  1821. },
  1822. "time": "2020-11-03T08:33:34+00:00"
  1823. },
  1824. {
  1825. "name": "hyperf/json-rpc",
  1826. "version": "v2.0.15",
  1827. "source": {
  1828. "type": "git",
  1829. "url": "https://github.com/hyperf/json-rpc.git",
  1830. "reference": "dd6a12c8a9f4d5165d60ba7ac0c85078a99a8129"
  1831. },
  1832. "dist": {
  1833. "type": "zip",
  1834. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/dd6a12c8a9f4d5165d60ba7ac0c85078a99a8129",
  1835. "reference": "dd6a12c8a9f4d5165d60ba7ac0c85078a99a8129",
  1836. "shasum": "",
  1837. "mirrors": [
  1838. {
  1839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1840. "preferred": true
  1841. }
  1842. ]
  1843. },
  1844. "require": {
  1845. "hyperf/contract": "~2.0.0",
  1846. "hyperf/http-message": "~2.0.0",
  1847. "hyperf/load-balancer": "~2.0.0",
  1848. "hyperf/rpc": "~2.0.0",
  1849. "hyperf/utils": "~2.0.0",
  1850. "php": ">=7.2",
  1851. "psr/container": "^1.0",
  1852. "psr/log": "^1.0"
  1853. },
  1854. "require-dev": {
  1855. "friendsofphp/php-cs-fixer": "^2.9",
  1856. "malukenho/docheader": "^0.1.6",
  1857. "mockery/mockery": "^1.0",
  1858. "phpunit/phpunit": "^7.0.0"
  1859. },
  1860. "suggest": {
  1861. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  1862. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  1863. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  1864. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  1865. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  1866. },
  1867. "type": "library",
  1868. "extra": {
  1869. "branch-alias": {
  1870. "dev-master": "2.0-dev"
  1871. },
  1872. "hyperf": {
  1873. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  1874. }
  1875. },
  1876. "autoload": {
  1877. "psr-4": {
  1878. "Hyperf\\JsonRpc\\": "src/"
  1879. }
  1880. },
  1881. "notification-url": "https://packagist.org/downloads/",
  1882. "license": [
  1883. "MIT"
  1884. ],
  1885. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  1886. "homepage": "https://hyperf.io",
  1887. "keywords": [
  1888. "hyperf",
  1889. "json-rpc",
  1890. "php",
  1891. "swoole"
  1892. ],
  1893. "support": {
  1894. "docs": "https://hyperf.wiki",
  1895. "issues": "https://github.com/hyperf/hyperf/issues",
  1896. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1897. "source": "https://github.com/hyperf/hyperf"
  1898. },
  1899. "time": "2020-10-15T04:05:56+00:00"
  1900. },
  1901. {
  1902. "name": "hyperf/load-balancer",
  1903. "version": "v2.0.11",
  1904. "source": {
  1905. "type": "git",
  1906. "url": "https://github.com/hyperf/load-balancer.git",
  1907. "reference": "7b139cdbe990e9b9ad86eca4d61a819863b92e28"
  1908. },
  1909. "dist": {
  1910. "type": "zip",
  1911. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/7b139cdbe990e9b9ad86eca4d61a819863b92e28",
  1912. "reference": "7b139cdbe990e9b9ad86eca4d61a819863b92e28",
  1913. "shasum": "",
  1914. "mirrors": [
  1915. {
  1916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1917. "preferred": true
  1918. }
  1919. ]
  1920. },
  1921. "require": {
  1922. "markrogoyski/math-php": "^0.49.0",
  1923. "php": ">=7.2"
  1924. },
  1925. "require-dev": {
  1926. "friendsofphp/php-cs-fixer": "^2.9",
  1927. "malukenho/docheader": "^0.1.6",
  1928. "mockery/mockery": "^1.0",
  1929. "phpunit/phpunit": "^7.0.0"
  1930. },
  1931. "type": "library",
  1932. "extra": {
  1933. "branch-alias": {
  1934. "dev-master": "2.0-dev"
  1935. },
  1936. "hyperf": {
  1937. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  1938. }
  1939. },
  1940. "autoload": {
  1941. "psr-4": {
  1942. "Hyperf\\LoadBalancer\\": "src/"
  1943. }
  1944. },
  1945. "notification-url": "https://packagist.org/downloads/",
  1946. "license": [
  1947. "MIT"
  1948. ],
  1949. "description": "A load balancer library for Hyperf.",
  1950. "homepage": "https://hyperf.io",
  1951. "keywords": [
  1952. "hyperf",
  1953. "load-balancer",
  1954. "php",
  1955. "swoole"
  1956. ],
  1957. "support": {
  1958. "docs": "https://hyperf.wiki",
  1959. "issues": "https://github.com/hyperf/hyperf/issues",
  1960. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1961. "source": "https://github.com/hyperf/hyperf"
  1962. },
  1963. "time": "2020-09-07T10:26:15+00:00"
  1964. },
  1965. {
  1966. "name": "hyperf/logger",
  1967. "version": "v2.0.11",
  1968. "source": {
  1969. "type": "git",
  1970. "url": "https://github.com/hyperf/logger.git",
  1971. "reference": "5ae69f15e6ddc4cb9bc3352a0a6ac6dda70a869b"
  1972. },
  1973. "dist": {
  1974. "type": "zip",
  1975. "url": "https://api.github.com/repos/hyperf/logger/zipball/5ae69f15e6ddc4cb9bc3352a0a6ac6dda70a869b",
  1976. "reference": "5ae69f15e6ddc4cb9bc3352a0a6ac6dda70a869b",
  1977. "shasum": "",
  1978. "mirrors": [
  1979. {
  1980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1981. "preferred": true
  1982. }
  1983. ]
  1984. },
  1985. "require": {
  1986. "hyperf/contract": "~2.0.0",
  1987. "hyperf/utils": "~2.0.0",
  1988. "monolog/monolog": "^2.0",
  1989. "php": ">=7.2",
  1990. "psr/container": "^1.0",
  1991. "psr/log": "^1.0"
  1992. },
  1993. "require-dev": {
  1994. "friendsofphp/php-cs-fixer": "^2.9",
  1995. "malukenho/docheader": "^0.1.6",
  1996. "mockery/mockery": "^1.0",
  1997. "phpunit/phpunit": "^7.0.0"
  1998. },
  1999. "type": "library",
  2000. "extra": {
  2001. "branch-alias": {
  2002. "dev-master": "2.0-dev"
  2003. },
  2004. "hyperf": {
  2005. "config": "Hyperf\\Logger\\ConfigProvider"
  2006. }
  2007. },
  2008. "autoload": {
  2009. "psr-4": {
  2010. "Hyperf\\Logger\\": "src/"
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "description": "A logger component for hyperf.",
  2018. "homepage": "https://hyperf.io",
  2019. "keywords": [
  2020. "hyperf",
  2021. "logger",
  2022. "php"
  2023. ],
  2024. "support": {
  2025. "docs": "https://hyperf.wiki",
  2026. "issues": "https://github.com/hyperf/hyperf/issues",
  2027. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2028. "source": "https://github.com/hyperf/hyperf"
  2029. },
  2030. "time": "2020-09-07T10:26:15+00:00"
  2031. },
  2032. {
  2033. "name": "hyperf/memory",
  2034. "version": "v2.0.12",
  2035. "source": {
  2036. "type": "git",
  2037. "url": "https://github.com/hyperf/memory.git",
  2038. "reference": "320b6180163cffe50072539a660ff9a1566f83e1"
  2039. },
  2040. "dist": {
  2041. "type": "zip",
  2042. "url": "https://api.github.com/repos/hyperf/memory/zipball/320b6180163cffe50072539a660ff9a1566f83e1",
  2043. "reference": "320b6180163cffe50072539a660ff9a1566f83e1",
  2044. "shasum": "",
  2045. "mirrors": [
  2046. {
  2047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2048. "preferred": true
  2049. }
  2050. ]
  2051. },
  2052. "require": {
  2053. "php": ">=7.2"
  2054. },
  2055. "require-dev": {
  2056. "friendsofphp/php-cs-fixer": "^2.9",
  2057. "malukenho/docheader": "^0.1.6",
  2058. "mockery/mockery": "^1.0",
  2059. "phpunit/phpunit": "^7.0.0"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "2.0-dev"
  2065. },
  2066. "hyperf": {
  2067. "config": "Hyperf\\Memory\\ConfigProvider"
  2068. }
  2069. },
  2070. "autoload": {
  2071. "psr-4": {
  2072. "Hyperf\\Memory\\": "src/"
  2073. }
  2074. },
  2075. "notification-url": "https://packagist.org/downloads/",
  2076. "license": [
  2077. "MIT"
  2078. ],
  2079. "description": "An independent component that use to operate and manage memory.",
  2080. "homepage": "https://hyperf.io",
  2081. "keywords": [
  2082. "hyperf",
  2083. "memory",
  2084. "php",
  2085. "swoole"
  2086. ],
  2087. "support": {
  2088. "docs": "https://hyperf.wiki",
  2089. "issues": "https://github.com/hyperf/hyperf/issues",
  2090. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2091. "source": "https://github.com/hyperf/hyperf"
  2092. },
  2093. "time": "2020-09-14T04:43:30+00:00"
  2094. },
  2095. {
  2096. "name": "hyperf/model-cache",
  2097. "version": "v2.0.17",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/hyperf/model-cache.git",
  2101. "reference": "4ee3230576a0cdea2807cce94dc123d39d4d3800"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://api.github.com/repos/hyperf/model-cache/zipball/4ee3230576a0cdea2807cce94dc123d39d4d3800",
  2106. "reference": "4ee3230576a0cdea2807cce94dc123d39d4d3800",
  2107. "shasum": "",
  2108. "mirrors": [
  2109. {
  2110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2111. "preferred": true
  2112. }
  2113. ]
  2114. },
  2115. "require": {
  2116. "hyperf/contract": "~2.0.0",
  2117. "hyperf/db-connection": "~2.0.0",
  2118. "hyperf/utils": "~2.0.0",
  2119. "php": ">=7.2",
  2120. "psr/container": "^1.0",
  2121. "psr/simple-cache": "^1.0"
  2122. },
  2123. "require-dev": {
  2124. "friendsofphp/php-cs-fixer": "^2.9",
  2125. "hyperf/event": "~2.0.0",
  2126. "malukenho/docheader": "^0.1.6",
  2127. "mockery/mockery": "^1.0",
  2128. "phpunit/phpunit": "^7.0.0"
  2129. },
  2130. "suggest": {
  2131. "hyperf/event": "Required to use DeleteCacheListener."
  2132. },
  2133. "type": "library",
  2134. "extra": {
  2135. "branch-alias": {
  2136. "dev-master": "2.0-dev"
  2137. },
  2138. "hyperf": {
  2139. "config": "Hyperf\\ModelCache\\ConfigProvider"
  2140. }
  2141. },
  2142. "autoload": {
  2143. "psr-4": {
  2144. "Hyperf\\ModelCache\\": "src/"
  2145. }
  2146. },
  2147. "notification-url": "https://packagist.org/downloads/",
  2148. "license": [
  2149. "MIT"
  2150. ],
  2151. "description": "A model cache component for hyperf.",
  2152. "homepage": "https://hyperf.io",
  2153. "keywords": [
  2154. "hyperf",
  2155. "model-cache",
  2156. "php"
  2157. ],
  2158. "support": {
  2159. "docs": "https://hyperf.wiki",
  2160. "issues": "https://github.com/hyperf/hyperf/issues",
  2161. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2162. "source": "https://github.com/hyperf/hyperf"
  2163. },
  2164. "time": "2020-10-27T15:42:29+00:00"
  2165. },
  2166. {
  2167. "name": "hyperf/model-listener",
  2168. "version": "v2.0.12",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://github.com/hyperf/model-listener.git",
  2172. "reference": "64cbe78841cc3849d3a7501e3180b92a0aa00dcc"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/64cbe78841cc3849d3a7501e3180b92a0aa00dcc",
  2177. "reference": "64cbe78841cc3849d3a7501e3180b92a0aa00dcc",
  2178. "shasum": "",
  2179. "mirrors": [
  2180. {
  2181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2182. "preferred": true
  2183. }
  2184. ]
  2185. },
  2186. "require": {
  2187. "hyperf/contract": "~2.0.0",
  2188. "hyperf/database": "~2.0.0",
  2189. "hyperf/di": "~2.0.0",
  2190. "hyperf/event": "~2.0.0",
  2191. "hyperf/utils": "~2.0.0",
  2192. "php": ">=7.2",
  2193. "psr/container": "^1.0",
  2194. "psr/log": "^1.0"
  2195. },
  2196. "require-dev": {
  2197. "friendsofphp/php-cs-fixer": "^2.9",
  2198. "malukenho/docheader": "^0.1.6",
  2199. "mockery/mockery": "^1.0",
  2200. "phpunit/phpunit": "^7.0"
  2201. },
  2202. "type": "library",
  2203. "extra": {
  2204. "branch-alias": {
  2205. "dev-master": "2.0-dev"
  2206. },
  2207. "hyperf": {
  2208. "config": "Hyperf\\ModelListener\\ConfigProvider"
  2209. }
  2210. },
  2211. "autoload": {
  2212. "psr-4": {
  2213. "Hyperf\\ModelListener\\": "src/"
  2214. }
  2215. },
  2216. "notification-url": "https://packagist.org/downloads/",
  2217. "license": [
  2218. "MIT"
  2219. ],
  2220. "description": "A model listener for Hyperf.",
  2221. "homepage": "https://hyperf.io",
  2222. "keywords": [
  2223. "hyperf",
  2224. "model-listener",
  2225. "php",
  2226. "swoole"
  2227. ],
  2228. "support": {
  2229. "docs": "https://hyperf.wiki",
  2230. "issues": "https://github.com/hyperf/hyperf/issues",
  2231. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2232. "source": "https://github.com/hyperf/hyperf"
  2233. },
  2234. "time": "2020-09-14T04:43:30+00:00"
  2235. },
  2236. {
  2237. "name": "hyperf/paginator",
  2238. "version": "v2.0.17",
  2239. "source": {
  2240. "type": "git",
  2241. "url": "https://github.com/hyperf/paginator.git",
  2242. "reference": "26bbd9c9459da95f04afb4c58141469748843ba3"
  2243. },
  2244. "dist": {
  2245. "type": "zip",
  2246. "url": "https://api.github.com/repos/hyperf/paginator/zipball/26bbd9c9459da95f04afb4c58141469748843ba3",
  2247. "reference": "26bbd9c9459da95f04afb4c58141469748843ba3",
  2248. "shasum": "",
  2249. "mirrors": [
  2250. {
  2251. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2252. "preferred": true
  2253. }
  2254. ]
  2255. },
  2256. "require": {
  2257. "hyperf/contract": "~2.0.0",
  2258. "hyperf/utils": "~2.0.0",
  2259. "php": ">=7.2"
  2260. },
  2261. "require-dev": {
  2262. "friendsofphp/php-cs-fixer": "^2.9",
  2263. "hyperf/event": "~2.0.0",
  2264. "hyperf/framework": "~2.0.0",
  2265. "hyperf/http-server": "~2.0.0",
  2266. "malukenho/docheader": "^0.1.6",
  2267. "mockery/mockery": "^1.0",
  2268. "phpunit/phpunit": "^7.0.0"
  2269. },
  2270. "suggest": {
  2271. "hyperf/event": "Reqiured to use PageResolverListener.",
  2272. "hyperf/framework": "Reqiured to use PageResolverListener.",
  2273. "hyperf/http-server": "Reqiured to use PageResolverListener."
  2274. },
  2275. "type": "library",
  2276. "extra": {
  2277. "branch-alias": {
  2278. "dev-master": "2.0-dev"
  2279. },
  2280. "hyperf": {
  2281. "config": "Hyperf\\Paginator\\ConfigProvider"
  2282. }
  2283. },
  2284. "autoload": {
  2285. "psr-4": {
  2286. "Hyperf\\Paginator\\": "src/"
  2287. }
  2288. },
  2289. "notification-url": "https://packagist.org/downloads/",
  2290. "license": [
  2291. "MIT"
  2292. ],
  2293. "description": "A paginator component for hyperf.",
  2294. "homepage": "https://hyperf.io",
  2295. "keywords": [
  2296. "hyperf",
  2297. "paginator",
  2298. "php"
  2299. ],
  2300. "support": {
  2301. "docs": "https://hyperf.wiki",
  2302. "issues": "https://github.com/hyperf/hyperf/issues",
  2303. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2304. "source": "https://github.com/hyperf/hyperf"
  2305. },
  2306. "time": "2020-10-28T04:06:37+00:00"
  2307. },
  2308. {
  2309. "name": "hyperf/pool",
  2310. "version": "v2.0.12",
  2311. "source": {
  2312. "type": "git",
  2313. "url": "https://github.com/hyperf/pool.git",
  2314. "reference": "33e9ad173d3ed6c654b038f850c78c6a1bd3a19f"
  2315. },
  2316. "dist": {
  2317. "type": "zip",
  2318. "url": "https://api.github.com/repos/hyperf/pool/zipball/33e9ad173d3ed6c654b038f850c78c6a1bd3a19f",
  2319. "reference": "33e9ad173d3ed6c654b038f850c78c6a1bd3a19f",
  2320. "shasum": "",
  2321. "mirrors": [
  2322. {
  2323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2324. "preferred": true
  2325. }
  2326. ]
  2327. },
  2328. "require": {
  2329. "hyperf/contract": "~2.0.0",
  2330. "hyperf/utils": "~2.0.0",
  2331. "php": ">=7.2",
  2332. "psr/container": "^1.0"
  2333. },
  2334. "require-dev": {
  2335. "friendsofphp/php-cs-fixer": "^2.9",
  2336. "malukenho/docheader": "^0.1.6",
  2337. "mockery/mockery": "^1.0",
  2338. "phpunit/phpunit": "^7.0.0"
  2339. },
  2340. "type": "library",
  2341. "extra": {
  2342. "branch-alias": {
  2343. "dev-master": "2.0-dev"
  2344. },
  2345. "hyperf": {
  2346. "config": "Hyperf\\Pool\\ConfigProvider"
  2347. }
  2348. },
  2349. "autoload": {
  2350. "psr-4": {
  2351. "Hyperf\\Pool\\": "src/"
  2352. }
  2353. },
  2354. "notification-url": "https://packagist.org/downloads/",
  2355. "license": [
  2356. "MIT"
  2357. ],
  2358. "description": "An independent universal connection pool component.",
  2359. "homepage": "https://hyperf.io",
  2360. "keywords": [
  2361. "connection-pool",
  2362. "hyperf",
  2363. "php",
  2364. "swoole"
  2365. ],
  2366. "support": {
  2367. "docs": "https://hyperf.wiki",
  2368. "issues": "https://github.com/hyperf/hyperf/issues",
  2369. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2370. "source": "https://github.com/hyperf/hyperf"
  2371. },
  2372. "time": "2020-09-14T04:43:30+00:00"
  2373. },
  2374. {
  2375. "name": "hyperf/process",
  2376. "version": "v2.0.13",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://github.com/hyperf/process.git",
  2380. "reference": "125f0320c3f265629ff153b59a9ed4eb267ba514"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://api.github.com/repos/hyperf/process/zipball/125f0320c3f265629ff153b59a9ed4eb267ba514",
  2385. "reference": "125f0320c3f265629ff153b59a9ed4eb267ba514",
  2386. "shasum": "",
  2387. "mirrors": [
  2388. {
  2389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2390. "preferred": true
  2391. }
  2392. ]
  2393. },
  2394. "require": {
  2395. "hyperf/contract": "~2.0.0",
  2396. "hyperf/utils": "~2.0.0",
  2397. "php": ">=7.2",
  2398. "psr/container": "^1.0",
  2399. "psr/event-dispatcher": "^1.0"
  2400. },
  2401. "require-dev": {
  2402. "friendsofphp/php-cs-fixer": "^2.9",
  2403. "hyperf/di": "~2.0.0",
  2404. "hyperf/event": "~2.0.0",
  2405. "malukenho/docheader": "^0.1.6",
  2406. "mockery/mockery": "^1.0",
  2407. "phpunit/phpunit": "^7.0.0"
  2408. },
  2409. "suggest": {
  2410. "hyperf/di": "Required to use annotations.",
  2411. "hyperf/event": "Required to dump the message before and after process.",
  2412. "hyperf/framework": "Required to use BootProcessListener."
  2413. },
  2414. "type": "library",
  2415. "extra": {
  2416. "branch-alias": {
  2417. "dev-master": "2.0-dev"
  2418. },
  2419. "hyperf": {
  2420. "config": "Hyperf\\Process\\ConfigProvider"
  2421. }
  2422. },
  2423. "autoload": {
  2424. "psr-4": {
  2425. "Hyperf\\Process\\": "src/"
  2426. }
  2427. },
  2428. "notification-url": "https://packagist.org/downloads/",
  2429. "license": [
  2430. "MIT"
  2431. ],
  2432. "description": "A process component for hyperf.",
  2433. "homepage": "https://hyperf.io",
  2434. "keywords": [
  2435. "hyperf",
  2436. "php",
  2437. "process"
  2438. ],
  2439. "support": {
  2440. "docs": "https://hyperf.wiki",
  2441. "issues": "https://github.com/hyperf/hyperf/issues",
  2442. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2443. "source": "https://github.com/hyperf/hyperf"
  2444. },
  2445. "time": "2020-09-24T10:56:15+00:00"
  2446. },
  2447. {
  2448. "name": "hyperf/redis",
  2449. "version": "v2.0.18",
  2450. "source": {
  2451. "type": "git",
  2452. "url": "https://github.com/hyperf/redis.git",
  2453. "reference": "8bc8ce34f18eacb4ecc47170a1ef5d88af6f9a35"
  2454. },
  2455. "dist": {
  2456. "type": "zip",
  2457. "url": "https://api.github.com/repos/hyperf/redis/zipball/8bc8ce34f18eacb4ecc47170a1ef5d88af6f9a35",
  2458. "reference": "8bc8ce34f18eacb4ecc47170a1ef5d88af6f9a35",
  2459. "shasum": "",
  2460. "mirrors": [
  2461. {
  2462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2463. "preferred": true
  2464. }
  2465. ]
  2466. },
  2467. "require": {
  2468. "ext-redis": "*",
  2469. "hyperf/contract": "~2.0.0",
  2470. "hyperf/pool": "~2.0.0",
  2471. "hyperf/utils": "~2.0.0",
  2472. "php": ">=7.2",
  2473. "psr/container": "^1.0"
  2474. },
  2475. "require-dev": {
  2476. "friendsofphp/php-cs-fixer": "^2.9",
  2477. "hyperf/di": "~2.0.0",
  2478. "malukenho/docheader": "^0.1.6",
  2479. "mockery/mockery": "^1.0",
  2480. "phpunit/phpunit": "^7.0.0"
  2481. },
  2482. "suggest": {
  2483. "ext-redis": "Required to use sentinel mode (>=5.2).",
  2484. "hyperf/di": "Create the RedisPool via dependency injection."
  2485. },
  2486. "type": "library",
  2487. "extra": {
  2488. "branch-alias": {
  2489. "dev-master": "2.0-dev"
  2490. },
  2491. "hyperf": {
  2492. "config": "Hyperf\\Redis\\ConfigProvider"
  2493. }
  2494. },
  2495. "autoload": {
  2496. "psr-4": {
  2497. "Hyperf\\Redis\\": "src/"
  2498. }
  2499. },
  2500. "notification-url": "https://packagist.org/downloads/",
  2501. "license": [
  2502. "MIT"
  2503. ],
  2504. "description": "A redis component for hyperf.",
  2505. "homepage": "https://hyperf.io",
  2506. "keywords": [
  2507. "hyperf",
  2508. "php",
  2509. "pool",
  2510. "redis"
  2511. ],
  2512. "support": {
  2513. "docs": "https://hyperf.wiki",
  2514. "issues": "https://github.com/hyperf/hyperf/issues",
  2515. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2516. "source": "https://github.com/hyperf/hyperf"
  2517. },
  2518. "time": "2020-11-06T07:50:08+00:00"
  2519. },
  2520. {
  2521. "name": "hyperf/rpc",
  2522. "version": "v2.0.12",
  2523. "source": {
  2524. "type": "git",
  2525. "url": "https://github.com/hyperf/rpc.git",
  2526. "reference": "9bd73d5eaaff9f501cc1e2e27c7c8b496ad37e56"
  2527. },
  2528. "dist": {
  2529. "type": "zip",
  2530. "url": "https://api.github.com/repos/hyperf/rpc/zipball/9bd73d5eaaff9f501cc1e2e27c7c8b496ad37e56",
  2531. "reference": "9bd73d5eaaff9f501cc1e2e27c7c8b496ad37e56",
  2532. "shasum": "",
  2533. "mirrors": [
  2534. {
  2535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2536. "preferred": true
  2537. }
  2538. ]
  2539. },
  2540. "require": {
  2541. "hyperf/contract": "~2.0.0",
  2542. "hyperf/utils": "~2.0.0",
  2543. "php": ">=7.2"
  2544. },
  2545. "require-dev": {
  2546. "friendsofphp/php-cs-fixer": "^2.9",
  2547. "malukenho/docheader": "^0.1.6",
  2548. "mockery/mockery": "^1.0",
  2549. "phpunit/phpunit": "^7.0.0"
  2550. },
  2551. "type": "library",
  2552. "extra": {
  2553. "branch-alias": {
  2554. "dev-master": "2.0-dev"
  2555. },
  2556. "hyperf": []
  2557. },
  2558. "autoload": {
  2559. "psr-4": {
  2560. "Hyperf\\Rpc\\": "src/"
  2561. }
  2562. },
  2563. "notification-url": "https://packagist.org/downloads/",
  2564. "license": [
  2565. "MIT"
  2566. ],
  2567. "description": "A rpc basic library for Hyperf.",
  2568. "homepage": "https://hyperf.io",
  2569. "keywords": [
  2570. "hyperf",
  2571. "php",
  2572. "rpc",
  2573. "swoole"
  2574. ],
  2575. "support": {
  2576. "docs": "https://hyperf.wiki",
  2577. "issues": "https://github.com/hyperf/hyperf/issues",
  2578. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2579. "source": "https://github.com/hyperf/hyperf"
  2580. },
  2581. "time": "2020-09-14T04:43:30+00:00"
  2582. },
  2583. {
  2584. "name": "hyperf/rpc-client",
  2585. "version": "v2.0.12",
  2586. "source": {
  2587. "type": "git",
  2588. "url": "https://github.com/hyperf/rpc-client.git",
  2589. "reference": "5ffd727c9e3bd1f8a91cf6da81b95b33eea32e04"
  2590. },
  2591. "dist": {
  2592. "type": "zip",
  2593. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/5ffd727c9e3bd1f8a91cf6da81b95b33eea32e04",
  2594. "reference": "5ffd727c9e3bd1f8a91cf6da81b95b33eea32e04",
  2595. "shasum": "",
  2596. "mirrors": [
  2597. {
  2598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2599. "preferred": true
  2600. }
  2601. ]
  2602. },
  2603. "require": {
  2604. "hyperf/load-balancer": "~2.0.0",
  2605. "hyperf/rpc": "~2.0.0",
  2606. "hyperf/utils": "~2.0.0",
  2607. "php": ">=7.2",
  2608. "psr/container": "^1.0",
  2609. "roave/better-reflection": "^4.0"
  2610. },
  2611. "require-dev": {
  2612. "friendsofphp/php-cs-fixer": "^2.9",
  2613. "malukenho/docheader": "^0.1.6",
  2614. "mockery/mockery": "^1.0",
  2615. "phpunit/phpunit": "^7.0.0"
  2616. },
  2617. "suggest": {
  2618. "hyperf/consul": "For fetch the nodes info from consul.",
  2619. "hyperf/di": "For better container experience.",
  2620. "hyperf/pool": "Required to use connection pool."
  2621. },
  2622. "type": "library",
  2623. "extra": {
  2624. "branch-alias": {
  2625. "dev-master": "2.0-dev"
  2626. },
  2627. "hyperf": {
  2628. "config": "Hyperf\\RpcClient\\ConfigProvider"
  2629. }
  2630. },
  2631. "autoload": {
  2632. "psr-4": {
  2633. "Hyperf\\RpcClient\\": "src/"
  2634. }
  2635. },
  2636. "notification-url": "https://packagist.org/downloads/",
  2637. "license": [
  2638. "MIT"
  2639. ],
  2640. "description": "An abstract rpc server component for Hyperf.",
  2641. "homepage": "https://hyperf.io",
  2642. "keywords": [
  2643. "hyperf",
  2644. "json-rpc",
  2645. "php",
  2646. "rpc",
  2647. "rpc-client",
  2648. "swoole"
  2649. ],
  2650. "support": {
  2651. "docs": "https://hyperf.wiki",
  2652. "issues": "https://github.com/hyperf/hyperf/issues",
  2653. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2654. "source": "https://github.com/hyperf/hyperf"
  2655. },
  2656. "time": "2020-09-14T04:43:30+00:00"
  2657. },
  2658. {
  2659. "name": "hyperf/rpc-server",
  2660. "version": "v2.0.17",
  2661. "source": {
  2662. "type": "git",
  2663. "url": "https://github.com/hyperf/rpc-server.git",
  2664. "reference": "37235bf6dede0cb7f4e94133ab3cc4729f5711f7"
  2665. },
  2666. "dist": {
  2667. "type": "zip",
  2668. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/37235bf6dede0cb7f4e94133ab3cc4729f5711f7",
  2669. "reference": "37235bf6dede0cb7f4e94133ab3cc4729f5711f7",
  2670. "shasum": "",
  2671. "mirrors": [
  2672. {
  2673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2674. "preferred": true
  2675. }
  2676. ]
  2677. },
  2678. "require": {
  2679. "hyperf/http-server": "~2.0.0",
  2680. "hyperf/rpc": "~2.0.0",
  2681. "php": ">=7.2"
  2682. },
  2683. "require-dev": {
  2684. "friendsofphp/php-cs-fixer": "^2.9",
  2685. "malukenho/docheader": "^0.1.6",
  2686. "mockery/mockery": "^1.0",
  2687. "phpunit/phpunit": "^7.0.0"
  2688. },
  2689. "suggest": {
  2690. "hyperf/di": "Required to use annotations."
  2691. },
  2692. "type": "library",
  2693. "extra": {
  2694. "branch-alias": {
  2695. "dev-master": "2.0-dev"
  2696. },
  2697. "hyperf": {
  2698. "config": "Hyperf\\RpcServer\\ConfigProvider"
  2699. }
  2700. },
  2701. "autoload": {
  2702. "psr-4": {
  2703. "Hyperf\\RpcServer\\": "src/"
  2704. }
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "description": "An abstract rpc server component for Hyperf.",
  2711. "homepage": "https://hyperf.io",
  2712. "keywords": [
  2713. "hyperf",
  2714. "php",
  2715. "rpc",
  2716. "rpc-server",
  2717. "swoole"
  2718. ],
  2719. "support": {
  2720. "docs": "https://hyperf.wiki",
  2721. "issues": "https://github.com/hyperf/hyperf/issues",
  2722. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2723. "source": "https://github.com/hyperf/hyperf"
  2724. },
  2725. "time": "2020-10-29T10:16:04+00:00"
  2726. },
  2727. {
  2728. "name": "hyperf/server",
  2729. "version": "v2.0.13",
  2730. "source": {
  2731. "type": "git",
  2732. "url": "https://github.com/hyperf/server.git",
  2733. "reference": "2597dc953d98f3bcdcbf47904e3c3c4a71e172f2"
  2734. },
  2735. "dist": {
  2736. "type": "zip",
  2737. "url": "https://api.github.com/repos/hyperf/server/zipball/2597dc953d98f3bcdcbf47904e3c3c4a71e172f2",
  2738. "reference": "2597dc953d98f3bcdcbf47904e3c3c4a71e172f2",
  2739. "shasum": "",
  2740. "mirrors": [
  2741. {
  2742. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2743. "preferred": true
  2744. }
  2745. ]
  2746. },
  2747. "require": {
  2748. "hyperf/contract": "~2.0.0",
  2749. "hyperf/utils": "~2.0.0",
  2750. "php": ">=7.2",
  2751. "psr/container": "^1.0",
  2752. "psr/event-dispatcher": "^1.0",
  2753. "psr/log": "^1.0",
  2754. "symfony/console": "^5.0"
  2755. },
  2756. "require-dev": {
  2757. "friendsofphp/php-cs-fixer": "^2.9",
  2758. "malukenho/docheader": "^0.1.6",
  2759. "mockery/mockery": "^1.0",
  2760. "phpunit/phpunit": "^7.0.0"
  2761. },
  2762. "suggest": {
  2763. "hyperf/event": "Dump the info after server start.",
  2764. "hyperf/framework": "Dump the info after server start."
  2765. },
  2766. "type": "library",
  2767. "extra": {
  2768. "branch-alias": {
  2769. "dev-master": "2.0-dev"
  2770. },
  2771. "hyperf": {
  2772. "config": "Hyperf\\Server\\ConfigProvider"
  2773. }
  2774. },
  2775. "autoload": {
  2776. "psr-4": {
  2777. "Hyperf\\Server\\": "src/"
  2778. }
  2779. },
  2780. "notification-url": "https://packagist.org/downloads/",
  2781. "license": [
  2782. "MIT"
  2783. ],
  2784. "description": "A base server library for Hyperf.",
  2785. "homepage": "https://hyperf.io",
  2786. "keywords": [
  2787. "hyperf",
  2788. "php",
  2789. "server",
  2790. "swoole"
  2791. ],
  2792. "support": {
  2793. "docs": "https://hyperf.wiki",
  2794. "issues": "https://github.com/hyperf/hyperf/issues",
  2795. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2796. "source": "https://github.com/hyperf/hyperf"
  2797. },
  2798. "time": "2020-09-27T08:25:56+00:00"
  2799. },
  2800. {
  2801. "name": "hyperf/tracer",
  2802. "version": "v2.0.17",
  2803. "source": {
  2804. "type": "git",
  2805. "url": "https://github.com/hyperf/tracer.git",
  2806. "reference": "1f1c56cadac391f4090384d4d8391997e32859ac"
  2807. },
  2808. "dist": {
  2809. "type": "zip",
  2810. "url": "https://api.github.com/repos/hyperf/tracer/zipball/1f1c56cadac391f4090384d4d8391997e32859ac",
  2811. "reference": "1f1c56cadac391f4090384d4d8391997e32859ac",
  2812. "shasum": "",
  2813. "mirrors": [
  2814. {
  2815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2816. "preferred": true
  2817. }
  2818. ]
  2819. },
  2820. "require": {
  2821. "hyperf/contract": "~2.0.0",
  2822. "hyperf/di": "~2.0.0",
  2823. "hyperf/guzzle": "~2.0.0",
  2824. "hyperf/utils": "~2.0.0",
  2825. "jcchavezs/zipkin-opentracing": "^0.1.3",
  2826. "opentracing/opentracing": "1.0.*",
  2827. "php": ">=7.2",
  2828. "psr/http-message": "^1.0"
  2829. },
  2830. "require-dev": {
  2831. "friendsofphp/php-cs-fixer": "^2.9",
  2832. "hyperf/event": "~2.0.0",
  2833. "jonahgeorge/jaeger-client-php": "^0.4.4",
  2834. "malukenho/docheader": "^0.1.6",
  2835. "mockery/mockery": "^1.0",
  2836. "phpunit/phpunit": "^7.0.0"
  2837. },
  2838. "suggest": {
  2839. "hyperf/event": "Required to use DbQueryExecutedListener.",
  2840. "jonahgeorge/jaeger-client-php": "Required to use jaeger tracing."
  2841. },
  2842. "type": "library",
  2843. "extra": {
  2844. "branch-alias": {
  2845. "dev-master": "2.0-dev"
  2846. },
  2847. "hyperf": {
  2848. "config": "Hyperf\\Tracer\\ConfigProvider"
  2849. }
  2850. },
  2851. "autoload": {
  2852. "psr-4": {
  2853. "Hyperf\\Tracer\\": "src/"
  2854. }
  2855. },
  2856. "notification-url": "https://packagist.org/downloads/",
  2857. "license": [
  2858. "MIT"
  2859. ],
  2860. "description": "A open tracing system implemented for Hyperf or other coroutine framework",
  2861. "homepage": "https://hyperf.io",
  2862. "keywords": [
  2863. "hyperf",
  2864. "open-tracing",
  2865. "php",
  2866. "zipkin"
  2867. ],
  2868. "support": {
  2869. "docs": "https://hyperf.wiki",
  2870. "issues": "https://github.com/hyperf/hyperf/issues",
  2871. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2872. "source": "https://github.com/hyperf/hyperf"
  2873. },
  2874. "time": "2020-10-31T12:42:41+00:00"
  2875. },
  2876. {
  2877. "name": "hyperf/utils",
  2878. "version": "v2.0.18",
  2879. "source": {
  2880. "type": "git",
  2881. "url": "https://github.com/hyperf/utils.git",
  2882. "reference": "0619fe0ccc2101f796f2252d8d2312b47939c30e"
  2883. },
  2884. "dist": {
  2885. "type": "zip",
  2886. "url": "https://api.github.com/repos/hyperf/utils/zipball/0619fe0ccc2101f796f2252d8d2312b47939c30e",
  2887. "reference": "0619fe0ccc2101f796f2252d8d2312b47939c30e",
  2888. "shasum": "",
  2889. "mirrors": [
  2890. {
  2891. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2892. "preferred": true
  2893. }
  2894. ]
  2895. },
  2896. "require": {
  2897. "doctrine/inflector": "^2.0",
  2898. "hyperf/contract": "~2.0.0",
  2899. "php": ">=7.2"
  2900. },
  2901. "require-dev": {
  2902. "friendsofphp/php-cs-fixer": "^2.9",
  2903. "malukenho/docheader": "^0.1.6",
  2904. "mockery/mockery": "^1.0",
  2905. "phpunit/phpunit": "^7.0.0",
  2906. "symfony/property-access": "^5.0",
  2907. "symfony/serializer": "^5.0",
  2908. "symfony/var-dumper": "^5.0"
  2909. },
  2910. "suggest": {
  2911. "ext-swoole": "Required to use methods related to swoole (>=4.5).",
  2912. "hyperf/di": "Required to use ExceptionNormalizer",
  2913. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0)",
  2914. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0)",
  2915. "symfony/var-dumper": "Required to use the dd function (^5.0)."
  2916. },
  2917. "type": "library",
  2918. "extra": {
  2919. "hyperf": {
  2920. "config": "Hyperf\\Utils\\ConfigProvider"
  2921. },
  2922. "branch-alias": {
  2923. "dev-master": "2.0-dev"
  2924. }
  2925. },
  2926. "autoload": {
  2927. "files": [
  2928. "src/Functions.php"
  2929. ],
  2930. "psr-4": {
  2931. "Hyperf\\Utils\\": "src/"
  2932. }
  2933. },
  2934. "notification-url": "https://packagist.org/downloads/",
  2935. "license": [
  2936. "MIT"
  2937. ],
  2938. "description": "A tools package that could help developer solved the problem quickly.",
  2939. "homepage": "https://hyperf.io",
  2940. "keywords": [
  2941. "hyperf",
  2942. "php",
  2943. "swoole",
  2944. "utils"
  2945. ],
  2946. "support": {
  2947. "docs": "https://hyperf.wiki",
  2948. "issues": "https://github.com/hyperf/hyperf/issues",
  2949. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2950. "source": "https://github.com/hyperf/hyperf"
  2951. },
  2952. "time": "2020-11-05T04:42:11+00:00"
  2953. },
  2954. {
  2955. "name": "jcchavezs/zipkin-opentracing",
  2956. "version": "0.1.5",
  2957. "source": {
  2958. "type": "git",
  2959. "url": "https://github.com/jcchavezs/zipkin-php-opentracing.git",
  2960. "reference": "565f3bed0fef52d7004b0faba2439e3cac992837"
  2961. },
  2962. "dist": {
  2963. "type": "zip",
  2964. "url": "https://api.github.com/repos/jcchavezs/zipkin-php-opentracing/zipball/565f3bed0fef52d7004b0faba2439e3cac992837",
  2965. "reference": "565f3bed0fef52d7004b0faba2439e3cac992837",
  2966. "shasum": "",
  2967. "mirrors": [
  2968. {
  2969. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2970. "preferred": true
  2971. }
  2972. ]
  2973. },
  2974. "require": {
  2975. "opentracing/opentracing": "1.0.0-beta5",
  2976. "openzipkin/zipkin": "^1.3.6",
  2977. "php": "~5.6 || ~7.0"
  2978. },
  2979. "provide": {
  2980. "opentracing/opentracing": "dev-master"
  2981. },
  2982. "require-dev": {
  2983. "phpunit/phpunit": "~5.7.19",
  2984. "squizlabs/php_codesniffer": "3.*"
  2985. },
  2986. "type": "library",
  2987. "autoload": {
  2988. "psr-4": {
  2989. "ZipkinOpenTracing\\": "./src/ZipkinOpenTracing/"
  2990. }
  2991. },
  2992. "notification-url": "https://packagist.org/downloads/",
  2993. "license": [
  2994. "MIT"
  2995. ],
  2996. "authors": [
  2997. {
  2998. "name": "José Carlos Chávez",
  2999. "email": "jcchavezs@gmail.com"
  3000. }
  3001. ],
  3002. "description": "A Zipkin bridge with OpenTracing",
  3003. "support": {
  3004. "issues": "https://github.com/jcchavezs/zipkin-php-opentracing/issues",
  3005. "source": "https://github.com/jcchavezs/zipkin-php-opentracing/tree/0.1.5"
  3006. },
  3007. "time": "2020-05-19T15:56:43+00:00"
  3008. },
  3009. {
  3010. "name": "jetbrains/phpstorm-stubs",
  3011. "version": "v2019.3",
  3012. "source": {
  3013. "type": "git",
  3014. "url": "https://github.com/JetBrains/phpstorm-stubs.git",
  3015. "reference": "883b6facd78e01c0743b554af86fa590c2573f40"
  3016. },
  3017. "dist": {
  3018. "type": "zip",
  3019. "url": "https://api.github.com/repos/JetBrains/phpstorm-stubs/zipball/883b6facd78e01c0743b554af86fa590c2573f40",
  3020. "reference": "883b6facd78e01c0743b554af86fa590c2573f40",
  3021. "shasum": "",
  3022. "mirrors": [
  3023. {
  3024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3025. "preferred": true
  3026. }
  3027. ]
  3028. },
  3029. "require-dev": {
  3030. "nikic/php-parser": "^4",
  3031. "php": "^7.1",
  3032. "phpdocumentor/reflection-docblock": "^4.3",
  3033. "phpunit/phpunit": "^7"
  3034. },
  3035. "type": "library",
  3036. "autoload": {
  3037. "files": [
  3038. "PhpStormStubsMap.php"
  3039. ]
  3040. },
  3041. "notification-url": "https://packagist.org/downloads/",
  3042. "license": [
  3043. "Apache-2.0"
  3044. ],
  3045. "description": "PHP runtime & extensions header files for PhpStorm",
  3046. "homepage": "https://www.jetbrains.com/phpstorm",
  3047. "keywords": [
  3048. "autocomplete",
  3049. "code",
  3050. "inference",
  3051. "inspection",
  3052. "jetbrains",
  3053. "phpstorm",
  3054. "stubs",
  3055. "type"
  3056. ],
  3057. "support": {
  3058. "source": "https://github.com/JetBrains/phpstorm-stubs/tree/master"
  3059. },
  3060. "time": "2019-12-05T16:56:26+00:00"
  3061. },
  3062. {
  3063. "name": "laminas/laminas-mime",
  3064. "version": "2.7.4",
  3065. "source": {
  3066. "type": "git",
  3067. "url": "https://github.com/laminas/laminas-mime.git",
  3068. "reference": "e45a7d856bf7b4a7b5bd00d6371f9961dc233add"
  3069. },
  3070. "dist": {
  3071. "type": "zip",
  3072. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/e45a7d856bf7b4a7b5bd00d6371f9961dc233add",
  3073. "reference": "e45a7d856bf7b4a7b5bd00d6371f9961dc233add",
  3074. "shasum": "",
  3075. "mirrors": [
  3076. {
  3077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3078. "preferred": true
  3079. }
  3080. ]
  3081. },
  3082. "require": {
  3083. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  3084. "laminas/laminas-zendframework-bridge": "^1.0",
  3085. "php": "^5.6 || ^7.0"
  3086. },
  3087. "replace": {
  3088. "zendframework/zend-mime": "^2.7.2"
  3089. },
  3090. "require-dev": {
  3091. "laminas/laminas-coding-standard": "~1.0.0",
  3092. "laminas/laminas-mail": "^2.6",
  3093. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20"
  3094. },
  3095. "suggest": {
  3096. "laminas/laminas-mail": "Laminas\\Mail component"
  3097. },
  3098. "type": "library",
  3099. "extra": {
  3100. "branch-alias": {
  3101. "dev-master": "2.7.x-dev",
  3102. "dev-develop": "2.8.x-dev"
  3103. }
  3104. },
  3105. "autoload": {
  3106. "psr-4": {
  3107. "Laminas\\Mime\\": "src/"
  3108. }
  3109. },
  3110. "notification-url": "https://packagist.org/downloads/",
  3111. "license": [
  3112. "BSD-3-Clause"
  3113. ],
  3114. "description": "Create and parse MIME messages and parts",
  3115. "homepage": "https://laminas.dev",
  3116. "keywords": [
  3117. "laminas",
  3118. "mime"
  3119. ],
  3120. "support": {
  3121. "chat": "https://laminas.dev/chat",
  3122. "docs": "https://docs.laminas.dev/laminas-mime/",
  3123. "forum": "https://discourse.laminas.dev",
  3124. "issues": "https://github.com/laminas/laminas-mime/issues",
  3125. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  3126. "source": "https://github.com/laminas/laminas-mime"
  3127. },
  3128. "time": "2020-03-29T13:12:07+00:00"
  3129. },
  3130. {
  3131. "name": "laminas/laminas-stdlib",
  3132. "version": "3.3.0",
  3133. "source": {
  3134. "type": "git",
  3135. "url": "https://github.com/laminas/laminas-stdlib.git",
  3136. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  3137. },
  3138. "dist": {
  3139. "type": "zip",
  3140. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  3141. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  3142. "shasum": "",
  3143. "mirrors": [
  3144. {
  3145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3146. "preferred": true
  3147. }
  3148. ]
  3149. },
  3150. "require": {
  3151. "laminas/laminas-zendframework-bridge": "^1.0",
  3152. "php": "^7.3 || ^8.0"
  3153. },
  3154. "replace": {
  3155. "zendframework/zend-stdlib": "^3.2.1"
  3156. },
  3157. "require-dev": {
  3158. "laminas/laminas-coding-standard": "~1.0.0",
  3159. "phpbench/phpbench": "^0.17.1",
  3160. "phpunit/phpunit": "^9.3.7"
  3161. },
  3162. "type": "library",
  3163. "extra": {
  3164. "branch-alias": {
  3165. "dev-master": "3.3.x-dev",
  3166. "dev-develop": "3.4.x-dev"
  3167. }
  3168. },
  3169. "autoload": {
  3170. "psr-4": {
  3171. "Laminas\\Stdlib\\": "src/"
  3172. }
  3173. },
  3174. "notification-url": "https://packagist.org/downloads/",
  3175. "license": [
  3176. "BSD-3-Clause"
  3177. ],
  3178. "description": "SPL extensions, array utilities, error handlers, and more",
  3179. "homepage": "https://laminas.dev",
  3180. "keywords": [
  3181. "laminas",
  3182. "stdlib"
  3183. ],
  3184. "support": {
  3185. "chat": "https://laminas.dev/chat",
  3186. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  3187. "forum": "https://discourse.laminas.dev",
  3188. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  3189. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  3190. "source": "https://github.com/laminas/laminas-stdlib"
  3191. },
  3192. "funding": [
  3193. {
  3194. "url": "https://funding.communitybridge.org/projects/laminas-project",
  3195. "type": "community_bridge"
  3196. }
  3197. ],
  3198. "time": "2020-08-25T09:08:16+00:00"
  3199. },
  3200. {
  3201. "name": "laminas/laminas-zendframework-bridge",
  3202. "version": "1.1.1",
  3203. "source": {
  3204. "type": "git",
  3205. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  3206. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  3207. },
  3208. "dist": {
  3209. "type": "zip",
  3210. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  3211. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  3212. "shasum": "",
  3213. "mirrors": [
  3214. {
  3215. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3216. "preferred": true
  3217. }
  3218. ]
  3219. },
  3220. "require": {
  3221. "php": "^5.6 || ^7.0 || ^8.0"
  3222. },
  3223. "require-dev": {
  3224. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  3225. "squizlabs/php_codesniffer": "^3.5"
  3226. },
  3227. "type": "library",
  3228. "extra": {
  3229. "laminas": {
  3230. "module": "Laminas\\ZendFrameworkBridge"
  3231. }
  3232. },
  3233. "autoload": {
  3234. "files": [
  3235. "src/autoload.php"
  3236. ],
  3237. "psr-4": {
  3238. "Laminas\\ZendFrameworkBridge\\": "src//"
  3239. }
  3240. },
  3241. "notification-url": "https://packagist.org/downloads/",
  3242. "license": [
  3243. "BSD-3-Clause"
  3244. ],
  3245. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  3246. "keywords": [
  3247. "ZendFramework",
  3248. "autoloading",
  3249. "laminas",
  3250. "zf"
  3251. ],
  3252. "support": {
  3253. "forum": "https://discourse.laminas.dev/",
  3254. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  3255. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  3256. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  3257. },
  3258. "funding": [
  3259. {
  3260. "url": "https://funding.communitybridge.org/projects/laminas-project",
  3261. "type": "community_bridge"
  3262. }
  3263. ],
  3264. "time": "2020-09-14T14:23:00+00:00"
  3265. },
  3266. {
  3267. "name": "lcobucci/jwt",
  3268. "version": "3.3.3",
  3269. "source": {
  3270. "type": "git",
  3271. "url": "https://github.com/lcobucci/jwt.git",
  3272. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  3273. },
  3274. "dist": {
  3275. "type": "zip",
  3276. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  3277. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  3278. "shasum": "",
  3279. "mirrors": [
  3280. {
  3281. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3282. "preferred": true
  3283. }
  3284. ]
  3285. },
  3286. "require": {
  3287. "ext-mbstring": "*",
  3288. "ext-openssl": "*",
  3289. "php": "^5.6 || ^7.0"
  3290. },
  3291. "require-dev": {
  3292. "mikey179/vfsstream": "~1.5",
  3293. "phpmd/phpmd": "~2.2",
  3294. "phpunit/php-invoker": "~1.1",
  3295. "phpunit/phpunit": "^5.7 || ^7.3",
  3296. "squizlabs/php_codesniffer": "~2.3"
  3297. },
  3298. "type": "library",
  3299. "extra": {
  3300. "branch-alias": {
  3301. "dev-master": "3.1-dev"
  3302. }
  3303. },
  3304. "autoload": {
  3305. "psr-4": {
  3306. "Lcobucci\\JWT\\": "src"
  3307. }
  3308. },
  3309. "notification-url": "https://packagist.org/downloads/",
  3310. "license": [
  3311. "BSD-3-Clause"
  3312. ],
  3313. "authors": [
  3314. {
  3315. "name": "Luís Otávio Cobucci Oblonczyk",
  3316. "email": "lcobucci@gmail.com",
  3317. "role": "Developer"
  3318. }
  3319. ],
  3320. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3321. "keywords": [
  3322. "JWS",
  3323. "jwt"
  3324. ],
  3325. "support": {
  3326. "issues": "https://github.com/lcobucci/jwt/issues",
  3327. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  3328. },
  3329. "funding": [
  3330. {
  3331. "url": "https://github.com/lcobucci",
  3332. "type": "github"
  3333. },
  3334. {
  3335. "url": "https://www.patreon.com/lcobucci",
  3336. "type": "patreon"
  3337. }
  3338. ],
  3339. "time": "2020-08-20T13:22:28+00:00"
  3340. },
  3341. {
  3342. "name": "markrogoyski/math-php",
  3343. "version": "v0.49.0",
  3344. "source": {
  3345. "type": "git",
  3346. "url": "https://github.com/markrogoyski/math-php.git",
  3347. "reference": "41d56a7542233cbb0489e7982facdb1d88d8c08b"
  3348. },
  3349. "dist": {
  3350. "type": "zip",
  3351. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/41d56a7542233cbb0489e7982facdb1d88d8c08b",
  3352. "reference": "41d56a7542233cbb0489e7982facdb1d88d8c08b",
  3353. "shasum": "",
  3354. "mirrors": [
  3355. {
  3356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3357. "preferred": true
  3358. }
  3359. ]
  3360. },
  3361. "require": {
  3362. "php": ">=7.0.0"
  3363. },
  3364. "require-dev": {
  3365. "php-coveralls/php-coveralls": "^2.0",
  3366. "phploc/phploc": "*",
  3367. "phpmd/phpmd": "^2.6",
  3368. "phpstan/phpstan": "*",
  3369. "phpunit/phpunit": "6.*",
  3370. "squizlabs/php_codesniffer": "2.*"
  3371. },
  3372. "type": "library",
  3373. "autoload": {
  3374. "psr-4": {
  3375. "MathPHP\\": "src/"
  3376. }
  3377. },
  3378. "notification-url": "https://packagist.org/downloads/",
  3379. "license": [
  3380. "MIT"
  3381. ],
  3382. "authors": [
  3383. {
  3384. "name": "Kevin Nowaczyk",
  3385. "role": "Contributor"
  3386. },
  3387. {
  3388. "name": "Jakob Sandberg",
  3389. "role": "Contributor"
  3390. },
  3391. {
  3392. "name": "Mark Rogoyski",
  3393. "email": "mark@rogoyski.com",
  3394. "homepage": "https://github.com/markrogoyski",
  3395. "role": "Lead developer"
  3396. }
  3397. ],
  3398. "description": "Math Library for PHP. Features descriptive statistics and regressions; Continuous and discrete probability distributions; Linear algebra with matrices and vectors, Numerical analysis; special mathematical functions; Algebra",
  3399. "homepage": "https://github.com/markrogoyski/math-php/",
  3400. "keywords": [
  3401. "algebra",
  3402. "combinatorics",
  3403. "distributions",
  3404. "linear algebra",
  3405. "math",
  3406. "mathematics",
  3407. "matrix",
  3408. "numerical analysis",
  3409. "probability",
  3410. "regressions",
  3411. "statistics"
  3412. ],
  3413. "support": {
  3414. "issues": "https://github.com/markrogoyski/math-php/issues",
  3415. "source": "https://github.com/markrogoyski/math-php/tree/develop"
  3416. },
  3417. "time": "2019-02-23T19:49:38+00:00"
  3418. },
  3419. {
  3420. "name": "monolog/monolog",
  3421. "version": "2.1.1",
  3422. "source": {
  3423. "type": "git",
  3424. "url": "https://github.com/Seldaek/monolog.git",
  3425. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  3426. },
  3427. "dist": {
  3428. "type": "zip",
  3429. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  3430. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  3431. "shasum": "",
  3432. "mirrors": [
  3433. {
  3434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3435. "preferred": true
  3436. }
  3437. ]
  3438. },
  3439. "require": {
  3440. "php": ">=7.2",
  3441. "psr/log": "^1.0.1"
  3442. },
  3443. "provide": {
  3444. "psr/log-implementation": "1.0.0"
  3445. },
  3446. "require-dev": {
  3447. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3448. "doctrine/couchdb": "~1.0@dev",
  3449. "elasticsearch/elasticsearch": "^6.0",
  3450. "graylog2/gelf-php": "^1.4.2",
  3451. "php-amqplib/php-amqplib": "~2.4",
  3452. "php-console/php-console": "^3.1.3",
  3453. "php-parallel-lint/php-parallel-lint": "^1.0",
  3454. "phpspec/prophecy": "^1.6.1",
  3455. "phpunit/phpunit": "^8.5",
  3456. "predis/predis": "^1.1",
  3457. "rollbar/rollbar": "^1.3",
  3458. "ruflin/elastica": ">=0.90 <3.0",
  3459. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3460. },
  3461. "suggest": {
  3462. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3463. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3464. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3465. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3466. "ext-mbstring": "Allow to work properly with unicode symbols",
  3467. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3468. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3469. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3470. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3471. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3472. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3473. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3474. },
  3475. "type": "library",
  3476. "extra": {
  3477. "branch-alias": {
  3478. "dev-master": "2.x-dev"
  3479. }
  3480. },
  3481. "autoload": {
  3482. "psr-4": {
  3483. "Monolog\\": "src/Monolog"
  3484. }
  3485. },
  3486. "notification-url": "https://packagist.org/downloads/",
  3487. "license": [
  3488. "MIT"
  3489. ],
  3490. "authors": [
  3491. {
  3492. "name": "Jordi Boggiano",
  3493. "email": "j.boggiano@seld.be",
  3494. "homepage": "http://seld.be"
  3495. }
  3496. ],
  3497. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3498. "homepage": "http://github.com/Seldaek/monolog",
  3499. "keywords": [
  3500. "log",
  3501. "logging",
  3502. "psr-3"
  3503. ],
  3504. "support": {
  3505. "issues": "https://github.com/Seldaek/monolog/issues",
  3506. "source": "https://github.com/Seldaek/monolog/tree/2.1.1"
  3507. },
  3508. "funding": [
  3509. {
  3510. "url": "https://github.com/Seldaek",
  3511. "type": "github"
  3512. },
  3513. {
  3514. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3515. "type": "tidelift"
  3516. }
  3517. ],
  3518. "time": "2020-07-23T08:41:23+00:00"
  3519. },
  3520. {
  3521. "name": "nesbot/carbon",
  3522. "version": "2.41.5",
  3523. "source": {
  3524. "type": "git",
  3525. "url": "https://github.com/briannesbitt/Carbon.git",
  3526. "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee"
  3527. },
  3528. "dist": {
  3529. "type": "zip",
  3530. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c4a9caf97cfc53adfc219043bcecf42bc663acee",
  3531. "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee",
  3532. "shasum": "",
  3533. "mirrors": [
  3534. {
  3535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3536. "preferred": true
  3537. }
  3538. ]
  3539. },
  3540. "require": {
  3541. "ext-json": "*",
  3542. "php": "^7.1.8 || ^8.0",
  3543. "symfony/polyfill-mbstring": "^1.0",
  3544. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3545. },
  3546. "require-dev": {
  3547. "doctrine/orm": "^2.7",
  3548. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3549. "kylekatarnls/multi-tester": "^2.0",
  3550. "phpmd/phpmd": "^2.9",
  3551. "phpstan/extension-installer": "^1.0",
  3552. "phpstan/phpstan": "^0.12.35",
  3553. "phpunit/phpunit": "^7.5 || ^8.0",
  3554. "squizlabs/php_codesniffer": "^3.4"
  3555. },
  3556. "bin": [
  3557. "bin/carbon"
  3558. ],
  3559. "type": "library",
  3560. "extra": {
  3561. "branch-alias": {
  3562. "dev-master": "2.x-dev",
  3563. "dev-3.x": "3.x-dev"
  3564. },
  3565. "laravel": {
  3566. "providers": [
  3567. "Carbon\\Laravel\\ServiceProvider"
  3568. ]
  3569. },
  3570. "phpstan": {
  3571. "includes": [
  3572. "extension.neon"
  3573. ]
  3574. }
  3575. },
  3576. "autoload": {
  3577. "psr-4": {
  3578. "Carbon\\": "src/Carbon/"
  3579. }
  3580. },
  3581. "notification-url": "https://packagist.org/downloads/",
  3582. "license": [
  3583. "MIT"
  3584. ],
  3585. "authors": [
  3586. {
  3587. "name": "Brian Nesbitt",
  3588. "email": "brian@nesbot.com",
  3589. "homepage": "http://nesbot.com"
  3590. },
  3591. {
  3592. "name": "kylekatarnls",
  3593. "homepage": "http://github.com/kylekatarnls"
  3594. }
  3595. ],
  3596. "description": "An API extension for DateTime that supports 281 different languages.",
  3597. "homepage": "http://carbon.nesbot.com",
  3598. "keywords": [
  3599. "date",
  3600. "datetime",
  3601. "time"
  3602. ],
  3603. "support": {
  3604. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3605. "source": "https://github.com/briannesbitt/Carbon"
  3606. },
  3607. "funding": [
  3608. {
  3609. "url": "https://opencollective.com/Carbon",
  3610. "type": "open_collective"
  3611. },
  3612. {
  3613. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3614. "type": "tidelift"
  3615. }
  3616. ],
  3617. "time": "2020-10-23T06:02:30+00:00"
  3618. },
  3619. {
  3620. "name": "nikic/fast-route",
  3621. "version": "v1.3.0",
  3622. "source": {
  3623. "type": "git",
  3624. "url": "https://github.com/nikic/FastRoute.git",
  3625. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  3626. },
  3627. "dist": {
  3628. "type": "zip",
  3629. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  3630. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  3631. "shasum": "",
  3632. "mirrors": [
  3633. {
  3634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3635. "preferred": true
  3636. }
  3637. ]
  3638. },
  3639. "require": {
  3640. "php": ">=5.4.0"
  3641. },
  3642. "require-dev": {
  3643. "phpunit/phpunit": "^4.8.35|~5.7"
  3644. },
  3645. "type": "library",
  3646. "autoload": {
  3647. "psr-4": {
  3648. "FastRoute\\": "src/"
  3649. },
  3650. "files": [
  3651. "src/functions.php"
  3652. ]
  3653. },
  3654. "notification-url": "https://packagist.org/downloads/",
  3655. "license": [
  3656. "BSD-3-Clause"
  3657. ],
  3658. "authors": [
  3659. {
  3660. "name": "Nikita Popov",
  3661. "email": "nikic@php.net"
  3662. }
  3663. ],
  3664. "description": "Fast request router for PHP",
  3665. "keywords": [
  3666. "router",
  3667. "routing"
  3668. ],
  3669. "support": {
  3670. "issues": "https://github.com/nikic/FastRoute/issues",
  3671. "source": "https://github.com/nikic/FastRoute/tree/master"
  3672. },
  3673. "time": "2018-02-13T20:26:39+00:00"
  3674. },
  3675. {
  3676. "name": "nikic/php-parser",
  3677. "version": "v4.10.2",
  3678. "source": {
  3679. "type": "git",
  3680. "url": "https://github.com/nikic/PHP-Parser.git",
  3681. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  3682. },
  3683. "dist": {
  3684. "type": "zip",
  3685. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  3686. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  3687. "shasum": "",
  3688. "mirrors": [
  3689. {
  3690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3691. "preferred": true
  3692. }
  3693. ]
  3694. },
  3695. "require": {
  3696. "ext-tokenizer": "*",
  3697. "php": ">=7.0"
  3698. },
  3699. "require-dev": {
  3700. "ircmaxell/php-yacc": "^0.0.7",
  3701. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3702. },
  3703. "bin": [
  3704. "bin/php-parse"
  3705. ],
  3706. "type": "library",
  3707. "extra": {
  3708. "branch-alias": {
  3709. "dev-master": "4.9-dev"
  3710. }
  3711. },
  3712. "autoload": {
  3713. "psr-4": {
  3714. "PhpParser\\": "lib/PhpParser"
  3715. }
  3716. },
  3717. "notification-url": "https://packagist.org/downloads/",
  3718. "license": [
  3719. "BSD-3-Clause"
  3720. ],
  3721. "authors": [
  3722. {
  3723. "name": "Nikita Popov"
  3724. }
  3725. ],
  3726. "description": "A PHP parser written in PHP",
  3727. "keywords": [
  3728. "parser",
  3729. "php"
  3730. ],
  3731. "support": {
  3732. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3733. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.2"
  3734. },
  3735. "time": "2020-09-26T10:30:38+00:00"
  3736. },
  3737. {
  3738. "name": "opentracing/opentracing",
  3739. "version": "1.0.0-beta5",
  3740. "source": {
  3741. "type": "git",
  3742. "url": "https://github.com/opentracing/opentracing-php.git",
  3743. "reference": "19591d4084e32eaea061eebd9448b62e5ee3ec19"
  3744. },
  3745. "dist": {
  3746. "type": "zip",
  3747. "url": "https://api.github.com/repos/opentracing/opentracing-php/zipball/19591d4084e32eaea061eebd9448b62e5ee3ec19",
  3748. "reference": "19591d4084e32eaea061eebd9448b62e5ee3ec19",
  3749. "shasum": "",
  3750. "mirrors": [
  3751. {
  3752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3753. "preferred": true
  3754. }
  3755. ]
  3756. },
  3757. "require": {
  3758. "php": "^5.6||^7.0"
  3759. },
  3760. "require-dev": {
  3761. "phpunit/phpunit": "~5.7.19",
  3762. "squizlabs/php_codesniffer": "3.*"
  3763. },
  3764. "type": "library",
  3765. "autoload": {
  3766. "psr-4": {
  3767. "OpenTracing\\": "./src/OpenTracing/"
  3768. },
  3769. "files": [
  3770. "./src/OpenTracing/Tags.php",
  3771. "./src/OpenTracing/Formats.php"
  3772. ]
  3773. },
  3774. "notification-url": "https://packagist.org/downloads/",
  3775. "license": [
  3776. "MIT"
  3777. ],
  3778. "authors": [
  3779. {
  3780. "name": "José Carlos Chávez",
  3781. "email": "jcchavezs@gmail.com"
  3782. }
  3783. ],
  3784. "description": "OpenTracing API for PHP",
  3785. "support": {
  3786. "issues": "https://github.com/opentracing/opentracing-php/issues",
  3787. "source": "https://github.com/opentracing/opentracing-php/tree/master"
  3788. },
  3789. "time": "2018-04-13T13:38:46+00:00"
  3790. },
  3791. {
  3792. "name": "openzipkin/zipkin",
  3793. "version": "1.3.6",
  3794. "source": {
  3795. "type": "git",
  3796. "url": "https://github.com/openzipkin/zipkin-php.git",
  3797. "reference": "4e49ac5f4088c52fa01ab2eb09e72e2af6d62a05"
  3798. },
  3799. "dist": {
  3800. "type": "zip",
  3801. "url": "https://api.github.com/repos/openzipkin/zipkin-php/zipball/4e49ac5f4088c52fa01ab2eb09e72e2af6d62a05",
  3802. "reference": "4e49ac5f4088c52fa01ab2eb09e72e2af6d62a05",
  3803. "shasum": "",
  3804. "mirrors": [
  3805. {
  3806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3807. "preferred": true
  3808. }
  3809. ]
  3810. },
  3811. "require": {
  3812. "ext-curl": "*",
  3813. "php": "^5.6 || ^7.0",
  3814. "psr/http-message": "~1.0",
  3815. "psr/log": "^1.0"
  3816. },
  3817. "require-dev": {
  3818. "guzzlehttp/psr7": "^1.4",
  3819. "jcchavezs/httptest": "~0.2",
  3820. "phpunit/phpunit": "~5.7.19",
  3821. "squizlabs/php_codesniffer": "3.*"
  3822. },
  3823. "type": "library",
  3824. "autoload": {
  3825. "psr-4": {
  3826. "Zipkin\\": "./src/Zipkin/"
  3827. },
  3828. "files": [
  3829. "./src/Zipkin/Propagation/Id.php",
  3830. "./src/Zipkin/Timestamp.php",
  3831. "./src/Zipkin/Kind.php",
  3832. "./src/Zipkin/Tags.php",
  3833. "./src/Zipkin/Annotations.php"
  3834. ]
  3835. },
  3836. "notification-url": "https://packagist.org/downloads/",
  3837. "license": [
  3838. "MIT"
  3839. ],
  3840. "authors": [
  3841. {
  3842. "name": "José Carlos Chávez",
  3843. "email": "jcchavezs@gmail.com"
  3844. }
  3845. ],
  3846. "description": "A Zipkin instrumentation for PHP",
  3847. "keywords": [
  3848. "openzipkin",
  3849. "tracing",
  3850. "zipkin"
  3851. ],
  3852. "support": {
  3853. "issues": "https://github.com/openzipkin/zipkin-php/issues",
  3854. "source": "https://github.com/openzipkin/zipkin-php/tree/v1"
  3855. },
  3856. "time": "2020-05-18T22:20:46+00:00"
  3857. },
  3858. {
  3859. "name": "phpdocumentor/reflection-common",
  3860. "version": "2.2.0",
  3861. "source": {
  3862. "type": "git",
  3863. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3864. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3865. },
  3866. "dist": {
  3867. "type": "zip",
  3868. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3869. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3870. "shasum": "",
  3871. "mirrors": [
  3872. {
  3873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3874. "preferred": true
  3875. }
  3876. ]
  3877. },
  3878. "require": {
  3879. "php": "^7.2 || ^8.0"
  3880. },
  3881. "type": "library",
  3882. "extra": {
  3883. "branch-alias": {
  3884. "dev-2.x": "2.x-dev"
  3885. }
  3886. },
  3887. "autoload": {
  3888. "psr-4": {
  3889. "phpDocumentor\\Reflection\\": "src/"
  3890. }
  3891. },
  3892. "notification-url": "https://packagist.org/downloads/",
  3893. "license": [
  3894. "MIT"
  3895. ],
  3896. "authors": [
  3897. {
  3898. "name": "Jaap van Otterdijk",
  3899. "email": "opensource@ijaap.nl"
  3900. }
  3901. ],
  3902. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3903. "homepage": "http://www.phpdoc.org",
  3904. "keywords": [
  3905. "FQSEN",
  3906. "phpDocumentor",
  3907. "phpdoc",
  3908. "reflection",
  3909. "static analysis"
  3910. ],
  3911. "support": {
  3912. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3913. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3914. },
  3915. "time": "2020-06-27T09:03:43+00:00"
  3916. },
  3917. {
  3918. "name": "phpdocumentor/reflection-docblock",
  3919. "version": "5.2.2",
  3920. "source": {
  3921. "type": "git",
  3922. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3923. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  3924. },
  3925. "dist": {
  3926. "type": "zip",
  3927. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  3928. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  3929. "shasum": "",
  3930. "mirrors": [
  3931. {
  3932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3933. "preferred": true
  3934. }
  3935. ]
  3936. },
  3937. "require": {
  3938. "ext-filter": "*",
  3939. "php": "^7.2 || ^8.0",
  3940. "phpdocumentor/reflection-common": "^2.2",
  3941. "phpdocumentor/type-resolver": "^1.3",
  3942. "webmozart/assert": "^1.9.1"
  3943. },
  3944. "require-dev": {
  3945. "mockery/mockery": "~1.3.2"
  3946. },
  3947. "type": "library",
  3948. "extra": {
  3949. "branch-alias": {
  3950. "dev-master": "5.x-dev"
  3951. }
  3952. },
  3953. "autoload": {
  3954. "psr-4": {
  3955. "phpDocumentor\\Reflection\\": "src"
  3956. }
  3957. },
  3958. "notification-url": "https://packagist.org/downloads/",
  3959. "license": [
  3960. "MIT"
  3961. ],
  3962. "authors": [
  3963. {
  3964. "name": "Mike van Riel",
  3965. "email": "me@mikevanriel.com"
  3966. },
  3967. {
  3968. "name": "Jaap van Otterdijk",
  3969. "email": "account@ijaap.nl"
  3970. }
  3971. ],
  3972. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3973. "support": {
  3974. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  3975. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  3976. },
  3977. "time": "2020-09-03T19:13:55+00:00"
  3978. },
  3979. {
  3980. "name": "phpdocumentor/type-resolver",
  3981. "version": "1.4.0",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3985. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  3990. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  3991. "shasum": "",
  3992. "mirrors": [
  3993. {
  3994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3995. "preferred": true
  3996. }
  3997. ]
  3998. },
  3999. "require": {
  4000. "php": "^7.2 || ^8.0",
  4001. "phpdocumentor/reflection-common": "^2.0"
  4002. },
  4003. "require-dev": {
  4004. "ext-tokenizer": "*"
  4005. },
  4006. "type": "library",
  4007. "extra": {
  4008. "branch-alias": {
  4009. "dev-1.x": "1.x-dev"
  4010. }
  4011. },
  4012. "autoload": {
  4013. "psr-4": {
  4014. "phpDocumentor\\Reflection\\": "src"
  4015. }
  4016. },
  4017. "notification-url": "https://packagist.org/downloads/",
  4018. "license": [
  4019. "MIT"
  4020. ],
  4021. "authors": [
  4022. {
  4023. "name": "Mike van Riel",
  4024. "email": "me@mikevanriel.com"
  4025. }
  4026. ],
  4027. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4028. "support": {
  4029. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  4030. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  4031. },
  4032. "time": "2020-09-17T18:55:26+00:00"
  4033. },
  4034. {
  4035. "name": "phper666/jwt-auth",
  4036. "version": "v3.0.4",
  4037. "source": {
  4038. "type": "git",
  4039. "url": "https://github.com/phper666/jwt-auth.git",
  4040. "reference": "48c50257cacb4168b1e1121f6b287708ad00a1e5"
  4041. },
  4042. "dist": {
  4043. "type": "zip",
  4044. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/48c50257cacb4168b1e1121f6b287708ad00a1e5",
  4045. "reference": "48c50257cacb4168b1e1121f6b287708ad00a1e5",
  4046. "shasum": "",
  4047. "mirrors": [
  4048. {
  4049. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4050. "preferred": true
  4051. }
  4052. ]
  4053. },
  4054. "require": {
  4055. "ext-swoole": ">=4.4",
  4056. "lcobucci/jwt": "^3.2",
  4057. "nesbot/carbon": "^1.0 || ^2.0",
  4058. "php": ">=7.2"
  4059. },
  4060. "suggest": {
  4061. "hyperf/cache": "required hyperf/cache ~2.0.0 OR required hyperf/cache ~1.1.0",
  4062. "hyperf/command": "required hyperf/command ~2.0.0 OR required hyperf/command ~1.1.0",
  4063. "hyperf/config": "required hyperf/config ~2.0.0 OR required hyperf/config ~1.1.0",
  4064. "hyperf/di": "required hyperf/di ~2.0.0 OR required hyperf/di ~1.1.0"
  4065. },
  4066. "type": "library",
  4067. "extra": {
  4068. "hyperf": {
  4069. "config": "Phper666\\JWTAuth\\ConfigProvider"
  4070. }
  4071. },
  4072. "autoload": {
  4073. "psr-4": {
  4074. "Phper666\\JWTAuth\\": "src/"
  4075. }
  4076. },
  4077. "notification-url": "https://packagist.org/downloads/",
  4078. "license": [
  4079. "MIT"
  4080. ],
  4081. "authors": [
  4082. {
  4083. "name": "Li Yuzhao",
  4084. "email": "562405704@qq.com",
  4085. "homepage": "https://github.com/phper666/jwt-auth",
  4086. "role": "Developer"
  4087. }
  4088. ],
  4089. "description": "jwt-auth Component",
  4090. "keywords": [
  4091. "hyperf",
  4092. "php"
  4093. ],
  4094. "support": {
  4095. "issues": "https://github.com/phper666/jwt-auth/issues",
  4096. "source": "https://github.com/phper666/jwt-auth/tree/3.0.1"
  4097. },
  4098. "time": "2020-06-22T13:48:02+00:00"
  4099. },
  4100. {
  4101. "name": "phpoption/phpoption",
  4102. "version": "1.7.5",
  4103. "source": {
  4104. "type": "git",
  4105. "url": "https://github.com/schmittjoh/php-option.git",
  4106. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  4107. },
  4108. "dist": {
  4109. "type": "zip",
  4110. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4111. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4112. "shasum": "",
  4113. "mirrors": [
  4114. {
  4115. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4116. "preferred": true
  4117. }
  4118. ]
  4119. },
  4120. "require": {
  4121. "php": "^5.5.9 || ^7.0 || ^8.0"
  4122. },
  4123. "require-dev": {
  4124. "bamarni/composer-bin-plugin": "^1.4.1",
  4125. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  4126. },
  4127. "type": "library",
  4128. "extra": {
  4129. "branch-alias": {
  4130. "dev-master": "1.7-dev"
  4131. }
  4132. },
  4133. "autoload": {
  4134. "psr-4": {
  4135. "PhpOption\\": "src/PhpOption/"
  4136. }
  4137. },
  4138. "notification-url": "https://packagist.org/downloads/",
  4139. "license": [
  4140. "Apache-2.0"
  4141. ],
  4142. "authors": [
  4143. {
  4144. "name": "Johannes M. Schmitt",
  4145. "email": "schmittjoh@gmail.com"
  4146. },
  4147. {
  4148. "name": "Graham Campbell",
  4149. "email": "graham@alt-three.com"
  4150. }
  4151. ],
  4152. "description": "Option Type for PHP",
  4153. "keywords": [
  4154. "language",
  4155. "option",
  4156. "php",
  4157. "type"
  4158. ],
  4159. "support": {
  4160. "issues": "https://github.com/schmittjoh/php-option/issues",
  4161. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  4162. },
  4163. "funding": [
  4164. {
  4165. "url": "https://github.com/GrahamCampbell",
  4166. "type": "github"
  4167. },
  4168. {
  4169. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4170. "type": "tidelift"
  4171. }
  4172. ],
  4173. "time": "2020-07-20T17:29:33+00:00"
  4174. },
  4175. {
  4176. "name": "psr/container",
  4177. "version": "1.0.0",
  4178. "source": {
  4179. "type": "git",
  4180. "url": "https://github.com/php-fig/container.git",
  4181. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  4182. },
  4183. "dist": {
  4184. "type": "zip",
  4185. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  4186. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  4187. "shasum": "",
  4188. "mirrors": [
  4189. {
  4190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4191. "preferred": true
  4192. }
  4193. ]
  4194. },
  4195. "require": {
  4196. "php": ">=5.3.0"
  4197. },
  4198. "type": "library",
  4199. "extra": {
  4200. "branch-alias": {
  4201. "dev-master": "1.0.x-dev"
  4202. }
  4203. },
  4204. "autoload": {
  4205. "psr-4": {
  4206. "Psr\\Container\\": "src/"
  4207. }
  4208. },
  4209. "notification-url": "https://packagist.org/downloads/",
  4210. "license": [
  4211. "MIT"
  4212. ],
  4213. "authors": [
  4214. {
  4215. "name": "PHP-FIG",
  4216. "homepage": "http://www.php-fig.org/"
  4217. }
  4218. ],
  4219. "description": "Common Container Interface (PHP FIG PSR-11)",
  4220. "homepage": "https://github.com/php-fig/container",
  4221. "keywords": [
  4222. "PSR-11",
  4223. "container",
  4224. "container-interface",
  4225. "container-interop",
  4226. "psr"
  4227. ],
  4228. "support": {
  4229. "issues": "https://github.com/php-fig/container/issues",
  4230. "source": "https://github.com/php-fig/container/tree/master"
  4231. },
  4232. "time": "2017-02-14T16:28:37+00:00"
  4233. },
  4234. {
  4235. "name": "psr/event-dispatcher",
  4236. "version": "1.0.0",
  4237. "source": {
  4238. "type": "git",
  4239. "url": "https://github.com/php-fig/event-dispatcher.git",
  4240. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4241. },
  4242. "dist": {
  4243. "type": "zip",
  4244. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4245. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4246. "shasum": "",
  4247. "mirrors": [
  4248. {
  4249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4250. "preferred": true
  4251. }
  4252. ]
  4253. },
  4254. "require": {
  4255. "php": ">=7.2.0"
  4256. },
  4257. "type": "library",
  4258. "extra": {
  4259. "branch-alias": {
  4260. "dev-master": "1.0.x-dev"
  4261. }
  4262. },
  4263. "autoload": {
  4264. "psr-4": {
  4265. "Psr\\EventDispatcher\\": "src/"
  4266. }
  4267. },
  4268. "notification-url": "https://packagist.org/downloads/",
  4269. "license": [
  4270. "MIT"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "PHP-FIG",
  4275. "homepage": "http://www.php-fig.org/"
  4276. }
  4277. ],
  4278. "description": "Standard interfaces for event handling.",
  4279. "keywords": [
  4280. "events",
  4281. "psr",
  4282. "psr-14"
  4283. ],
  4284. "support": {
  4285. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4286. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4287. },
  4288. "time": "2019-01-08T18:20:26+00:00"
  4289. },
  4290. {
  4291. "name": "psr/http-message",
  4292. "version": "1.0.1",
  4293. "source": {
  4294. "type": "git",
  4295. "url": "https://github.com/php-fig/http-message.git",
  4296. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4297. },
  4298. "dist": {
  4299. "type": "zip",
  4300. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4301. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4302. "shasum": "",
  4303. "mirrors": [
  4304. {
  4305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4306. "preferred": true
  4307. }
  4308. ]
  4309. },
  4310. "require": {
  4311. "php": ">=5.3.0"
  4312. },
  4313. "type": "library",
  4314. "extra": {
  4315. "branch-alias": {
  4316. "dev-master": "1.0.x-dev"
  4317. }
  4318. },
  4319. "autoload": {
  4320. "psr-4": {
  4321. "Psr\\Http\\Message\\": "src/"
  4322. }
  4323. },
  4324. "notification-url": "https://packagist.org/downloads/",
  4325. "license": [
  4326. "MIT"
  4327. ],
  4328. "authors": [
  4329. {
  4330. "name": "PHP-FIG",
  4331. "homepage": "http://www.php-fig.org/"
  4332. }
  4333. ],
  4334. "description": "Common interface for HTTP messages",
  4335. "homepage": "https://github.com/php-fig/http-message",
  4336. "keywords": [
  4337. "http",
  4338. "http-message",
  4339. "psr",
  4340. "psr-7",
  4341. "request",
  4342. "response"
  4343. ],
  4344. "support": {
  4345. "source": "https://github.com/php-fig/http-message/tree/master"
  4346. },
  4347. "time": "2016-08-06T14:39:51+00:00"
  4348. },
  4349. {
  4350. "name": "psr/http-server-handler",
  4351. "version": "1.0.1",
  4352. "source": {
  4353. "type": "git",
  4354. "url": "https://github.com/php-fig/http-server-handler.git",
  4355. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  4356. },
  4357. "dist": {
  4358. "type": "zip",
  4359. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  4360. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  4361. "shasum": "",
  4362. "mirrors": [
  4363. {
  4364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4365. "preferred": true
  4366. }
  4367. ]
  4368. },
  4369. "require": {
  4370. "php": ">=7.0",
  4371. "psr/http-message": "^1.0"
  4372. },
  4373. "type": "library",
  4374. "extra": {
  4375. "branch-alias": {
  4376. "dev-master": "1.0.x-dev"
  4377. }
  4378. },
  4379. "autoload": {
  4380. "psr-4": {
  4381. "Psr\\Http\\Server\\": "src/"
  4382. }
  4383. },
  4384. "notification-url": "https://packagist.org/downloads/",
  4385. "license": [
  4386. "MIT"
  4387. ],
  4388. "authors": [
  4389. {
  4390. "name": "PHP-FIG",
  4391. "homepage": "http://www.php-fig.org/"
  4392. }
  4393. ],
  4394. "description": "Common interface for HTTP server-side request handler",
  4395. "keywords": [
  4396. "handler",
  4397. "http",
  4398. "http-interop",
  4399. "psr",
  4400. "psr-15",
  4401. "psr-7",
  4402. "request",
  4403. "response",
  4404. "server"
  4405. ],
  4406. "support": {
  4407. "issues": "https://github.com/php-fig/http-server-handler/issues",
  4408. "source": "https://github.com/php-fig/http-server-handler/tree/master"
  4409. },
  4410. "time": "2018-10-30T16:46:14+00:00"
  4411. },
  4412. {
  4413. "name": "psr/http-server-middleware",
  4414. "version": "1.0.1",
  4415. "source": {
  4416. "type": "git",
  4417. "url": "https://github.com/php-fig/http-server-middleware.git",
  4418. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  4419. },
  4420. "dist": {
  4421. "type": "zip",
  4422. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  4423. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  4424. "shasum": "",
  4425. "mirrors": [
  4426. {
  4427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4428. "preferred": true
  4429. }
  4430. ]
  4431. },
  4432. "require": {
  4433. "php": ">=7.0",
  4434. "psr/http-message": "^1.0",
  4435. "psr/http-server-handler": "^1.0"
  4436. },
  4437. "type": "library",
  4438. "extra": {
  4439. "branch-alias": {
  4440. "dev-master": "1.0.x-dev"
  4441. }
  4442. },
  4443. "autoload": {
  4444. "psr-4": {
  4445. "Psr\\Http\\Server\\": "src/"
  4446. }
  4447. },
  4448. "notification-url": "https://packagist.org/downloads/",
  4449. "license": [
  4450. "MIT"
  4451. ],
  4452. "authors": [
  4453. {
  4454. "name": "PHP-FIG",
  4455. "homepage": "http://www.php-fig.org/"
  4456. }
  4457. ],
  4458. "description": "Common interface for HTTP server-side middleware",
  4459. "keywords": [
  4460. "http",
  4461. "http-interop",
  4462. "middleware",
  4463. "psr",
  4464. "psr-15",
  4465. "psr-7",
  4466. "request",
  4467. "response"
  4468. ],
  4469. "support": {
  4470. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  4471. "source": "https://github.com/php-fig/http-server-middleware/tree/master"
  4472. },
  4473. "time": "2018-10-30T17:12:04+00:00"
  4474. },
  4475. {
  4476. "name": "psr/log",
  4477. "version": "1.1.3",
  4478. "source": {
  4479. "type": "git",
  4480. "url": "https://github.com/php-fig/log.git",
  4481. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  4482. },
  4483. "dist": {
  4484. "type": "zip",
  4485. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  4486. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4487. "shasum": "",
  4488. "mirrors": [
  4489. {
  4490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4491. "preferred": true
  4492. }
  4493. ]
  4494. },
  4495. "require": {
  4496. "php": ">=5.3.0"
  4497. },
  4498. "type": "library",
  4499. "extra": {
  4500. "branch-alias": {
  4501. "dev-master": "1.1.x-dev"
  4502. }
  4503. },
  4504. "autoload": {
  4505. "psr-4": {
  4506. "Psr\\Log\\": "Psr/Log/"
  4507. }
  4508. },
  4509. "notification-url": "https://packagist.org/downloads/",
  4510. "license": [
  4511. "MIT"
  4512. ],
  4513. "authors": [
  4514. {
  4515. "name": "PHP-FIG",
  4516. "homepage": "http://www.php-fig.org/"
  4517. }
  4518. ],
  4519. "description": "Common interface for logging libraries",
  4520. "homepage": "https://github.com/php-fig/log",
  4521. "keywords": [
  4522. "log",
  4523. "psr",
  4524. "psr-3"
  4525. ],
  4526. "support": {
  4527. "source": "https://github.com/php-fig/log/tree/1.1.3"
  4528. },
  4529. "time": "2020-03-23T09:12:05+00:00"
  4530. },
  4531. {
  4532. "name": "psr/simple-cache",
  4533. "version": "1.0.1",
  4534. "source": {
  4535. "type": "git",
  4536. "url": "https://github.com/php-fig/simple-cache.git",
  4537. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4538. },
  4539. "dist": {
  4540. "type": "zip",
  4541. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4542. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4543. "shasum": "",
  4544. "mirrors": [
  4545. {
  4546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4547. "preferred": true
  4548. }
  4549. ]
  4550. },
  4551. "require": {
  4552. "php": ">=5.3.0"
  4553. },
  4554. "type": "library",
  4555. "extra": {
  4556. "branch-alias": {
  4557. "dev-master": "1.0.x-dev"
  4558. }
  4559. },
  4560. "autoload": {
  4561. "psr-4": {
  4562. "Psr\\SimpleCache\\": "src/"
  4563. }
  4564. },
  4565. "notification-url": "https://packagist.org/downloads/",
  4566. "license": [
  4567. "MIT"
  4568. ],
  4569. "authors": [
  4570. {
  4571. "name": "PHP-FIG",
  4572. "homepage": "http://www.php-fig.org/"
  4573. }
  4574. ],
  4575. "description": "Common interfaces for simple caching",
  4576. "keywords": [
  4577. "cache",
  4578. "caching",
  4579. "psr",
  4580. "psr-16",
  4581. "simple-cache"
  4582. ],
  4583. "support": {
  4584. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4585. },
  4586. "time": "2017-10-23T01:57:42+00:00"
  4587. },
  4588. {
  4589. "name": "ralouphie/getallheaders",
  4590. "version": "3.0.3",
  4591. "source": {
  4592. "type": "git",
  4593. "url": "https://github.com/ralouphie/getallheaders.git",
  4594. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4595. },
  4596. "dist": {
  4597. "type": "zip",
  4598. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4599. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4600. "shasum": "",
  4601. "mirrors": [
  4602. {
  4603. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4604. "preferred": true
  4605. }
  4606. ]
  4607. },
  4608. "require": {
  4609. "php": ">=5.6"
  4610. },
  4611. "require-dev": {
  4612. "php-coveralls/php-coveralls": "^2.1",
  4613. "phpunit/phpunit": "^5 || ^6.5"
  4614. },
  4615. "type": "library",
  4616. "autoload": {
  4617. "files": [
  4618. "src/getallheaders.php"
  4619. ]
  4620. },
  4621. "notification-url": "https://packagist.org/downloads/",
  4622. "license": [
  4623. "MIT"
  4624. ],
  4625. "authors": [
  4626. {
  4627. "name": "Ralph Khattar",
  4628. "email": "ralph.khattar@gmail.com"
  4629. }
  4630. ],
  4631. "description": "A polyfill for getallheaders.",
  4632. "support": {
  4633. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4634. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4635. },
  4636. "time": "2019-03-08T08:55:37+00:00"
  4637. },
  4638. {
  4639. "name": "roave/better-reflection",
  4640. "version": "4.3.0",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://github.com/Roave/BetterReflection.git",
  4644. "reference": "aa017e698b47feed410721f3d20e2bacfcba59d5"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://api.github.com/repos/Roave/BetterReflection/zipball/aa017e698b47feed410721f3d20e2bacfcba59d5",
  4649. "reference": "aa017e698b47feed410721f3d20e2bacfcba59d5",
  4650. "shasum": "",
  4651. "mirrors": [
  4652. {
  4653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4654. "preferred": true
  4655. }
  4656. ]
  4657. },
  4658. "require": {
  4659. "ext-json": "*",
  4660. "jetbrains/phpstorm-stubs": "2019.3",
  4661. "nikic/php-parser": "^4.4.0",
  4662. "php": ">=7.2.0,<7.5.0",
  4663. "phpdocumentor/reflection-docblock": "^5.1.0",
  4664. "phpdocumentor/type-resolver": "^1.1.0",
  4665. "roave/signature": "^1.0"
  4666. },
  4667. "require-dev": {
  4668. "doctrine/coding-standard": "^7.0.2",
  4669. "phpstan/phpstan": "^0.12.25",
  4670. "phpunit/phpunit": "^8.5.4",
  4671. "vimeo/psalm": "3.11.2"
  4672. },
  4673. "suggest": {
  4674. "composer/composer": "Required to use the ComposerSourceLocator"
  4675. },
  4676. "type": "library",
  4677. "extra": {
  4678. "branch-alias": {
  4679. "dev-master": "4.0-dev"
  4680. }
  4681. },
  4682. "autoload": {
  4683. "psr-4": {
  4684. "Roave\\BetterReflection\\": "src"
  4685. }
  4686. },
  4687. "notification-url": "https://packagist.org/downloads/",
  4688. "license": [
  4689. "MIT"
  4690. ],
  4691. "authors": [
  4692. {
  4693. "name": "James Titcumb",
  4694. "email": "james@asgrim.com",
  4695. "homepage": "https://github.com/asgrim"
  4696. },
  4697. {
  4698. "name": "Marco Pivetta",
  4699. "email": "ocramius@gmail.com",
  4700. "homepage": "https://ocramius.github.io/"
  4701. },
  4702. {
  4703. "name": "Gary Hockin",
  4704. "email": "gary@roave.com",
  4705. "homepage": "https://github.com/geeh"
  4706. },
  4707. {
  4708. "name": "Jaroslav Hanslík",
  4709. "email": "kukulich@kukulich.cz",
  4710. "homepage": "https://github.com/kukulich"
  4711. }
  4712. ],
  4713. "description": "Better Reflection - an improved code reflection API",
  4714. "support": {
  4715. "issues": "https://github.com/Roave/BetterReflection/issues",
  4716. "source": "https://github.com/Roave/BetterReflection/tree/4.3.0"
  4717. },
  4718. "time": "2020-05-28T14:10:32+00:00"
  4719. },
  4720. {
  4721. "name": "roave/signature",
  4722. "version": "1.2.0",
  4723. "source": {
  4724. "type": "git",
  4725. "url": "https://github.com/Roave/Signature.git",
  4726. "reference": "577ee14d2abaeb315a5cd2d86d7e3df46a7dac56"
  4727. },
  4728. "dist": {
  4729. "type": "zip",
  4730. "url": "https://api.github.com/repos/Roave/Signature/zipball/577ee14d2abaeb315a5cd2d86d7e3df46a7dac56",
  4731. "reference": "577ee14d2abaeb315a5cd2d86d7e3df46a7dac56",
  4732. "shasum": "",
  4733. "mirrors": [
  4734. {
  4735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4736. "preferred": true
  4737. }
  4738. ]
  4739. },
  4740. "require": {
  4741. "php": "^7.3 || ^7.4"
  4742. },
  4743. "require-dev": {
  4744. "doctrine/coding-standard": "^8.1",
  4745. "infection/infection": "^0.17.5",
  4746. "phpunit/phpunit": "^9.3",
  4747. "vimeo/psalm": "^3.16"
  4748. },
  4749. "type": "library",
  4750. "autoload": {
  4751. "psr-4": {
  4752. "Roave\\Signature\\": "src"
  4753. }
  4754. },
  4755. "notification-url": "https://packagist.org/downloads/",
  4756. "license": [
  4757. "MIT"
  4758. ],
  4759. "description": "Sign and verify stuff",
  4760. "support": {
  4761. "issues": "https://github.com/Roave/Signature/issues",
  4762. "source": "https://github.com/Roave/Signature/tree/1.2.0"
  4763. },
  4764. "time": "2020-10-01T08:18:39+00:00"
  4765. },
  4766. {
  4767. "name": "symfony/console",
  4768. "version": "v5.1.8",
  4769. "source": {
  4770. "type": "git",
  4771. "url": "https://github.com/symfony/console.git",
  4772. "reference": "e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e"
  4773. },
  4774. "dist": {
  4775. "type": "zip",
  4776. "url": "https://api.github.com/repos/symfony/console/zipball/e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e",
  4777. "reference": "e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e",
  4778. "shasum": "",
  4779. "mirrors": [
  4780. {
  4781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4782. "preferred": true
  4783. }
  4784. ]
  4785. },
  4786. "require": {
  4787. "php": ">=7.2.5",
  4788. "symfony/polyfill-mbstring": "~1.0",
  4789. "symfony/polyfill-php73": "^1.8",
  4790. "symfony/polyfill-php80": "^1.15",
  4791. "symfony/service-contracts": "^1.1|^2",
  4792. "symfony/string": "^5.1"
  4793. },
  4794. "conflict": {
  4795. "symfony/dependency-injection": "<4.4",
  4796. "symfony/dotenv": "<5.1",
  4797. "symfony/event-dispatcher": "<4.4",
  4798. "symfony/lock": "<4.4",
  4799. "symfony/process": "<4.4"
  4800. },
  4801. "provide": {
  4802. "psr/log-implementation": "1.0"
  4803. },
  4804. "require-dev": {
  4805. "psr/log": "~1.0",
  4806. "symfony/config": "^4.4|^5.0",
  4807. "symfony/dependency-injection": "^4.4|^5.0",
  4808. "symfony/event-dispatcher": "^4.4|^5.0",
  4809. "symfony/lock": "^4.4|^5.0",
  4810. "symfony/process": "^4.4|^5.0",
  4811. "symfony/var-dumper": "^4.4|^5.0"
  4812. },
  4813. "suggest": {
  4814. "psr/log": "For using the console logger",
  4815. "symfony/event-dispatcher": "",
  4816. "symfony/lock": "",
  4817. "symfony/process": ""
  4818. },
  4819. "type": "library",
  4820. "autoload": {
  4821. "psr-4": {
  4822. "Symfony\\Component\\Console\\": ""
  4823. },
  4824. "exclude-from-classmap": [
  4825. "/Tests/"
  4826. ]
  4827. },
  4828. "notification-url": "https://packagist.org/downloads/",
  4829. "license": [
  4830. "MIT"
  4831. ],
  4832. "authors": [
  4833. {
  4834. "name": "Fabien Potencier",
  4835. "email": "fabien@symfony.com"
  4836. },
  4837. {
  4838. "name": "Symfony Community",
  4839. "homepage": "https://symfony.com/contributors"
  4840. }
  4841. ],
  4842. "description": "Symfony Console Component",
  4843. "homepage": "https://symfony.com",
  4844. "support": {
  4845. "source": "https://github.com/symfony/console/tree/v5.1.8"
  4846. },
  4847. "funding": [
  4848. {
  4849. "url": "https://symfony.com/sponsor",
  4850. "type": "custom"
  4851. },
  4852. {
  4853. "url": "https://github.com/fabpot",
  4854. "type": "github"
  4855. },
  4856. {
  4857. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4858. "type": "tidelift"
  4859. }
  4860. ],
  4861. "time": "2020-10-24T12:01:57+00:00"
  4862. },
  4863. {
  4864. "name": "symfony/finder",
  4865. "version": "v5.1.8",
  4866. "source": {
  4867. "type": "git",
  4868. "url": "https://github.com/symfony/finder.git",
  4869. "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0"
  4870. },
  4871. "dist": {
  4872. "type": "zip",
  4873. "url": "https://api.github.com/repos/symfony/finder/zipball/e70eb5a69c2ff61ea135a13d2266e8914a67b3a0",
  4874. "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0",
  4875. "shasum": "",
  4876. "mirrors": [
  4877. {
  4878. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4879. "preferred": true
  4880. }
  4881. ]
  4882. },
  4883. "require": {
  4884. "php": ">=7.2.5"
  4885. },
  4886. "type": "library",
  4887. "autoload": {
  4888. "psr-4": {
  4889. "Symfony\\Component\\Finder\\": ""
  4890. },
  4891. "exclude-from-classmap": [
  4892. "/Tests/"
  4893. ]
  4894. },
  4895. "notification-url": "https://packagist.org/downloads/",
  4896. "license": [
  4897. "MIT"
  4898. ],
  4899. "authors": [
  4900. {
  4901. "name": "Fabien Potencier",
  4902. "email": "fabien@symfony.com"
  4903. },
  4904. {
  4905. "name": "Symfony Community",
  4906. "homepage": "https://symfony.com/contributors"
  4907. }
  4908. ],
  4909. "description": "Symfony Finder Component",
  4910. "homepage": "https://symfony.com",
  4911. "support": {
  4912. "source": "https://github.com/symfony/finder/tree/v5.1.8"
  4913. },
  4914. "funding": [
  4915. {
  4916. "url": "https://symfony.com/sponsor",
  4917. "type": "custom"
  4918. },
  4919. {
  4920. "url": "https://github.com/fabpot",
  4921. "type": "github"
  4922. },
  4923. {
  4924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4925. "type": "tidelift"
  4926. }
  4927. ],
  4928. "time": "2020-10-24T12:01:57+00:00"
  4929. },
  4930. {
  4931. "name": "symfony/polyfill-ctype",
  4932. "version": "v1.20.0",
  4933. "source": {
  4934. "type": "git",
  4935. "url": "https://github.com/symfony/polyfill-ctype.git",
  4936. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  4937. },
  4938. "dist": {
  4939. "type": "zip",
  4940. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  4941. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  4942. "shasum": "",
  4943. "mirrors": [
  4944. {
  4945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4946. "preferred": true
  4947. }
  4948. ]
  4949. },
  4950. "require": {
  4951. "php": ">=7.1"
  4952. },
  4953. "suggest": {
  4954. "ext-ctype": "For best performance"
  4955. },
  4956. "type": "library",
  4957. "extra": {
  4958. "branch-alias": {
  4959. "dev-main": "1.20-dev"
  4960. },
  4961. "thanks": {
  4962. "name": "symfony/polyfill",
  4963. "url": "https://github.com/symfony/polyfill"
  4964. }
  4965. },
  4966. "autoload": {
  4967. "psr-4": {
  4968. "Symfony\\Polyfill\\Ctype\\": ""
  4969. },
  4970. "files": [
  4971. "bootstrap.php"
  4972. ]
  4973. },
  4974. "notification-url": "https://packagist.org/downloads/",
  4975. "license": [
  4976. "MIT"
  4977. ],
  4978. "authors": [
  4979. {
  4980. "name": "Gert de Pagter",
  4981. "email": "BackEndTea@gmail.com"
  4982. },
  4983. {
  4984. "name": "Symfony Community",
  4985. "homepage": "https://symfony.com/contributors"
  4986. }
  4987. ],
  4988. "description": "Symfony polyfill for ctype functions",
  4989. "homepage": "https://symfony.com",
  4990. "keywords": [
  4991. "compatibility",
  4992. "ctype",
  4993. "polyfill",
  4994. "portable"
  4995. ],
  4996. "support": {
  4997. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  4998. },
  4999. "funding": [
  5000. {
  5001. "url": "https://symfony.com/sponsor",
  5002. "type": "custom"
  5003. },
  5004. {
  5005. "url": "https://github.com/fabpot",
  5006. "type": "github"
  5007. },
  5008. {
  5009. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5010. "type": "tidelift"
  5011. }
  5012. ],
  5013. "time": "2020-10-23T14:02:19+00:00"
  5014. },
  5015. {
  5016. "name": "symfony/polyfill-intl-grapheme",
  5017. "version": "v1.20.0",
  5018. "source": {
  5019. "type": "git",
  5020. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5021. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
  5022. },
  5023. "dist": {
  5024. "type": "zip",
  5025. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5026. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5027. "shasum": "",
  5028. "mirrors": [
  5029. {
  5030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5031. "preferred": true
  5032. }
  5033. ]
  5034. },
  5035. "require": {
  5036. "php": ">=7.1"
  5037. },
  5038. "suggest": {
  5039. "ext-intl": "For best performance"
  5040. },
  5041. "type": "library",
  5042. "extra": {
  5043. "branch-alias": {
  5044. "dev-main": "1.20-dev"
  5045. },
  5046. "thanks": {
  5047. "name": "symfony/polyfill",
  5048. "url": "https://github.com/symfony/polyfill"
  5049. }
  5050. },
  5051. "autoload": {
  5052. "psr-4": {
  5053. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5054. },
  5055. "files": [
  5056. "bootstrap.php"
  5057. ]
  5058. },
  5059. "notification-url": "https://packagist.org/downloads/",
  5060. "license": [
  5061. "MIT"
  5062. ],
  5063. "authors": [
  5064. {
  5065. "name": "Nicolas Grekas",
  5066. "email": "p@tchwork.com"
  5067. },
  5068. {
  5069. "name": "Symfony Community",
  5070. "homepage": "https://symfony.com/contributors"
  5071. }
  5072. ],
  5073. "description": "Symfony polyfill for intl's grapheme_* functions",
  5074. "homepage": "https://symfony.com",
  5075. "keywords": [
  5076. "compatibility",
  5077. "grapheme",
  5078. "intl",
  5079. "polyfill",
  5080. "portable",
  5081. "shim"
  5082. ],
  5083. "support": {
  5084. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
  5085. },
  5086. "funding": [
  5087. {
  5088. "url": "https://symfony.com/sponsor",
  5089. "type": "custom"
  5090. },
  5091. {
  5092. "url": "https://github.com/fabpot",
  5093. "type": "github"
  5094. },
  5095. {
  5096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5097. "type": "tidelift"
  5098. }
  5099. ],
  5100. "time": "2020-10-23T14:02:19+00:00"
  5101. },
  5102. {
  5103. "name": "symfony/polyfill-intl-idn",
  5104. "version": "v1.20.0",
  5105. "source": {
  5106. "type": "git",
  5107. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5108. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  5109. },
  5110. "dist": {
  5111. "type": "zip",
  5112. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5113. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5114. "shasum": "",
  5115. "mirrors": [
  5116. {
  5117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5118. "preferred": true
  5119. }
  5120. ]
  5121. },
  5122. "require": {
  5123. "php": ">=7.1",
  5124. "symfony/polyfill-intl-normalizer": "^1.10",
  5125. "symfony/polyfill-php72": "^1.10"
  5126. },
  5127. "suggest": {
  5128. "ext-intl": "For best performance"
  5129. },
  5130. "type": "library",
  5131. "extra": {
  5132. "branch-alias": {
  5133. "dev-main": "1.20-dev"
  5134. },
  5135. "thanks": {
  5136. "name": "symfony/polyfill",
  5137. "url": "https://github.com/symfony/polyfill"
  5138. }
  5139. },
  5140. "autoload": {
  5141. "psr-4": {
  5142. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5143. },
  5144. "files": [
  5145. "bootstrap.php"
  5146. ]
  5147. },
  5148. "notification-url": "https://packagist.org/downloads/",
  5149. "license": [
  5150. "MIT"
  5151. ],
  5152. "authors": [
  5153. {
  5154. "name": "Laurent Bassin",
  5155. "email": "laurent@bassin.info"
  5156. },
  5157. {
  5158. "name": "Trevor Rowbotham",
  5159. "email": "trevor.rowbotham@pm.me"
  5160. },
  5161. {
  5162. "name": "Symfony Community",
  5163. "homepage": "https://symfony.com/contributors"
  5164. }
  5165. ],
  5166. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5167. "homepage": "https://symfony.com",
  5168. "keywords": [
  5169. "compatibility",
  5170. "idn",
  5171. "intl",
  5172. "polyfill",
  5173. "portable",
  5174. "shim"
  5175. ],
  5176. "support": {
  5177. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  5178. },
  5179. "funding": [
  5180. {
  5181. "url": "https://symfony.com/sponsor",
  5182. "type": "custom"
  5183. },
  5184. {
  5185. "url": "https://github.com/fabpot",
  5186. "type": "github"
  5187. },
  5188. {
  5189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5190. "type": "tidelift"
  5191. }
  5192. ],
  5193. "time": "2020-10-23T14:02:19+00:00"
  5194. },
  5195. {
  5196. "name": "symfony/polyfill-intl-normalizer",
  5197. "version": "v1.20.0",
  5198. "source": {
  5199. "type": "git",
  5200. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5201. "reference": "727d1096295d807c309fb01a851577302394c897"
  5202. },
  5203. "dist": {
  5204. "type": "zip",
  5205. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  5206. "reference": "727d1096295d807c309fb01a851577302394c897",
  5207. "shasum": "",
  5208. "mirrors": [
  5209. {
  5210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5211. "preferred": true
  5212. }
  5213. ]
  5214. },
  5215. "require": {
  5216. "php": ">=7.1"
  5217. },
  5218. "suggest": {
  5219. "ext-intl": "For best performance"
  5220. },
  5221. "type": "library",
  5222. "extra": {
  5223. "branch-alias": {
  5224. "dev-main": "1.20-dev"
  5225. },
  5226. "thanks": {
  5227. "name": "symfony/polyfill",
  5228. "url": "https://github.com/symfony/polyfill"
  5229. }
  5230. },
  5231. "autoload": {
  5232. "psr-4": {
  5233. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5234. },
  5235. "files": [
  5236. "bootstrap.php"
  5237. ],
  5238. "classmap": [
  5239. "Resources/stubs"
  5240. ]
  5241. },
  5242. "notification-url": "https://packagist.org/downloads/",
  5243. "license": [
  5244. "MIT"
  5245. ],
  5246. "authors": [
  5247. {
  5248. "name": "Nicolas Grekas",
  5249. "email": "p@tchwork.com"
  5250. },
  5251. {
  5252. "name": "Symfony Community",
  5253. "homepage": "https://symfony.com/contributors"
  5254. }
  5255. ],
  5256. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5257. "homepage": "https://symfony.com",
  5258. "keywords": [
  5259. "compatibility",
  5260. "intl",
  5261. "normalizer",
  5262. "polyfill",
  5263. "portable",
  5264. "shim"
  5265. ],
  5266. "support": {
  5267. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  5268. },
  5269. "funding": [
  5270. {
  5271. "url": "https://symfony.com/sponsor",
  5272. "type": "custom"
  5273. },
  5274. {
  5275. "url": "https://github.com/fabpot",
  5276. "type": "github"
  5277. },
  5278. {
  5279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5280. "type": "tidelift"
  5281. }
  5282. ],
  5283. "time": "2020-10-23T14:02:19+00:00"
  5284. },
  5285. {
  5286. "name": "symfony/polyfill-mbstring",
  5287. "version": "v1.20.0",
  5288. "source": {
  5289. "type": "git",
  5290. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5291. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  5292. },
  5293. "dist": {
  5294. "type": "zip",
  5295. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  5296. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  5297. "shasum": "",
  5298. "mirrors": [
  5299. {
  5300. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5301. "preferred": true
  5302. }
  5303. ]
  5304. },
  5305. "require": {
  5306. "php": ">=7.1"
  5307. },
  5308. "suggest": {
  5309. "ext-mbstring": "For best performance"
  5310. },
  5311. "type": "library",
  5312. "extra": {
  5313. "branch-alias": {
  5314. "dev-main": "1.20-dev"
  5315. },
  5316. "thanks": {
  5317. "name": "symfony/polyfill",
  5318. "url": "https://github.com/symfony/polyfill"
  5319. }
  5320. },
  5321. "autoload": {
  5322. "psr-4": {
  5323. "Symfony\\Polyfill\\Mbstring\\": ""
  5324. },
  5325. "files": [
  5326. "bootstrap.php"
  5327. ]
  5328. },
  5329. "notification-url": "https://packagist.org/downloads/",
  5330. "license": [
  5331. "MIT"
  5332. ],
  5333. "authors": [
  5334. {
  5335. "name": "Nicolas Grekas",
  5336. "email": "p@tchwork.com"
  5337. },
  5338. {
  5339. "name": "Symfony Community",
  5340. "homepage": "https://symfony.com/contributors"
  5341. }
  5342. ],
  5343. "description": "Symfony polyfill for the Mbstring extension",
  5344. "homepage": "https://symfony.com",
  5345. "keywords": [
  5346. "compatibility",
  5347. "mbstring",
  5348. "polyfill",
  5349. "portable",
  5350. "shim"
  5351. ],
  5352. "support": {
  5353. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  5354. },
  5355. "funding": [
  5356. {
  5357. "url": "https://symfony.com/sponsor",
  5358. "type": "custom"
  5359. },
  5360. {
  5361. "url": "https://github.com/fabpot",
  5362. "type": "github"
  5363. },
  5364. {
  5365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5366. "type": "tidelift"
  5367. }
  5368. ],
  5369. "time": "2020-10-23T14:02:19+00:00"
  5370. },
  5371. {
  5372. "name": "symfony/polyfill-php72",
  5373. "version": "v1.20.0",
  5374. "source": {
  5375. "type": "git",
  5376. "url": "https://github.com/symfony/polyfill-php72.git",
  5377. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  5378. },
  5379. "dist": {
  5380. "type": "zip",
  5381. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  5382. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  5383. "shasum": "",
  5384. "mirrors": [
  5385. {
  5386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5387. "preferred": true
  5388. }
  5389. ]
  5390. },
  5391. "require": {
  5392. "php": ">=7.1"
  5393. },
  5394. "type": "library",
  5395. "extra": {
  5396. "branch-alias": {
  5397. "dev-main": "1.20-dev"
  5398. },
  5399. "thanks": {
  5400. "name": "symfony/polyfill",
  5401. "url": "https://github.com/symfony/polyfill"
  5402. }
  5403. },
  5404. "autoload": {
  5405. "psr-4": {
  5406. "Symfony\\Polyfill\\Php72\\": ""
  5407. },
  5408. "files": [
  5409. "bootstrap.php"
  5410. ]
  5411. },
  5412. "notification-url": "https://packagist.org/downloads/",
  5413. "license": [
  5414. "MIT"
  5415. ],
  5416. "authors": [
  5417. {
  5418. "name": "Nicolas Grekas",
  5419. "email": "p@tchwork.com"
  5420. },
  5421. {
  5422. "name": "Symfony Community",
  5423. "homepage": "https://symfony.com/contributors"
  5424. }
  5425. ],
  5426. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5427. "homepage": "https://symfony.com",
  5428. "keywords": [
  5429. "compatibility",
  5430. "polyfill",
  5431. "portable",
  5432. "shim"
  5433. ],
  5434. "support": {
  5435. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  5436. },
  5437. "funding": [
  5438. {
  5439. "url": "https://symfony.com/sponsor",
  5440. "type": "custom"
  5441. },
  5442. {
  5443. "url": "https://github.com/fabpot",
  5444. "type": "github"
  5445. },
  5446. {
  5447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5448. "type": "tidelift"
  5449. }
  5450. ],
  5451. "time": "2020-10-23T14:02:19+00:00"
  5452. },
  5453. {
  5454. "name": "symfony/polyfill-php73",
  5455. "version": "v1.20.0",
  5456. "source": {
  5457. "type": "git",
  5458. "url": "https://github.com/symfony/polyfill-php73.git",
  5459. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  5460. },
  5461. "dist": {
  5462. "type": "zip",
  5463. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  5464. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  5465. "shasum": "",
  5466. "mirrors": [
  5467. {
  5468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5469. "preferred": true
  5470. }
  5471. ]
  5472. },
  5473. "require": {
  5474. "php": ">=7.1"
  5475. },
  5476. "type": "library",
  5477. "extra": {
  5478. "branch-alias": {
  5479. "dev-main": "1.20-dev"
  5480. },
  5481. "thanks": {
  5482. "name": "symfony/polyfill",
  5483. "url": "https://github.com/symfony/polyfill"
  5484. }
  5485. },
  5486. "autoload": {
  5487. "psr-4": {
  5488. "Symfony\\Polyfill\\Php73\\": ""
  5489. },
  5490. "files": [
  5491. "bootstrap.php"
  5492. ],
  5493. "classmap": [
  5494. "Resources/stubs"
  5495. ]
  5496. },
  5497. "notification-url": "https://packagist.org/downloads/",
  5498. "license": [
  5499. "MIT"
  5500. ],
  5501. "authors": [
  5502. {
  5503. "name": "Nicolas Grekas",
  5504. "email": "p@tchwork.com"
  5505. },
  5506. {
  5507. "name": "Symfony Community",
  5508. "homepage": "https://symfony.com/contributors"
  5509. }
  5510. ],
  5511. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5512. "homepage": "https://symfony.com",
  5513. "keywords": [
  5514. "compatibility",
  5515. "polyfill",
  5516. "portable",
  5517. "shim"
  5518. ],
  5519. "support": {
  5520. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  5521. },
  5522. "funding": [
  5523. {
  5524. "url": "https://symfony.com/sponsor",
  5525. "type": "custom"
  5526. },
  5527. {
  5528. "url": "https://github.com/fabpot",
  5529. "type": "github"
  5530. },
  5531. {
  5532. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5533. "type": "tidelift"
  5534. }
  5535. ],
  5536. "time": "2020-10-23T14:02:19+00:00"
  5537. },
  5538. {
  5539. "name": "symfony/polyfill-php80",
  5540. "version": "v1.20.0",
  5541. "source": {
  5542. "type": "git",
  5543. "url": "https://github.com/symfony/polyfill-php80.git",
  5544. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  5545. },
  5546. "dist": {
  5547. "type": "zip",
  5548. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  5549. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  5550. "shasum": "",
  5551. "mirrors": [
  5552. {
  5553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5554. "preferred": true
  5555. }
  5556. ]
  5557. },
  5558. "require": {
  5559. "php": ">=7.1"
  5560. },
  5561. "type": "library",
  5562. "extra": {
  5563. "branch-alias": {
  5564. "dev-main": "1.20-dev"
  5565. },
  5566. "thanks": {
  5567. "name": "symfony/polyfill",
  5568. "url": "https://github.com/symfony/polyfill"
  5569. }
  5570. },
  5571. "autoload": {
  5572. "psr-4": {
  5573. "Symfony\\Polyfill\\Php80\\": ""
  5574. },
  5575. "files": [
  5576. "bootstrap.php"
  5577. ],
  5578. "classmap": [
  5579. "Resources/stubs"
  5580. ]
  5581. },
  5582. "notification-url": "https://packagist.org/downloads/",
  5583. "license": [
  5584. "MIT"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Ion Bazan",
  5589. "email": "ion.bazan@gmail.com"
  5590. },
  5591. {
  5592. "name": "Nicolas Grekas",
  5593. "email": "p@tchwork.com"
  5594. },
  5595. {
  5596. "name": "Symfony Community",
  5597. "homepage": "https://symfony.com/contributors"
  5598. }
  5599. ],
  5600. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5601. "homepage": "https://symfony.com",
  5602. "keywords": [
  5603. "compatibility",
  5604. "polyfill",
  5605. "portable",
  5606. "shim"
  5607. ],
  5608. "support": {
  5609. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  5610. },
  5611. "funding": [
  5612. {
  5613. "url": "https://symfony.com/sponsor",
  5614. "type": "custom"
  5615. },
  5616. {
  5617. "url": "https://github.com/fabpot",
  5618. "type": "github"
  5619. },
  5620. {
  5621. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5622. "type": "tidelift"
  5623. }
  5624. ],
  5625. "time": "2020-10-23T14:02:19+00:00"
  5626. },
  5627. {
  5628. "name": "symfony/service-contracts",
  5629. "version": "v2.2.0",
  5630. "source": {
  5631. "type": "git",
  5632. "url": "https://github.com/symfony/service-contracts.git",
  5633. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  5634. },
  5635. "dist": {
  5636. "type": "zip",
  5637. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5638. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5639. "shasum": "",
  5640. "mirrors": [
  5641. {
  5642. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5643. "preferred": true
  5644. }
  5645. ]
  5646. },
  5647. "require": {
  5648. "php": ">=7.2.5",
  5649. "psr/container": "^1.0"
  5650. },
  5651. "suggest": {
  5652. "symfony/service-implementation": ""
  5653. },
  5654. "type": "library",
  5655. "extra": {
  5656. "branch-alias": {
  5657. "dev-master": "2.2-dev"
  5658. },
  5659. "thanks": {
  5660. "name": "symfony/contracts",
  5661. "url": "https://github.com/symfony/contracts"
  5662. }
  5663. },
  5664. "autoload": {
  5665. "psr-4": {
  5666. "Symfony\\Contracts\\Service\\": ""
  5667. }
  5668. },
  5669. "notification-url": "https://packagist.org/downloads/",
  5670. "license": [
  5671. "MIT"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "Nicolas Grekas",
  5676. "email": "p@tchwork.com"
  5677. },
  5678. {
  5679. "name": "Symfony Community",
  5680. "homepage": "https://symfony.com/contributors"
  5681. }
  5682. ],
  5683. "description": "Generic abstractions related to writing services",
  5684. "homepage": "https://symfony.com",
  5685. "keywords": [
  5686. "abstractions",
  5687. "contracts",
  5688. "decoupling",
  5689. "interfaces",
  5690. "interoperability",
  5691. "standards"
  5692. ],
  5693. "support": {
  5694. "source": "https://github.com/symfony/service-contracts/tree/master"
  5695. },
  5696. "funding": [
  5697. {
  5698. "url": "https://symfony.com/sponsor",
  5699. "type": "custom"
  5700. },
  5701. {
  5702. "url": "https://github.com/fabpot",
  5703. "type": "github"
  5704. },
  5705. {
  5706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5707. "type": "tidelift"
  5708. }
  5709. ],
  5710. "time": "2020-09-07T11:33:47+00:00"
  5711. },
  5712. {
  5713. "name": "symfony/string",
  5714. "version": "v5.1.8",
  5715. "source": {
  5716. "type": "git",
  5717. "url": "https://github.com/symfony/string.git",
  5718. "reference": "a97573e960303db71be0dd8fda9be3bca5e0feea"
  5719. },
  5720. "dist": {
  5721. "type": "zip",
  5722. "url": "https://api.github.com/repos/symfony/string/zipball/a97573e960303db71be0dd8fda9be3bca5e0feea",
  5723. "reference": "a97573e960303db71be0dd8fda9be3bca5e0feea",
  5724. "shasum": "",
  5725. "mirrors": [
  5726. {
  5727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5728. "preferred": true
  5729. }
  5730. ]
  5731. },
  5732. "require": {
  5733. "php": ">=7.2.5",
  5734. "symfony/polyfill-ctype": "~1.8",
  5735. "symfony/polyfill-intl-grapheme": "~1.0",
  5736. "symfony/polyfill-intl-normalizer": "~1.0",
  5737. "symfony/polyfill-mbstring": "~1.0",
  5738. "symfony/polyfill-php80": "~1.15"
  5739. },
  5740. "require-dev": {
  5741. "symfony/error-handler": "^4.4|^5.0",
  5742. "symfony/http-client": "^4.4|^5.0",
  5743. "symfony/translation-contracts": "^1.1|^2",
  5744. "symfony/var-exporter": "^4.4|^5.0"
  5745. },
  5746. "type": "library",
  5747. "autoload": {
  5748. "psr-4": {
  5749. "Symfony\\Component\\String\\": ""
  5750. },
  5751. "files": [
  5752. "Resources/functions.php"
  5753. ],
  5754. "exclude-from-classmap": [
  5755. "/Tests/"
  5756. ]
  5757. },
  5758. "notification-url": "https://packagist.org/downloads/",
  5759. "license": [
  5760. "MIT"
  5761. ],
  5762. "authors": [
  5763. {
  5764. "name": "Nicolas Grekas",
  5765. "email": "p@tchwork.com"
  5766. },
  5767. {
  5768. "name": "Symfony Community",
  5769. "homepage": "https://symfony.com/contributors"
  5770. }
  5771. ],
  5772. "description": "Symfony String component",
  5773. "homepage": "https://symfony.com",
  5774. "keywords": [
  5775. "grapheme",
  5776. "i18n",
  5777. "string",
  5778. "unicode",
  5779. "utf-8",
  5780. "utf8"
  5781. ],
  5782. "support": {
  5783. "source": "https://github.com/symfony/string/tree/v5.1.8"
  5784. },
  5785. "funding": [
  5786. {
  5787. "url": "https://symfony.com/sponsor",
  5788. "type": "custom"
  5789. },
  5790. {
  5791. "url": "https://github.com/fabpot",
  5792. "type": "github"
  5793. },
  5794. {
  5795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5796. "type": "tidelift"
  5797. }
  5798. ],
  5799. "time": "2020-10-24T12:01:57+00:00"
  5800. },
  5801. {
  5802. "name": "symfony/translation",
  5803. "version": "v5.1.8",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://github.com/symfony/translation.git",
  5807. "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://api.github.com/repos/symfony/translation/zipball/27980838fd261e04379fa91e94e81e662fe5a1b6",
  5812. "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6",
  5813. "shasum": "",
  5814. "mirrors": [
  5815. {
  5816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5817. "preferred": true
  5818. }
  5819. ]
  5820. },
  5821. "require": {
  5822. "php": ">=7.2.5",
  5823. "symfony/polyfill-mbstring": "~1.0",
  5824. "symfony/polyfill-php80": "^1.15",
  5825. "symfony/translation-contracts": "^2"
  5826. },
  5827. "conflict": {
  5828. "symfony/config": "<4.4",
  5829. "symfony/dependency-injection": "<5.0",
  5830. "symfony/http-kernel": "<5.0",
  5831. "symfony/twig-bundle": "<5.0",
  5832. "symfony/yaml": "<4.4"
  5833. },
  5834. "provide": {
  5835. "symfony/translation-implementation": "2.0"
  5836. },
  5837. "require-dev": {
  5838. "psr/log": "~1.0",
  5839. "symfony/config": "^4.4|^5.0",
  5840. "symfony/console": "^4.4|^5.0",
  5841. "symfony/dependency-injection": "^5.0",
  5842. "symfony/finder": "^4.4|^5.0",
  5843. "symfony/http-kernel": "^5.0",
  5844. "symfony/intl": "^4.4|^5.0",
  5845. "symfony/service-contracts": "^1.1.2|^2",
  5846. "symfony/yaml": "^4.4|^5.0"
  5847. },
  5848. "suggest": {
  5849. "psr/log-implementation": "To use logging capability in translator",
  5850. "symfony/config": "",
  5851. "symfony/yaml": ""
  5852. },
  5853. "type": "library",
  5854. "autoload": {
  5855. "psr-4": {
  5856. "Symfony\\Component\\Translation\\": ""
  5857. },
  5858. "exclude-from-classmap": [
  5859. "/Tests/"
  5860. ]
  5861. },
  5862. "notification-url": "https://packagist.org/downloads/",
  5863. "license": [
  5864. "MIT"
  5865. ],
  5866. "authors": [
  5867. {
  5868. "name": "Fabien Potencier",
  5869. "email": "fabien@symfony.com"
  5870. },
  5871. {
  5872. "name": "Symfony Community",
  5873. "homepage": "https://symfony.com/contributors"
  5874. }
  5875. ],
  5876. "description": "Symfony Translation Component",
  5877. "homepage": "https://symfony.com",
  5878. "support": {
  5879. "source": "https://github.com/symfony/translation/tree/v5.1.8"
  5880. },
  5881. "funding": [
  5882. {
  5883. "url": "https://symfony.com/sponsor",
  5884. "type": "custom"
  5885. },
  5886. {
  5887. "url": "https://github.com/fabpot",
  5888. "type": "github"
  5889. },
  5890. {
  5891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5892. "type": "tidelift"
  5893. }
  5894. ],
  5895. "time": "2020-10-24T12:01:57+00:00"
  5896. },
  5897. {
  5898. "name": "symfony/translation-contracts",
  5899. "version": "v2.3.0",
  5900. "source": {
  5901. "type": "git",
  5902. "url": "https://github.com/symfony/translation-contracts.git",
  5903. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  5904. },
  5905. "dist": {
  5906. "type": "zip",
  5907. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  5908. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  5909. "shasum": "",
  5910. "mirrors": [
  5911. {
  5912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5913. "preferred": true
  5914. }
  5915. ]
  5916. },
  5917. "require": {
  5918. "php": ">=7.2.5"
  5919. },
  5920. "suggest": {
  5921. "symfony/translation-implementation": ""
  5922. },
  5923. "type": "library",
  5924. "extra": {
  5925. "branch-alias": {
  5926. "dev-master": "2.3-dev"
  5927. },
  5928. "thanks": {
  5929. "name": "symfony/contracts",
  5930. "url": "https://github.com/symfony/contracts"
  5931. }
  5932. },
  5933. "autoload": {
  5934. "psr-4": {
  5935. "Symfony\\Contracts\\Translation\\": ""
  5936. }
  5937. },
  5938. "notification-url": "https://packagist.org/downloads/",
  5939. "license": [
  5940. "MIT"
  5941. ],
  5942. "authors": [
  5943. {
  5944. "name": "Nicolas Grekas",
  5945. "email": "p@tchwork.com"
  5946. },
  5947. {
  5948. "name": "Symfony Community",
  5949. "homepage": "https://symfony.com/contributors"
  5950. }
  5951. ],
  5952. "description": "Generic abstractions related to translation",
  5953. "homepage": "https://symfony.com",
  5954. "keywords": [
  5955. "abstractions",
  5956. "contracts",
  5957. "decoupling",
  5958. "interfaces",
  5959. "interoperability",
  5960. "standards"
  5961. ],
  5962. "support": {
  5963. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  5964. },
  5965. "funding": [
  5966. {
  5967. "url": "https://symfony.com/sponsor",
  5968. "type": "custom"
  5969. },
  5970. {
  5971. "url": "https://github.com/fabpot",
  5972. "type": "github"
  5973. },
  5974. {
  5975. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5976. "type": "tidelift"
  5977. }
  5978. ],
  5979. "time": "2020-09-28T13:05:58+00:00"
  5980. },
  5981. {
  5982. "name": "vlucas/phpdotenv",
  5983. "version": "v4.1.8",
  5984. "source": {
  5985. "type": "git",
  5986. "url": "https://github.com/vlucas/phpdotenv.git",
  5987. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  5988. },
  5989. "dist": {
  5990. "type": "zip",
  5991. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  5992. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  5993. "shasum": "",
  5994. "mirrors": [
  5995. {
  5996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5997. "preferred": true
  5998. }
  5999. ]
  6000. },
  6001. "require": {
  6002. "php": "^5.5.9 || ^7.0 || ^8.0",
  6003. "phpoption/phpoption": "^1.7.3",
  6004. "symfony/polyfill-ctype": "^1.17"
  6005. },
  6006. "require-dev": {
  6007. "bamarni/composer-bin-plugin": "^1.4.1",
  6008. "ext-filter": "*",
  6009. "ext-pcre": "*",
  6010. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6011. },
  6012. "suggest": {
  6013. "ext-filter": "Required to use the boolean validator.",
  6014. "ext-pcre": "Required to use most of the library."
  6015. },
  6016. "type": "library",
  6017. "extra": {
  6018. "branch-alias": {
  6019. "dev-master": "4.1-dev"
  6020. }
  6021. },
  6022. "autoload": {
  6023. "psr-4": {
  6024. "Dotenv\\": "src/"
  6025. }
  6026. },
  6027. "notification-url": "https://packagist.org/downloads/",
  6028. "license": [
  6029. "BSD-3-Clause"
  6030. ],
  6031. "authors": [
  6032. {
  6033. "name": "Graham Campbell",
  6034. "email": "graham@alt-three.com",
  6035. "homepage": "https://gjcampbell.co.uk/"
  6036. },
  6037. {
  6038. "name": "Vance Lucas",
  6039. "email": "vance@vancelucas.com",
  6040. "homepage": "https://vancelucas.com/"
  6041. }
  6042. ],
  6043. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6044. "keywords": [
  6045. "dotenv",
  6046. "env",
  6047. "environment"
  6048. ],
  6049. "support": {
  6050. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6051. "source": "https://github.com/vlucas/phpdotenv/tree/4.1"
  6052. },
  6053. "funding": [
  6054. {
  6055. "url": "https://github.com/GrahamCampbell",
  6056. "type": "github"
  6057. },
  6058. {
  6059. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6060. "type": "tidelift"
  6061. }
  6062. ],
  6063. "time": "2020-07-14T19:22:52+00:00"
  6064. },
  6065. {
  6066. "name": "webmozart/assert",
  6067. "version": "1.9.1",
  6068. "source": {
  6069. "type": "git",
  6070. "url": "https://github.com/webmozart/assert.git",
  6071. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  6072. },
  6073. "dist": {
  6074. "type": "zip",
  6075. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  6076. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  6077. "shasum": "",
  6078. "mirrors": [
  6079. {
  6080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6081. "preferred": true
  6082. }
  6083. ]
  6084. },
  6085. "require": {
  6086. "php": "^5.3.3 || ^7.0 || ^8.0",
  6087. "symfony/polyfill-ctype": "^1.8"
  6088. },
  6089. "conflict": {
  6090. "phpstan/phpstan": "<0.12.20",
  6091. "vimeo/psalm": "<3.9.1"
  6092. },
  6093. "require-dev": {
  6094. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6095. },
  6096. "type": "library",
  6097. "autoload": {
  6098. "psr-4": {
  6099. "Webmozart\\Assert\\": "src/"
  6100. }
  6101. },
  6102. "notification-url": "https://packagist.org/downloads/",
  6103. "license": [
  6104. "MIT"
  6105. ],
  6106. "authors": [
  6107. {
  6108. "name": "Bernhard Schussek",
  6109. "email": "bschussek@gmail.com"
  6110. }
  6111. ],
  6112. "description": "Assertions to validate method input/output with nice error messages.",
  6113. "keywords": [
  6114. "assert",
  6115. "check",
  6116. "validate"
  6117. ],
  6118. "support": {
  6119. "issues": "https://github.com/webmozart/assert/issues",
  6120. "source": "https://github.com/webmozart/assert/tree/master"
  6121. },
  6122. "time": "2020-07-08T17:02:28+00:00"
  6123. }
  6124. ],
  6125. "packages-dev": [
  6126. {
  6127. "name": "composer/semver",
  6128. "version": "3.2.2",
  6129. "source": {
  6130. "type": "git",
  6131. "url": "https://github.com/composer/semver.git",
  6132. "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
  6133. },
  6134. "dist": {
  6135. "type": "zip",
  6136. "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
  6137. "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
  6138. "shasum": "",
  6139. "mirrors": [
  6140. {
  6141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6142. "preferred": true
  6143. }
  6144. ]
  6145. },
  6146. "require": {
  6147. "php": "^5.3.2 || ^7.0 || ^8.0"
  6148. },
  6149. "require-dev": {
  6150. "phpstan/phpstan": "^0.12.19",
  6151. "symfony/phpunit-bridge": "^4.2 || ^5"
  6152. },
  6153. "type": "library",
  6154. "extra": {
  6155. "branch-alias": {
  6156. "dev-main": "3.x-dev"
  6157. }
  6158. },
  6159. "autoload": {
  6160. "psr-4": {
  6161. "Composer\\Semver\\": "src"
  6162. }
  6163. },
  6164. "notification-url": "https://packagist.org/downloads/",
  6165. "license": [
  6166. "MIT"
  6167. ],
  6168. "authors": [
  6169. {
  6170. "name": "Nils Adermann",
  6171. "email": "naderman@naderman.de",
  6172. "homepage": "http://www.naderman.de"
  6173. },
  6174. {
  6175. "name": "Jordi Boggiano",
  6176. "email": "j.boggiano@seld.be",
  6177. "homepage": "http://seld.be"
  6178. },
  6179. {
  6180. "name": "Rob Bast",
  6181. "email": "rob.bast@gmail.com",
  6182. "homepage": "http://robbast.nl"
  6183. }
  6184. ],
  6185. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6186. "keywords": [
  6187. "semantic",
  6188. "semver",
  6189. "validation",
  6190. "versioning"
  6191. ],
  6192. "support": {
  6193. "irc": "irc://irc.freenode.org/composer",
  6194. "issues": "https://github.com/composer/semver/issues",
  6195. "source": "https://github.com/composer/semver/tree/3.2.2"
  6196. },
  6197. "funding": [
  6198. {
  6199. "url": "https://packagist.com",
  6200. "type": "custom"
  6201. },
  6202. {
  6203. "url": "https://github.com/composer",
  6204. "type": "github"
  6205. },
  6206. {
  6207. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6208. "type": "tidelift"
  6209. }
  6210. ],
  6211. "time": "2020-10-14T08:51:15+00:00"
  6212. },
  6213. {
  6214. "name": "composer/xdebug-handler",
  6215. "version": "1.4.4",
  6216. "source": {
  6217. "type": "git",
  6218. "url": "https://github.com/composer/xdebug-handler.git",
  6219. "reference": "6e076a124f7ee146f2487554a94b6a19a74887ba"
  6220. },
  6221. "dist": {
  6222. "type": "zip",
  6223. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6e076a124f7ee146f2487554a94b6a19a74887ba",
  6224. "reference": "6e076a124f7ee146f2487554a94b6a19a74887ba",
  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": "^5.3.2 || ^7.0 || ^8.0",
  6235. "psr/log": "^1.0"
  6236. },
  6237. "require-dev": {
  6238. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  6239. },
  6240. "type": "library",
  6241. "autoload": {
  6242. "psr-4": {
  6243. "Composer\\XdebugHandler\\": "src"
  6244. }
  6245. },
  6246. "notification-url": "https://packagist.org/downloads/",
  6247. "license": [
  6248. "MIT"
  6249. ],
  6250. "authors": [
  6251. {
  6252. "name": "John Stevenson",
  6253. "email": "john-stevenson@blueyonder.co.uk"
  6254. }
  6255. ],
  6256. "description": "Restarts a process without Xdebug.",
  6257. "keywords": [
  6258. "Xdebug",
  6259. "performance"
  6260. ],
  6261. "support": {
  6262. "irc": "irc://irc.freenode.org/composer",
  6263. "issues": "https://github.com/composer/xdebug-handler/issues",
  6264. "source": "https://github.com/composer/xdebug-handler/tree/1.4.4"
  6265. },
  6266. "funding": [
  6267. {
  6268. "url": "https://packagist.com",
  6269. "type": "custom"
  6270. },
  6271. {
  6272. "url": "https://github.com/composer",
  6273. "type": "github"
  6274. },
  6275. {
  6276. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6277. "type": "tidelift"
  6278. }
  6279. ],
  6280. "time": "2020-10-24T12:39:10+00:00"
  6281. },
  6282. {
  6283. "name": "friendsofphp/php-cs-fixer",
  6284. "version": "v2.16.7",
  6285. "source": {
  6286. "type": "git",
  6287. "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
  6288. "reference": "4e35806a6d7d8510d6842ae932e8832363d22c87"
  6289. },
  6290. "dist": {
  6291. "type": "zip",
  6292. "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/4e35806a6d7d8510d6842ae932e8832363d22c87",
  6293. "reference": "4e35806a6d7d8510d6842ae932e8832363d22c87",
  6294. "shasum": "",
  6295. "mirrors": [
  6296. {
  6297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6298. "preferred": true
  6299. }
  6300. ]
  6301. },
  6302. "require": {
  6303. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  6304. "composer/xdebug-handler": "^1.2",
  6305. "doctrine/annotations": "^1.2",
  6306. "ext-json": "*",
  6307. "ext-tokenizer": "*",
  6308. "php": "^7.1",
  6309. "php-cs-fixer/diff": "^1.3",
  6310. "symfony/console": "^3.4.43 || ^4.1.6 || ^5.0",
  6311. "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0",
  6312. "symfony/filesystem": "^3.0 || ^4.0 || ^5.0",
  6313. "symfony/finder": "^3.0 || ^4.0 || ^5.0",
  6314. "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0",
  6315. "symfony/polyfill-php70": "^1.0",
  6316. "symfony/polyfill-php72": "^1.4",
  6317. "symfony/process": "^3.0 || ^4.0 || ^5.0",
  6318. "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0"
  6319. },
  6320. "require-dev": {
  6321. "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
  6322. "justinrainbow/json-schema": "^5.0",
  6323. "keradus/cli-executor": "^1.4",
  6324. "mikey179/vfsstream": "^1.6",
  6325. "php-coveralls/php-coveralls": "^2.4.1",
  6326. "php-cs-fixer/accessible-object": "^1.0",
  6327. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  6328. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  6329. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1",
  6330. "phpunitgoodpractices/traits": "^1.9.1",
  6331. "symfony/phpunit-bridge": "^5.1",
  6332. "symfony/yaml": "^3.0 || ^4.0 || ^5.0"
  6333. },
  6334. "suggest": {
  6335. "ext-dom": "For handling output formats in XML",
  6336. "ext-mbstring": "For handling non-UTF8 characters.",
  6337. "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
  6338. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
  6339. "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
  6340. },
  6341. "bin": [
  6342. "php-cs-fixer"
  6343. ],
  6344. "type": "application",
  6345. "autoload": {
  6346. "psr-4": {
  6347. "PhpCsFixer\\": "src/"
  6348. },
  6349. "classmap": [
  6350. "tests/Test/AbstractFixerTestCase.php",
  6351. "tests/Test/AbstractIntegrationCaseFactory.php",
  6352. "tests/Test/AbstractIntegrationTestCase.php",
  6353. "tests/Test/Assert/AssertTokensTrait.php",
  6354. "tests/Test/IntegrationCase.php",
  6355. "tests/Test/IntegrationCaseFactory.php",
  6356. "tests/Test/IntegrationCaseFactoryInterface.php",
  6357. "tests/Test/InternalIntegrationCaseFactory.php",
  6358. "tests/Test/IsIdenticalConstraint.php",
  6359. "tests/TestCase.php"
  6360. ]
  6361. },
  6362. "notification-url": "https://packagist.org/downloads/",
  6363. "license": [
  6364. "MIT"
  6365. ],
  6366. "authors": [
  6367. {
  6368. "name": "Fabien Potencier",
  6369. "email": "fabien@symfony.com"
  6370. },
  6371. {
  6372. "name": "Dariusz Rumiński",
  6373. "email": "dariusz.ruminski@gmail.com"
  6374. }
  6375. ],
  6376. "description": "A tool to automatically fix PHP code style",
  6377. "support": {
  6378. "issues": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues",
  6379. "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v2.16.7"
  6380. },
  6381. "funding": [
  6382. {
  6383. "url": "https://github.com/keradus",
  6384. "type": "github"
  6385. }
  6386. ],
  6387. "time": "2020-10-27T22:44:27+00:00"
  6388. },
  6389. {
  6390. "name": "hamcrest/hamcrest-php",
  6391. "version": "v2.0.1",
  6392. "source": {
  6393. "type": "git",
  6394. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6395. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  6396. },
  6397. "dist": {
  6398. "type": "zip",
  6399. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6400. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6401. "shasum": "",
  6402. "mirrors": [
  6403. {
  6404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6405. "preferred": true
  6406. }
  6407. ]
  6408. },
  6409. "require": {
  6410. "php": "^5.3|^7.0|^8.0"
  6411. },
  6412. "replace": {
  6413. "cordoval/hamcrest-php": "*",
  6414. "davedevelopment/hamcrest-php": "*",
  6415. "kodova/hamcrest-php": "*"
  6416. },
  6417. "require-dev": {
  6418. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6419. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6420. },
  6421. "type": "library",
  6422. "extra": {
  6423. "branch-alias": {
  6424. "dev-master": "2.1-dev"
  6425. }
  6426. },
  6427. "autoload": {
  6428. "classmap": [
  6429. "hamcrest"
  6430. ]
  6431. },
  6432. "notification-url": "https://packagist.org/downloads/",
  6433. "license": [
  6434. "BSD-3-Clause"
  6435. ],
  6436. "description": "This is the PHP port of Hamcrest Matchers",
  6437. "keywords": [
  6438. "test"
  6439. ],
  6440. "support": {
  6441. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  6442. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  6443. },
  6444. "time": "2020-07-09T08:09:16+00:00"
  6445. },
  6446. {
  6447. "name": "hyperf/devtool",
  6448. "version": "v2.0.14",
  6449. "source": {
  6450. "type": "git",
  6451. "url": "https://github.com/hyperf/devtool.git",
  6452. "reference": "87820770739173c9d3c9368e87dc33d1a7816b44"
  6453. },
  6454. "dist": {
  6455. "type": "zip",
  6456. "url": "https://api.github.com/repos/hyperf/devtool/zipball/87820770739173c9d3c9368e87dc33d1a7816b44",
  6457. "reference": "87820770739173c9d3c9368e87dc33d1a7816b44",
  6458. "shasum": "",
  6459. "mirrors": [
  6460. {
  6461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6462. "preferred": true
  6463. }
  6464. ]
  6465. },
  6466. "require": {
  6467. "hyperf/command": "~2.0.0",
  6468. "hyperf/contract": "~2.0.0",
  6469. "hyperf/di": "~2.0.0",
  6470. "hyperf/utils": "~2.0.0",
  6471. "php": ">=7.2"
  6472. },
  6473. "require-dev": {
  6474. "friendsofphp/php-cs-fixer": "^2.9",
  6475. "malukenho/docheader": "^0.1.6",
  6476. "mockery/mockery": "^1.0",
  6477. "phpunit/phpunit": "^7.0.0"
  6478. },
  6479. "type": "library",
  6480. "extra": {
  6481. "branch-alias": {
  6482. "dev-master": "2.0-dev"
  6483. },
  6484. "hyperf": {
  6485. "config": "Hyperf\\Devtool\\ConfigProvider"
  6486. }
  6487. },
  6488. "autoload": {
  6489. "psr-4": {
  6490. "Hyperf\\Devtool\\": "src/"
  6491. }
  6492. },
  6493. "notification-url": "https://packagist.org/downloads/",
  6494. "license": [
  6495. "MIT"
  6496. ],
  6497. "description": "A Devtool for Hyperf.",
  6498. "homepage": "https://hyperf.io",
  6499. "keywords": [
  6500. "devtool",
  6501. "hyperf",
  6502. "php",
  6503. "swoole"
  6504. ],
  6505. "support": {
  6506. "docs": "https://hyperf.wiki",
  6507. "issues": "https://github.com/hyperf/hyperf/issues",
  6508. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  6509. "source": "https://github.com/hyperf/hyperf"
  6510. },
  6511. "time": "2020-10-05T00:31:32+00:00"
  6512. },
  6513. {
  6514. "name": "hyperf/testing",
  6515. "version": "v2.0.14",
  6516. "source": {
  6517. "type": "git",
  6518. "url": "https://github.com/hyperf/testing.git",
  6519. "reference": "3dca89a86f65e2b2e997c6ee55df6439cfcc72e5"
  6520. },
  6521. "dist": {
  6522. "type": "zip",
  6523. "url": "https://api.github.com/repos/hyperf/testing/zipball/3dca89a86f65e2b2e997c6ee55df6439cfcc72e5",
  6524. "reference": "3dca89a86f65e2b2e997c6ee55df6439cfcc72e5",
  6525. "shasum": "",
  6526. "mirrors": [
  6527. {
  6528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6529. "preferred": true
  6530. }
  6531. ]
  6532. },
  6533. "require": {
  6534. "hyperf/contract": "~2.0.0",
  6535. "hyperf/http-message": "~2.0.0",
  6536. "hyperf/http-server": "~2.0.0",
  6537. "hyperf/utils": "~2.0.0",
  6538. "php": ">=7.2",
  6539. "phpunit/phpunit": "^7.0",
  6540. "psr/container": "^1.0"
  6541. },
  6542. "require-dev": {
  6543. "friendsofphp/php-cs-fixer": "^2.9",
  6544. "malukenho/docheader": "^0.1.6",
  6545. "mockery/mockery": "^1.0"
  6546. },
  6547. "bin": [
  6548. "co-phpunit"
  6549. ],
  6550. "type": "library",
  6551. "extra": {
  6552. "branch-alias": {
  6553. "dev-master": "2.0-dev"
  6554. }
  6555. },
  6556. "autoload": {
  6557. "psr-4": {
  6558. "Hyperf\\Testing\\": "src/"
  6559. }
  6560. },
  6561. "notification-url": "https://packagist.org/downloads/",
  6562. "license": [
  6563. "MIT"
  6564. ],
  6565. "description": "Testing for hyperf",
  6566. "keywords": [
  6567. "php",
  6568. "swoole",
  6569. "testing"
  6570. ],
  6571. "support": {
  6572. "source": "https://github.com/hyperf/testing/tree/v2.0.14"
  6573. },
  6574. "time": "2020-10-10T09:22:32+00:00"
  6575. },
  6576. {
  6577. "name": "mockery/mockery",
  6578. "version": "1.3.3",
  6579. "source": {
  6580. "type": "git",
  6581. "url": "https://github.com/mockery/mockery.git",
  6582. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d"
  6583. },
  6584. "dist": {
  6585. "type": "zip",
  6586. "url": "https://api.github.com/repos/mockery/mockery/zipball/60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  6587. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  6588. "shasum": "",
  6589. "mirrors": [
  6590. {
  6591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6592. "preferred": true
  6593. }
  6594. ]
  6595. },
  6596. "require": {
  6597. "hamcrest/hamcrest-php": "^2.0.1",
  6598. "lib-pcre": ">=7.0",
  6599. "php": ">=5.6.0"
  6600. },
  6601. "require-dev": {
  6602. "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
  6603. },
  6604. "type": "library",
  6605. "extra": {
  6606. "branch-alias": {
  6607. "dev-master": "1.3.x-dev"
  6608. }
  6609. },
  6610. "autoload": {
  6611. "psr-0": {
  6612. "Mockery": "library/"
  6613. }
  6614. },
  6615. "notification-url": "https://packagist.org/downloads/",
  6616. "license": [
  6617. "BSD-3-Clause"
  6618. ],
  6619. "authors": [
  6620. {
  6621. "name": "Pádraic Brady",
  6622. "email": "padraic.brady@gmail.com",
  6623. "homepage": "http://blog.astrumfutura.com"
  6624. },
  6625. {
  6626. "name": "Dave Marshall",
  6627. "email": "dave.marshall@atstsolutions.co.uk",
  6628. "homepage": "http://davedevelopment.co.uk"
  6629. }
  6630. ],
  6631. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6632. "homepage": "https://github.com/mockery/mockery",
  6633. "keywords": [
  6634. "BDD",
  6635. "TDD",
  6636. "library",
  6637. "mock",
  6638. "mock objects",
  6639. "mockery",
  6640. "stub",
  6641. "test",
  6642. "test double",
  6643. "testing"
  6644. ],
  6645. "support": {
  6646. "issues": "https://github.com/mockery/mockery/issues",
  6647. "source": "https://github.com/mockery/mockery/tree/1.3.3"
  6648. },
  6649. "time": "2020-08-11T18:10:21+00:00"
  6650. },
  6651. {
  6652. "name": "myclabs/deep-copy",
  6653. "version": "1.10.1",
  6654. "source": {
  6655. "type": "git",
  6656. "url": "https://github.com/myclabs/DeepCopy.git",
  6657. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  6658. },
  6659. "dist": {
  6660. "type": "zip",
  6661. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  6662. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  6663. "shasum": "",
  6664. "mirrors": [
  6665. {
  6666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6667. "preferred": true
  6668. }
  6669. ]
  6670. },
  6671. "require": {
  6672. "php": "^7.1 || ^8.0"
  6673. },
  6674. "replace": {
  6675. "myclabs/deep-copy": "self.version"
  6676. },
  6677. "require-dev": {
  6678. "doctrine/collections": "^1.0",
  6679. "doctrine/common": "^2.6",
  6680. "phpunit/phpunit": "^7.1"
  6681. },
  6682. "type": "library",
  6683. "autoload": {
  6684. "psr-4": {
  6685. "DeepCopy\\": "src/DeepCopy/"
  6686. },
  6687. "files": [
  6688. "src/DeepCopy/deep_copy.php"
  6689. ]
  6690. },
  6691. "notification-url": "https://packagist.org/downloads/",
  6692. "license": [
  6693. "MIT"
  6694. ],
  6695. "description": "Create deep copies (clones) of your objects",
  6696. "keywords": [
  6697. "clone",
  6698. "copy",
  6699. "duplicate",
  6700. "object",
  6701. "object graph"
  6702. ],
  6703. "support": {
  6704. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6705. "source": "https://github.com/myclabs/DeepCopy/tree/1.x"
  6706. },
  6707. "funding": [
  6708. {
  6709. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6710. "type": "tidelift"
  6711. }
  6712. ],
  6713. "time": "2020-06-29T13:22:24+00:00"
  6714. },
  6715. {
  6716. "name": "phar-io/manifest",
  6717. "version": "1.0.3",
  6718. "source": {
  6719. "type": "git",
  6720. "url": "https://github.com/phar-io/manifest.git",
  6721. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  6722. },
  6723. "dist": {
  6724. "type": "zip",
  6725. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6726. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6727. "shasum": "",
  6728. "mirrors": [
  6729. {
  6730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6731. "preferred": true
  6732. }
  6733. ]
  6734. },
  6735. "require": {
  6736. "ext-dom": "*",
  6737. "ext-phar": "*",
  6738. "phar-io/version": "^2.0",
  6739. "php": "^5.6 || ^7.0"
  6740. },
  6741. "type": "library",
  6742. "extra": {
  6743. "branch-alias": {
  6744. "dev-master": "1.0.x-dev"
  6745. }
  6746. },
  6747. "autoload": {
  6748. "classmap": [
  6749. "src/"
  6750. ]
  6751. },
  6752. "notification-url": "https://packagist.org/downloads/",
  6753. "license": [
  6754. "BSD-3-Clause"
  6755. ],
  6756. "authors": [
  6757. {
  6758. "name": "Arne Blankerts",
  6759. "email": "arne@blankerts.de",
  6760. "role": "Developer"
  6761. },
  6762. {
  6763. "name": "Sebastian Heuer",
  6764. "email": "sebastian@phpeople.de",
  6765. "role": "Developer"
  6766. },
  6767. {
  6768. "name": "Sebastian Bergmann",
  6769. "email": "sebastian@phpunit.de",
  6770. "role": "Developer"
  6771. }
  6772. ],
  6773. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6774. "support": {
  6775. "issues": "https://github.com/phar-io/manifest/issues",
  6776. "source": "https://github.com/phar-io/manifest/tree/master"
  6777. },
  6778. "time": "2018-07-08T19:23:20+00:00"
  6779. },
  6780. {
  6781. "name": "phar-io/version",
  6782. "version": "2.0.1",
  6783. "source": {
  6784. "type": "git",
  6785. "url": "https://github.com/phar-io/version.git",
  6786. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  6787. },
  6788. "dist": {
  6789. "type": "zip",
  6790. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6791. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6792. "shasum": "",
  6793. "mirrors": [
  6794. {
  6795. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6796. "preferred": true
  6797. }
  6798. ]
  6799. },
  6800. "require": {
  6801. "php": "^5.6 || ^7.0"
  6802. },
  6803. "type": "library",
  6804. "autoload": {
  6805. "classmap": [
  6806. "src/"
  6807. ]
  6808. },
  6809. "notification-url": "https://packagist.org/downloads/",
  6810. "license": [
  6811. "BSD-3-Clause"
  6812. ],
  6813. "authors": [
  6814. {
  6815. "name": "Arne Blankerts",
  6816. "email": "arne@blankerts.de",
  6817. "role": "Developer"
  6818. },
  6819. {
  6820. "name": "Sebastian Heuer",
  6821. "email": "sebastian@phpeople.de",
  6822. "role": "Developer"
  6823. },
  6824. {
  6825. "name": "Sebastian Bergmann",
  6826. "email": "sebastian@phpunit.de",
  6827. "role": "Developer"
  6828. }
  6829. ],
  6830. "description": "Library for handling version information and constraints",
  6831. "support": {
  6832. "issues": "https://github.com/phar-io/version/issues",
  6833. "source": "https://github.com/phar-io/version/tree/master"
  6834. },
  6835. "time": "2018-07-08T19:19:57+00:00"
  6836. },
  6837. {
  6838. "name": "php-cs-fixer/diff",
  6839. "version": "v1.3.1",
  6840. "source": {
  6841. "type": "git",
  6842. "url": "https://github.com/PHP-CS-Fixer/diff.git",
  6843. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759"
  6844. },
  6845. "dist": {
  6846. "type": "zip",
  6847. "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/dbd31aeb251639ac0b9e7e29405c1441907f5759",
  6848. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759",
  6849. "shasum": "",
  6850. "mirrors": [
  6851. {
  6852. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6853. "preferred": true
  6854. }
  6855. ]
  6856. },
  6857. "require": {
  6858. "php": "^5.6 || ^7.0 || ^8.0"
  6859. },
  6860. "require-dev": {
  6861. "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0",
  6862. "symfony/process": "^3.3"
  6863. },
  6864. "type": "library",
  6865. "autoload": {
  6866. "classmap": [
  6867. "src/"
  6868. ]
  6869. },
  6870. "notification-url": "https://packagist.org/downloads/",
  6871. "license": [
  6872. "BSD-3-Clause"
  6873. ],
  6874. "authors": [
  6875. {
  6876. "name": "Sebastian Bergmann",
  6877. "email": "sebastian@phpunit.de"
  6878. },
  6879. {
  6880. "name": "Kore Nordmann",
  6881. "email": "mail@kore-nordmann.de"
  6882. },
  6883. {
  6884. "name": "SpacePossum"
  6885. }
  6886. ],
  6887. "description": "sebastian/diff v2 backport support for PHP5.6",
  6888. "homepage": "https://github.com/PHP-CS-Fixer",
  6889. "keywords": [
  6890. "diff"
  6891. ],
  6892. "support": {
  6893. "issues": "https://github.com/PHP-CS-Fixer/diff/issues",
  6894. "source": "https://github.com/PHP-CS-Fixer/diff/tree/v1.3.1"
  6895. },
  6896. "time": "2020-10-14T08:39:05+00:00"
  6897. },
  6898. {
  6899. "name": "phpspec/prophecy",
  6900. "version": "1.12.1",
  6901. "source": {
  6902. "type": "git",
  6903. "url": "https://github.com/phpspec/prophecy.git",
  6904. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  6905. },
  6906. "dist": {
  6907. "type": "zip",
  6908. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  6909. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  6910. "shasum": "",
  6911. "mirrors": [
  6912. {
  6913. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6914. "preferred": true
  6915. }
  6916. ]
  6917. },
  6918. "require": {
  6919. "doctrine/instantiator": "^1.2",
  6920. "php": "^7.2 || ~8.0, <8.1",
  6921. "phpdocumentor/reflection-docblock": "^5.2",
  6922. "sebastian/comparator": "^3.0 || ^4.0",
  6923. "sebastian/recursion-context": "^3.0 || ^4.0"
  6924. },
  6925. "require-dev": {
  6926. "phpspec/phpspec": "^6.0",
  6927. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  6928. },
  6929. "type": "library",
  6930. "extra": {
  6931. "branch-alias": {
  6932. "dev-master": "1.11.x-dev"
  6933. }
  6934. },
  6935. "autoload": {
  6936. "psr-4": {
  6937. "Prophecy\\": "src/Prophecy"
  6938. }
  6939. },
  6940. "notification-url": "https://packagist.org/downloads/",
  6941. "license": [
  6942. "MIT"
  6943. ],
  6944. "authors": [
  6945. {
  6946. "name": "Konstantin Kudryashov",
  6947. "email": "ever.zet@gmail.com",
  6948. "homepage": "http://everzet.com"
  6949. },
  6950. {
  6951. "name": "Marcello Duarte",
  6952. "email": "marcello.duarte@gmail.com"
  6953. }
  6954. ],
  6955. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6956. "homepage": "https://github.com/phpspec/prophecy",
  6957. "keywords": [
  6958. "Double",
  6959. "Dummy",
  6960. "fake",
  6961. "mock",
  6962. "spy",
  6963. "stub"
  6964. ],
  6965. "support": {
  6966. "issues": "https://github.com/phpspec/prophecy/issues",
  6967. "source": "https://github.com/phpspec/prophecy/tree/1.12.1"
  6968. },
  6969. "time": "2020-09-29T09:10:42+00:00"
  6970. },
  6971. {
  6972. "name": "phpstan/phpstan",
  6973. "version": "0.12.54",
  6974. "source": {
  6975. "type": "git",
  6976. "url": "https://github.com/phpstan/phpstan.git",
  6977. "reference": "45c7b999a4b7dd9ac5558bdaaf23dcebbef88223"
  6978. },
  6979. "dist": {
  6980. "type": "zip",
  6981. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/45c7b999a4b7dd9ac5558bdaaf23dcebbef88223",
  6982. "reference": "45c7b999a4b7dd9ac5558bdaaf23dcebbef88223",
  6983. "shasum": "",
  6984. "mirrors": [
  6985. {
  6986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6987. "preferred": true
  6988. }
  6989. ]
  6990. },
  6991. "require": {
  6992. "php": "^7.1|^8.0"
  6993. },
  6994. "conflict": {
  6995. "phpstan/phpstan-shim": "*"
  6996. },
  6997. "bin": [
  6998. "phpstan",
  6999. "phpstan.phar"
  7000. ],
  7001. "type": "library",
  7002. "extra": {
  7003. "branch-alias": {
  7004. "dev-master": "0.12-dev"
  7005. }
  7006. },
  7007. "autoload": {
  7008. "files": [
  7009. "bootstrap.php"
  7010. ]
  7011. },
  7012. "notification-url": "https://packagist.org/downloads/",
  7013. "license": [
  7014. "MIT"
  7015. ],
  7016. "description": "PHPStan - PHP Static Analysis Tool",
  7017. "support": {
  7018. "issues": "https://github.com/phpstan/phpstan/issues",
  7019. "source": "https://github.com/phpstan/phpstan/tree/0.12.54"
  7020. },
  7021. "funding": [
  7022. {
  7023. "url": "https://github.com/ondrejmirtes",
  7024. "type": "github"
  7025. },
  7026. {
  7027. "url": "https://www.patreon.com/phpstan",
  7028. "type": "patreon"
  7029. },
  7030. {
  7031. "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
  7032. "type": "tidelift"
  7033. }
  7034. ],
  7035. "time": "2020-11-05T13:36:26+00:00"
  7036. },
  7037. {
  7038. "name": "phpunit/php-code-coverage",
  7039. "version": "6.1.4",
  7040. "source": {
  7041. "type": "git",
  7042. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7043. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  7044. },
  7045. "dist": {
  7046. "type": "zip",
  7047. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  7048. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  7049. "shasum": "",
  7050. "mirrors": [
  7051. {
  7052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7053. "preferred": true
  7054. }
  7055. ]
  7056. },
  7057. "require": {
  7058. "ext-dom": "*",
  7059. "ext-xmlwriter": "*",
  7060. "php": "^7.1",
  7061. "phpunit/php-file-iterator": "^2.0",
  7062. "phpunit/php-text-template": "^1.2.1",
  7063. "phpunit/php-token-stream": "^3.0",
  7064. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7065. "sebastian/environment": "^3.1 || ^4.0",
  7066. "sebastian/version": "^2.0.1",
  7067. "theseer/tokenizer": "^1.1"
  7068. },
  7069. "require-dev": {
  7070. "phpunit/phpunit": "^7.0"
  7071. },
  7072. "suggest": {
  7073. "ext-xdebug": "^2.6.0"
  7074. },
  7075. "type": "library",
  7076. "extra": {
  7077. "branch-alias": {
  7078. "dev-master": "6.1-dev"
  7079. }
  7080. },
  7081. "autoload": {
  7082. "classmap": [
  7083. "src/"
  7084. ]
  7085. },
  7086. "notification-url": "https://packagist.org/downloads/",
  7087. "license": [
  7088. "BSD-3-Clause"
  7089. ],
  7090. "authors": [
  7091. {
  7092. "name": "Sebastian Bergmann",
  7093. "email": "sebastian@phpunit.de",
  7094. "role": "lead"
  7095. }
  7096. ],
  7097. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7098. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7099. "keywords": [
  7100. "coverage",
  7101. "testing",
  7102. "xunit"
  7103. ],
  7104. "support": {
  7105. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7106. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/master"
  7107. },
  7108. "time": "2018-10-31T16:06:48+00:00"
  7109. },
  7110. {
  7111. "name": "phpunit/php-file-iterator",
  7112. "version": "2.0.2",
  7113. "source": {
  7114. "type": "git",
  7115. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7116. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  7117. },
  7118. "dist": {
  7119. "type": "zip",
  7120. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  7121. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  7122. "shasum": "",
  7123. "mirrors": [
  7124. {
  7125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7126. "preferred": true
  7127. }
  7128. ]
  7129. },
  7130. "require": {
  7131. "php": "^7.1"
  7132. },
  7133. "require-dev": {
  7134. "phpunit/phpunit": "^7.1"
  7135. },
  7136. "type": "library",
  7137. "extra": {
  7138. "branch-alias": {
  7139. "dev-master": "2.0.x-dev"
  7140. }
  7141. },
  7142. "autoload": {
  7143. "classmap": [
  7144. "src/"
  7145. ]
  7146. },
  7147. "notification-url": "https://packagist.org/downloads/",
  7148. "license": [
  7149. "BSD-3-Clause"
  7150. ],
  7151. "authors": [
  7152. {
  7153. "name": "Sebastian Bergmann",
  7154. "email": "sebastian@phpunit.de",
  7155. "role": "lead"
  7156. }
  7157. ],
  7158. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7159. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7160. "keywords": [
  7161. "filesystem",
  7162. "iterator"
  7163. ],
  7164. "support": {
  7165. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7166. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.2"
  7167. },
  7168. "time": "2018-09-13T20:33:42+00:00"
  7169. },
  7170. {
  7171. "name": "phpunit/php-text-template",
  7172. "version": "1.2.1",
  7173. "source": {
  7174. "type": "git",
  7175. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7176. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7177. },
  7178. "dist": {
  7179. "type": "zip",
  7180. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7181. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7182. "shasum": "",
  7183. "mirrors": [
  7184. {
  7185. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7186. "preferred": true
  7187. }
  7188. ]
  7189. },
  7190. "require": {
  7191. "php": ">=5.3.3"
  7192. },
  7193. "type": "library",
  7194. "autoload": {
  7195. "classmap": [
  7196. "src/"
  7197. ]
  7198. },
  7199. "notification-url": "https://packagist.org/downloads/",
  7200. "license": [
  7201. "BSD-3-Clause"
  7202. ],
  7203. "authors": [
  7204. {
  7205. "name": "Sebastian Bergmann",
  7206. "email": "sebastian@phpunit.de",
  7207. "role": "lead"
  7208. }
  7209. ],
  7210. "description": "Simple template engine.",
  7211. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7212. "keywords": [
  7213. "template"
  7214. ],
  7215. "support": {
  7216. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7217. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  7218. },
  7219. "time": "2015-06-21T13:50:34+00:00"
  7220. },
  7221. {
  7222. "name": "phpunit/php-timer",
  7223. "version": "2.1.2",
  7224. "source": {
  7225. "type": "git",
  7226. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7227. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  7228. },
  7229. "dist": {
  7230. "type": "zip",
  7231. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  7232. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  7233. "shasum": "",
  7234. "mirrors": [
  7235. {
  7236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7237. "preferred": true
  7238. }
  7239. ]
  7240. },
  7241. "require": {
  7242. "php": "^7.1"
  7243. },
  7244. "require-dev": {
  7245. "phpunit/phpunit": "^7.0"
  7246. },
  7247. "type": "library",
  7248. "extra": {
  7249. "branch-alias": {
  7250. "dev-master": "2.1-dev"
  7251. }
  7252. },
  7253. "autoload": {
  7254. "classmap": [
  7255. "src/"
  7256. ]
  7257. },
  7258. "notification-url": "https://packagist.org/downloads/",
  7259. "license": [
  7260. "BSD-3-Clause"
  7261. ],
  7262. "authors": [
  7263. {
  7264. "name": "Sebastian Bergmann",
  7265. "email": "sebastian@phpunit.de",
  7266. "role": "lead"
  7267. }
  7268. ],
  7269. "description": "Utility class for timing",
  7270. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7271. "keywords": [
  7272. "timer"
  7273. ],
  7274. "support": {
  7275. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7276. "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
  7277. },
  7278. "time": "2019-06-07T04:22:29+00:00"
  7279. },
  7280. {
  7281. "name": "phpunit/php-token-stream",
  7282. "version": "3.1.1",
  7283. "source": {
  7284. "type": "git",
  7285. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7286. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  7287. },
  7288. "dist": {
  7289. "type": "zip",
  7290. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  7291. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  7292. "shasum": "",
  7293. "mirrors": [
  7294. {
  7295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7296. "preferred": true
  7297. }
  7298. ]
  7299. },
  7300. "require": {
  7301. "ext-tokenizer": "*",
  7302. "php": "^7.1"
  7303. },
  7304. "require-dev": {
  7305. "phpunit/phpunit": "^7.0"
  7306. },
  7307. "type": "library",
  7308. "extra": {
  7309. "branch-alias": {
  7310. "dev-master": "3.1-dev"
  7311. }
  7312. },
  7313. "autoload": {
  7314. "classmap": [
  7315. "src/"
  7316. ]
  7317. },
  7318. "notification-url": "https://packagist.org/downloads/",
  7319. "license": [
  7320. "BSD-3-Clause"
  7321. ],
  7322. "authors": [
  7323. {
  7324. "name": "Sebastian Bergmann",
  7325. "email": "sebastian@phpunit.de"
  7326. }
  7327. ],
  7328. "description": "Wrapper around PHP's tokenizer extension.",
  7329. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7330. "keywords": [
  7331. "tokenizer"
  7332. ],
  7333. "support": {
  7334. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  7335. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.1"
  7336. },
  7337. "abandoned": true,
  7338. "time": "2019-09-17T06:23:10+00:00"
  7339. },
  7340. {
  7341. "name": "phpunit/phpunit",
  7342. "version": "7.5.20",
  7343. "source": {
  7344. "type": "git",
  7345. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7346. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  7347. },
  7348. "dist": {
  7349. "type": "zip",
  7350. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  7351. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  7352. "shasum": "",
  7353. "mirrors": [
  7354. {
  7355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7356. "preferred": true
  7357. }
  7358. ]
  7359. },
  7360. "require": {
  7361. "doctrine/instantiator": "^1.1",
  7362. "ext-dom": "*",
  7363. "ext-json": "*",
  7364. "ext-libxml": "*",
  7365. "ext-mbstring": "*",
  7366. "ext-xml": "*",
  7367. "myclabs/deep-copy": "^1.7",
  7368. "phar-io/manifest": "^1.0.2",
  7369. "phar-io/version": "^2.0",
  7370. "php": "^7.1",
  7371. "phpspec/prophecy": "^1.7",
  7372. "phpunit/php-code-coverage": "^6.0.7",
  7373. "phpunit/php-file-iterator": "^2.0.1",
  7374. "phpunit/php-text-template": "^1.2.1",
  7375. "phpunit/php-timer": "^2.1",
  7376. "sebastian/comparator": "^3.0",
  7377. "sebastian/diff": "^3.0",
  7378. "sebastian/environment": "^4.0",
  7379. "sebastian/exporter": "^3.1",
  7380. "sebastian/global-state": "^2.0",
  7381. "sebastian/object-enumerator": "^3.0.3",
  7382. "sebastian/resource-operations": "^2.0",
  7383. "sebastian/version": "^2.0.1"
  7384. },
  7385. "conflict": {
  7386. "phpunit/phpunit-mock-objects": "*"
  7387. },
  7388. "require-dev": {
  7389. "ext-pdo": "*"
  7390. },
  7391. "suggest": {
  7392. "ext-soap": "*",
  7393. "ext-xdebug": "*",
  7394. "phpunit/php-invoker": "^2.0"
  7395. },
  7396. "bin": [
  7397. "phpunit"
  7398. ],
  7399. "type": "library",
  7400. "extra": {
  7401. "branch-alias": {
  7402. "dev-master": "7.5-dev"
  7403. }
  7404. },
  7405. "autoload": {
  7406. "classmap": [
  7407. "src/"
  7408. ]
  7409. },
  7410. "notification-url": "https://packagist.org/downloads/",
  7411. "license": [
  7412. "BSD-3-Clause"
  7413. ],
  7414. "authors": [
  7415. {
  7416. "name": "Sebastian Bergmann",
  7417. "email": "sebastian@phpunit.de",
  7418. "role": "lead"
  7419. }
  7420. ],
  7421. "description": "The PHP Unit Testing framework.",
  7422. "homepage": "https://phpunit.de/",
  7423. "keywords": [
  7424. "phpunit",
  7425. "testing",
  7426. "xunit"
  7427. ],
  7428. "support": {
  7429. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7430. "source": "https://github.com/sebastianbergmann/phpunit/tree/7.5.20"
  7431. },
  7432. "time": "2020-01-08T08:45:45+00:00"
  7433. },
  7434. {
  7435. "name": "sebastian/code-unit-reverse-lookup",
  7436. "version": "1.0.1",
  7437. "source": {
  7438. "type": "git",
  7439. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7440. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  7441. },
  7442. "dist": {
  7443. "type": "zip",
  7444. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7445. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7446. "shasum": "",
  7447. "mirrors": [
  7448. {
  7449. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7450. "preferred": true
  7451. }
  7452. ]
  7453. },
  7454. "require": {
  7455. "php": "^5.6 || ^7.0"
  7456. },
  7457. "require-dev": {
  7458. "phpunit/phpunit": "^5.7 || ^6.0"
  7459. },
  7460. "type": "library",
  7461. "extra": {
  7462. "branch-alias": {
  7463. "dev-master": "1.0.x-dev"
  7464. }
  7465. },
  7466. "autoload": {
  7467. "classmap": [
  7468. "src/"
  7469. ]
  7470. },
  7471. "notification-url": "https://packagist.org/downloads/",
  7472. "license": [
  7473. "BSD-3-Clause"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "Sebastian Bergmann",
  7478. "email": "sebastian@phpunit.de"
  7479. }
  7480. ],
  7481. "description": "Looks up which function or method a line of code belongs to",
  7482. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7483. "support": {
  7484. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7485. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/master"
  7486. },
  7487. "time": "2017-03-04T06:30:41+00:00"
  7488. },
  7489. {
  7490. "name": "sebastian/comparator",
  7491. "version": "3.0.2",
  7492. "source": {
  7493. "type": "git",
  7494. "url": "https://github.com/sebastianbergmann/comparator.git",
  7495. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  7496. },
  7497. "dist": {
  7498. "type": "zip",
  7499. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7500. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7501. "shasum": "",
  7502. "mirrors": [
  7503. {
  7504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7505. "preferred": true
  7506. }
  7507. ]
  7508. },
  7509. "require": {
  7510. "php": "^7.1",
  7511. "sebastian/diff": "^3.0",
  7512. "sebastian/exporter": "^3.1"
  7513. },
  7514. "require-dev": {
  7515. "phpunit/phpunit": "^7.1"
  7516. },
  7517. "type": "library",
  7518. "extra": {
  7519. "branch-alias": {
  7520. "dev-master": "3.0-dev"
  7521. }
  7522. },
  7523. "autoload": {
  7524. "classmap": [
  7525. "src/"
  7526. ]
  7527. },
  7528. "notification-url": "https://packagist.org/downloads/",
  7529. "license": [
  7530. "BSD-3-Clause"
  7531. ],
  7532. "authors": [
  7533. {
  7534. "name": "Jeff Welch",
  7535. "email": "whatthejeff@gmail.com"
  7536. },
  7537. {
  7538. "name": "Volker Dusch",
  7539. "email": "github@wallbash.com"
  7540. },
  7541. {
  7542. "name": "Bernhard Schussek",
  7543. "email": "bschussek@2bepublished.at"
  7544. },
  7545. {
  7546. "name": "Sebastian Bergmann",
  7547. "email": "sebastian@phpunit.de"
  7548. }
  7549. ],
  7550. "description": "Provides the functionality to compare PHP values for equality",
  7551. "homepage": "https://github.com/sebastianbergmann/comparator",
  7552. "keywords": [
  7553. "comparator",
  7554. "compare",
  7555. "equality"
  7556. ],
  7557. "support": {
  7558. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7559. "source": "https://github.com/sebastianbergmann/comparator/tree/master"
  7560. },
  7561. "time": "2018-07-12T15:12:46+00:00"
  7562. },
  7563. {
  7564. "name": "sebastian/diff",
  7565. "version": "3.0.2",
  7566. "source": {
  7567. "type": "git",
  7568. "url": "https://github.com/sebastianbergmann/diff.git",
  7569. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  7570. },
  7571. "dist": {
  7572. "type": "zip",
  7573. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7574. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7575. "shasum": "",
  7576. "mirrors": [
  7577. {
  7578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7579. "preferred": true
  7580. }
  7581. ]
  7582. },
  7583. "require": {
  7584. "php": "^7.1"
  7585. },
  7586. "require-dev": {
  7587. "phpunit/phpunit": "^7.5 || ^8.0",
  7588. "symfony/process": "^2 || ^3.3 || ^4"
  7589. },
  7590. "type": "library",
  7591. "extra": {
  7592. "branch-alias": {
  7593. "dev-master": "3.0-dev"
  7594. }
  7595. },
  7596. "autoload": {
  7597. "classmap": [
  7598. "src/"
  7599. ]
  7600. },
  7601. "notification-url": "https://packagist.org/downloads/",
  7602. "license": [
  7603. "BSD-3-Clause"
  7604. ],
  7605. "authors": [
  7606. {
  7607. "name": "Kore Nordmann",
  7608. "email": "mail@kore-nordmann.de"
  7609. },
  7610. {
  7611. "name": "Sebastian Bergmann",
  7612. "email": "sebastian@phpunit.de"
  7613. }
  7614. ],
  7615. "description": "Diff implementation",
  7616. "homepage": "https://github.com/sebastianbergmann/diff",
  7617. "keywords": [
  7618. "diff",
  7619. "udiff",
  7620. "unidiff",
  7621. "unified diff"
  7622. ],
  7623. "support": {
  7624. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7625. "source": "https://github.com/sebastianbergmann/diff/tree/master"
  7626. },
  7627. "time": "2019-02-04T06:01:07+00:00"
  7628. },
  7629. {
  7630. "name": "sebastian/environment",
  7631. "version": "4.2.3",
  7632. "source": {
  7633. "type": "git",
  7634. "url": "https://github.com/sebastianbergmann/environment.git",
  7635. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  7636. },
  7637. "dist": {
  7638. "type": "zip",
  7639. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  7640. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  7641. "shasum": "",
  7642. "mirrors": [
  7643. {
  7644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7645. "preferred": true
  7646. }
  7647. ]
  7648. },
  7649. "require": {
  7650. "php": "^7.1"
  7651. },
  7652. "require-dev": {
  7653. "phpunit/phpunit": "^7.5"
  7654. },
  7655. "suggest": {
  7656. "ext-posix": "*"
  7657. },
  7658. "type": "library",
  7659. "extra": {
  7660. "branch-alias": {
  7661. "dev-master": "4.2-dev"
  7662. }
  7663. },
  7664. "autoload": {
  7665. "classmap": [
  7666. "src/"
  7667. ]
  7668. },
  7669. "notification-url": "https://packagist.org/downloads/",
  7670. "license": [
  7671. "BSD-3-Clause"
  7672. ],
  7673. "authors": [
  7674. {
  7675. "name": "Sebastian Bergmann",
  7676. "email": "sebastian@phpunit.de"
  7677. }
  7678. ],
  7679. "description": "Provides functionality to handle HHVM/PHP environments",
  7680. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7681. "keywords": [
  7682. "Xdebug",
  7683. "environment",
  7684. "hhvm"
  7685. ],
  7686. "support": {
  7687. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7688. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.3"
  7689. },
  7690. "time": "2019-11-20T08:46:58+00:00"
  7691. },
  7692. {
  7693. "name": "sebastian/exporter",
  7694. "version": "3.1.2",
  7695. "source": {
  7696. "type": "git",
  7697. "url": "https://github.com/sebastianbergmann/exporter.git",
  7698. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  7699. },
  7700. "dist": {
  7701. "type": "zip",
  7702. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  7703. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  7704. "shasum": "",
  7705. "mirrors": [
  7706. {
  7707. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7708. "preferred": true
  7709. }
  7710. ]
  7711. },
  7712. "require": {
  7713. "php": "^7.0",
  7714. "sebastian/recursion-context": "^3.0"
  7715. },
  7716. "require-dev": {
  7717. "ext-mbstring": "*",
  7718. "phpunit/phpunit": "^6.0"
  7719. },
  7720. "type": "library",
  7721. "extra": {
  7722. "branch-alias": {
  7723. "dev-master": "3.1.x-dev"
  7724. }
  7725. },
  7726. "autoload": {
  7727. "classmap": [
  7728. "src/"
  7729. ]
  7730. },
  7731. "notification-url": "https://packagist.org/downloads/",
  7732. "license": [
  7733. "BSD-3-Clause"
  7734. ],
  7735. "authors": [
  7736. {
  7737. "name": "Sebastian Bergmann",
  7738. "email": "sebastian@phpunit.de"
  7739. },
  7740. {
  7741. "name": "Jeff Welch",
  7742. "email": "whatthejeff@gmail.com"
  7743. },
  7744. {
  7745. "name": "Volker Dusch",
  7746. "email": "github@wallbash.com"
  7747. },
  7748. {
  7749. "name": "Adam Harvey",
  7750. "email": "aharvey@php.net"
  7751. },
  7752. {
  7753. "name": "Bernhard Schussek",
  7754. "email": "bschussek@gmail.com"
  7755. }
  7756. ],
  7757. "description": "Provides the functionality to export PHP variables for visualization",
  7758. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7759. "keywords": [
  7760. "export",
  7761. "exporter"
  7762. ],
  7763. "support": {
  7764. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7765. "source": "https://github.com/sebastianbergmann/exporter/tree/master"
  7766. },
  7767. "time": "2019-09-14T09:02:43+00:00"
  7768. },
  7769. {
  7770. "name": "sebastian/global-state",
  7771. "version": "2.0.0",
  7772. "source": {
  7773. "type": "git",
  7774. "url": "https://github.com/sebastianbergmann/global-state.git",
  7775. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  7776. },
  7777. "dist": {
  7778. "type": "zip",
  7779. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7780. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7781. "shasum": "",
  7782. "mirrors": [
  7783. {
  7784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7785. "preferred": true
  7786. }
  7787. ]
  7788. },
  7789. "require": {
  7790. "php": "^7.0"
  7791. },
  7792. "require-dev": {
  7793. "phpunit/phpunit": "^6.0"
  7794. },
  7795. "suggest": {
  7796. "ext-uopz": "*"
  7797. },
  7798. "type": "library",
  7799. "extra": {
  7800. "branch-alias": {
  7801. "dev-master": "2.0-dev"
  7802. }
  7803. },
  7804. "autoload": {
  7805. "classmap": [
  7806. "src/"
  7807. ]
  7808. },
  7809. "notification-url": "https://packagist.org/downloads/",
  7810. "license": [
  7811. "BSD-3-Clause"
  7812. ],
  7813. "authors": [
  7814. {
  7815. "name": "Sebastian Bergmann",
  7816. "email": "sebastian@phpunit.de"
  7817. }
  7818. ],
  7819. "description": "Snapshotting of global state",
  7820. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7821. "keywords": [
  7822. "global state"
  7823. ],
  7824. "support": {
  7825. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7826. "source": "https://github.com/sebastianbergmann/global-state/tree/2.0.0"
  7827. },
  7828. "time": "2017-04-27T15:39:26+00:00"
  7829. },
  7830. {
  7831. "name": "sebastian/object-enumerator",
  7832. "version": "3.0.3",
  7833. "source": {
  7834. "type": "git",
  7835. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7836. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  7837. },
  7838. "dist": {
  7839. "type": "zip",
  7840. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7841. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7842. "shasum": "",
  7843. "mirrors": [
  7844. {
  7845. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7846. "preferred": true
  7847. }
  7848. ]
  7849. },
  7850. "require": {
  7851. "php": "^7.0",
  7852. "sebastian/object-reflector": "^1.1.1",
  7853. "sebastian/recursion-context": "^3.0"
  7854. },
  7855. "require-dev": {
  7856. "phpunit/phpunit": "^6.0"
  7857. },
  7858. "type": "library",
  7859. "extra": {
  7860. "branch-alias": {
  7861. "dev-master": "3.0.x-dev"
  7862. }
  7863. },
  7864. "autoload": {
  7865. "classmap": [
  7866. "src/"
  7867. ]
  7868. },
  7869. "notification-url": "https://packagist.org/downloads/",
  7870. "license": [
  7871. "BSD-3-Clause"
  7872. ],
  7873. "authors": [
  7874. {
  7875. "name": "Sebastian Bergmann",
  7876. "email": "sebastian@phpunit.de"
  7877. }
  7878. ],
  7879. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7880. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7881. "support": {
  7882. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7883. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/master"
  7884. },
  7885. "time": "2017-08-03T12:35:26+00:00"
  7886. },
  7887. {
  7888. "name": "sebastian/object-reflector",
  7889. "version": "1.1.1",
  7890. "source": {
  7891. "type": "git",
  7892. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7893. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  7894. },
  7895. "dist": {
  7896. "type": "zip",
  7897. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  7898. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  7899. "shasum": "",
  7900. "mirrors": [
  7901. {
  7902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7903. "preferred": true
  7904. }
  7905. ]
  7906. },
  7907. "require": {
  7908. "php": "^7.0"
  7909. },
  7910. "require-dev": {
  7911. "phpunit/phpunit": "^6.0"
  7912. },
  7913. "type": "library",
  7914. "extra": {
  7915. "branch-alias": {
  7916. "dev-master": "1.1-dev"
  7917. }
  7918. },
  7919. "autoload": {
  7920. "classmap": [
  7921. "src/"
  7922. ]
  7923. },
  7924. "notification-url": "https://packagist.org/downloads/",
  7925. "license": [
  7926. "BSD-3-Clause"
  7927. ],
  7928. "authors": [
  7929. {
  7930. "name": "Sebastian Bergmann",
  7931. "email": "sebastian@phpunit.de"
  7932. }
  7933. ],
  7934. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7935. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7936. "support": {
  7937. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7938. "source": "https://github.com/sebastianbergmann/object-reflector/tree/master"
  7939. },
  7940. "time": "2017-03-29T09:07:27+00:00"
  7941. },
  7942. {
  7943. "name": "sebastian/recursion-context",
  7944. "version": "3.0.0",
  7945. "source": {
  7946. "type": "git",
  7947. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7948. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  7949. },
  7950. "dist": {
  7951. "type": "zip",
  7952. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7953. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7954. "shasum": "",
  7955. "mirrors": [
  7956. {
  7957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7958. "preferred": true
  7959. }
  7960. ]
  7961. },
  7962. "require": {
  7963. "php": "^7.0"
  7964. },
  7965. "require-dev": {
  7966. "phpunit/phpunit": "^6.0"
  7967. },
  7968. "type": "library",
  7969. "extra": {
  7970. "branch-alias": {
  7971. "dev-master": "3.0.x-dev"
  7972. }
  7973. },
  7974. "autoload": {
  7975. "classmap": [
  7976. "src/"
  7977. ]
  7978. },
  7979. "notification-url": "https://packagist.org/downloads/",
  7980. "license": [
  7981. "BSD-3-Clause"
  7982. ],
  7983. "authors": [
  7984. {
  7985. "name": "Jeff Welch",
  7986. "email": "whatthejeff@gmail.com"
  7987. },
  7988. {
  7989. "name": "Sebastian Bergmann",
  7990. "email": "sebastian@phpunit.de"
  7991. },
  7992. {
  7993. "name": "Adam Harvey",
  7994. "email": "aharvey@php.net"
  7995. }
  7996. ],
  7997. "description": "Provides functionality to recursively process PHP variables",
  7998. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7999. "support": {
  8000. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8001. "source": "https://github.com/sebastianbergmann/recursion-context/tree/master"
  8002. },
  8003. "time": "2017-03-03T06:23:57+00:00"
  8004. },
  8005. {
  8006. "name": "sebastian/resource-operations",
  8007. "version": "2.0.1",
  8008. "source": {
  8009. "type": "git",
  8010. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8011. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  8012. },
  8013. "dist": {
  8014. "type": "zip",
  8015. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  8016. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  8017. "shasum": "",
  8018. "mirrors": [
  8019. {
  8020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8021. "preferred": true
  8022. }
  8023. ]
  8024. },
  8025. "require": {
  8026. "php": "^7.1"
  8027. },
  8028. "type": "library",
  8029. "extra": {
  8030. "branch-alias": {
  8031. "dev-master": "2.0-dev"
  8032. }
  8033. },
  8034. "autoload": {
  8035. "classmap": [
  8036. "src/"
  8037. ]
  8038. },
  8039. "notification-url": "https://packagist.org/downloads/",
  8040. "license": [
  8041. "BSD-3-Clause"
  8042. ],
  8043. "authors": [
  8044. {
  8045. "name": "Sebastian Bergmann",
  8046. "email": "sebastian@phpunit.de"
  8047. }
  8048. ],
  8049. "description": "Provides a list of PHP built-in functions that operate on resources",
  8050. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8051. "support": {
  8052. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  8053. "source": "https://github.com/sebastianbergmann/resource-operations/tree/master"
  8054. },
  8055. "time": "2018-10-04T04:07:39+00:00"
  8056. },
  8057. {
  8058. "name": "sebastian/version",
  8059. "version": "2.0.1",
  8060. "source": {
  8061. "type": "git",
  8062. "url": "https://github.com/sebastianbergmann/version.git",
  8063. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8064. },
  8065. "dist": {
  8066. "type": "zip",
  8067. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8068. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8069. "shasum": "",
  8070. "mirrors": [
  8071. {
  8072. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8073. "preferred": true
  8074. }
  8075. ]
  8076. },
  8077. "require": {
  8078. "php": ">=5.6"
  8079. },
  8080. "type": "library",
  8081. "extra": {
  8082. "branch-alias": {
  8083. "dev-master": "2.0.x-dev"
  8084. }
  8085. },
  8086. "autoload": {
  8087. "classmap": [
  8088. "src/"
  8089. ]
  8090. },
  8091. "notification-url": "https://packagist.org/downloads/",
  8092. "license": [
  8093. "BSD-3-Clause"
  8094. ],
  8095. "authors": [
  8096. {
  8097. "name": "Sebastian Bergmann",
  8098. "email": "sebastian@phpunit.de",
  8099. "role": "lead"
  8100. }
  8101. ],
  8102. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8103. "homepage": "https://github.com/sebastianbergmann/version",
  8104. "support": {
  8105. "issues": "https://github.com/sebastianbergmann/version/issues",
  8106. "source": "https://github.com/sebastianbergmann/version/tree/master"
  8107. },
  8108. "time": "2016-10-03T07:35:21+00:00"
  8109. },
  8110. {
  8111. "name": "swoole/ide-helper",
  8112. "version": "4.5.7",
  8113. "source": {
  8114. "type": "git",
  8115. "url": "https://github.com/swoole/ide-helper.git",
  8116. "reference": "d0a31c530161ba0c44e199e105e6ec0b1f4b3e9e"
  8117. },
  8118. "dist": {
  8119. "type": "zip",
  8120. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/d0a31c530161ba0c44e199e105e6ec0b1f4b3e9e",
  8121. "reference": "d0a31c530161ba0c44e199e105e6ec0b1f4b3e9e",
  8122. "shasum": "",
  8123. "mirrors": [
  8124. {
  8125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8126. "preferred": true
  8127. }
  8128. ]
  8129. },
  8130. "require-dev": {
  8131. "guzzlehttp/guzzle": "~6.5.0",
  8132. "laminas/laminas-code": "~3.4.0",
  8133. "squizlabs/php_codesniffer": "~3.5.0",
  8134. "symfony/filesystem": "~4.0"
  8135. },
  8136. "type": "library",
  8137. "notification-url": "https://packagist.org/downloads/",
  8138. "license": [
  8139. "Apache-2.0"
  8140. ],
  8141. "authors": [
  8142. {
  8143. "name": "Team Swoole",
  8144. "email": "team@swoole.com"
  8145. }
  8146. ],
  8147. "description": "IDE help files for Swoole.",
  8148. "support": {
  8149. "issues": "https://github.com/swoole/ide-helper/issues",
  8150. "source": "https://github.com/swoole/ide-helper/tree/4.5.7"
  8151. },
  8152. "time": "2020-11-06T21:24:31+00:00"
  8153. },
  8154. {
  8155. "name": "symfony/deprecation-contracts",
  8156. "version": "v2.2.0",
  8157. "source": {
  8158. "type": "git",
  8159. "url": "https://github.com/symfony/deprecation-contracts.git",
  8160. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  8161. },
  8162. "dist": {
  8163. "type": "zip",
  8164. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  8165. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  8166. "shasum": "",
  8167. "mirrors": [
  8168. {
  8169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8170. "preferred": true
  8171. }
  8172. ]
  8173. },
  8174. "require": {
  8175. "php": ">=7.1"
  8176. },
  8177. "type": "library",
  8178. "extra": {
  8179. "branch-alias": {
  8180. "dev-master": "2.2-dev"
  8181. },
  8182. "thanks": {
  8183. "name": "symfony/contracts",
  8184. "url": "https://github.com/symfony/contracts"
  8185. }
  8186. },
  8187. "autoload": {
  8188. "files": [
  8189. "function.php"
  8190. ]
  8191. },
  8192. "notification-url": "https://packagist.org/downloads/",
  8193. "license": [
  8194. "MIT"
  8195. ],
  8196. "authors": [
  8197. {
  8198. "name": "Nicolas Grekas",
  8199. "email": "p@tchwork.com"
  8200. },
  8201. {
  8202. "name": "Symfony Community",
  8203. "homepage": "https://symfony.com/contributors"
  8204. }
  8205. ],
  8206. "description": "A generic function and convention to trigger deprecation notices",
  8207. "homepage": "https://symfony.com",
  8208. "support": {
  8209. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  8210. },
  8211. "funding": [
  8212. {
  8213. "url": "https://symfony.com/sponsor",
  8214. "type": "custom"
  8215. },
  8216. {
  8217. "url": "https://github.com/fabpot",
  8218. "type": "github"
  8219. },
  8220. {
  8221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8222. "type": "tidelift"
  8223. }
  8224. ],
  8225. "time": "2020-09-07T11:33:47+00:00"
  8226. },
  8227. {
  8228. "name": "symfony/event-dispatcher",
  8229. "version": "v5.1.8",
  8230. "source": {
  8231. "type": "git",
  8232. "url": "https://github.com/symfony/event-dispatcher.git",
  8233. "reference": "26f4edae48c913fc183a3da0553fe63bdfbd361a"
  8234. },
  8235. "dist": {
  8236. "type": "zip",
  8237. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/26f4edae48c913fc183a3da0553fe63bdfbd361a",
  8238. "reference": "26f4edae48c913fc183a3da0553fe63bdfbd361a",
  8239. "shasum": "",
  8240. "mirrors": [
  8241. {
  8242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8243. "preferred": true
  8244. }
  8245. ]
  8246. },
  8247. "require": {
  8248. "php": ">=7.2.5",
  8249. "symfony/deprecation-contracts": "^2.1",
  8250. "symfony/event-dispatcher-contracts": "^2",
  8251. "symfony/polyfill-php80": "^1.15"
  8252. },
  8253. "conflict": {
  8254. "symfony/dependency-injection": "<4.4"
  8255. },
  8256. "provide": {
  8257. "psr/event-dispatcher-implementation": "1.0",
  8258. "symfony/event-dispatcher-implementation": "2.0"
  8259. },
  8260. "require-dev": {
  8261. "psr/log": "~1.0",
  8262. "symfony/config": "^4.4|^5.0",
  8263. "symfony/dependency-injection": "^4.4|^5.0",
  8264. "symfony/error-handler": "^4.4|^5.0",
  8265. "symfony/expression-language": "^4.4|^5.0",
  8266. "symfony/http-foundation": "^4.4|^5.0",
  8267. "symfony/service-contracts": "^1.1|^2",
  8268. "symfony/stopwatch": "^4.4|^5.0"
  8269. },
  8270. "suggest": {
  8271. "symfony/dependency-injection": "",
  8272. "symfony/http-kernel": ""
  8273. },
  8274. "type": "library",
  8275. "autoload": {
  8276. "psr-4": {
  8277. "Symfony\\Component\\EventDispatcher\\": ""
  8278. },
  8279. "exclude-from-classmap": [
  8280. "/Tests/"
  8281. ]
  8282. },
  8283. "notification-url": "https://packagist.org/downloads/",
  8284. "license": [
  8285. "MIT"
  8286. ],
  8287. "authors": [
  8288. {
  8289. "name": "Fabien Potencier",
  8290. "email": "fabien@symfony.com"
  8291. },
  8292. {
  8293. "name": "Symfony Community",
  8294. "homepage": "https://symfony.com/contributors"
  8295. }
  8296. ],
  8297. "description": "Symfony EventDispatcher Component",
  8298. "homepage": "https://symfony.com",
  8299. "support": {
  8300. "source": "https://github.com/symfony/event-dispatcher/tree/v5.1.8"
  8301. },
  8302. "funding": [
  8303. {
  8304. "url": "https://symfony.com/sponsor",
  8305. "type": "custom"
  8306. },
  8307. {
  8308. "url": "https://github.com/fabpot",
  8309. "type": "github"
  8310. },
  8311. {
  8312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8313. "type": "tidelift"
  8314. }
  8315. ],
  8316. "time": "2020-10-24T12:01:57+00:00"
  8317. },
  8318. {
  8319. "name": "symfony/event-dispatcher-contracts",
  8320. "version": "v2.2.0",
  8321. "source": {
  8322. "type": "git",
  8323. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8324. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  8325. },
  8326. "dist": {
  8327. "type": "zip",
  8328. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  8329. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  8330. "shasum": "",
  8331. "mirrors": [
  8332. {
  8333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8334. "preferred": true
  8335. }
  8336. ]
  8337. },
  8338. "require": {
  8339. "php": ">=7.2.5",
  8340. "psr/event-dispatcher": "^1"
  8341. },
  8342. "suggest": {
  8343. "symfony/event-dispatcher-implementation": ""
  8344. },
  8345. "type": "library",
  8346. "extra": {
  8347. "branch-alias": {
  8348. "dev-master": "2.2-dev"
  8349. },
  8350. "thanks": {
  8351. "name": "symfony/contracts",
  8352. "url": "https://github.com/symfony/contracts"
  8353. }
  8354. },
  8355. "autoload": {
  8356. "psr-4": {
  8357. "Symfony\\Contracts\\EventDispatcher\\": ""
  8358. }
  8359. },
  8360. "notification-url": "https://packagist.org/downloads/",
  8361. "license": [
  8362. "MIT"
  8363. ],
  8364. "authors": [
  8365. {
  8366. "name": "Nicolas Grekas",
  8367. "email": "p@tchwork.com"
  8368. },
  8369. {
  8370. "name": "Symfony Community",
  8371. "homepage": "https://symfony.com/contributors"
  8372. }
  8373. ],
  8374. "description": "Generic abstractions related to dispatching event",
  8375. "homepage": "https://symfony.com",
  8376. "keywords": [
  8377. "abstractions",
  8378. "contracts",
  8379. "decoupling",
  8380. "interfaces",
  8381. "interoperability",
  8382. "standards"
  8383. ],
  8384. "support": {
  8385. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  8386. },
  8387. "funding": [
  8388. {
  8389. "url": "https://symfony.com/sponsor",
  8390. "type": "custom"
  8391. },
  8392. {
  8393. "url": "https://github.com/fabpot",
  8394. "type": "github"
  8395. },
  8396. {
  8397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8398. "type": "tidelift"
  8399. }
  8400. ],
  8401. "time": "2020-09-07T11:33:47+00:00"
  8402. },
  8403. {
  8404. "name": "symfony/filesystem",
  8405. "version": "v5.1.8",
  8406. "source": {
  8407. "type": "git",
  8408. "url": "https://github.com/symfony/filesystem.git",
  8409. "reference": "df08650ea7aee2d925380069c131a66124d79177"
  8410. },
  8411. "dist": {
  8412. "type": "zip",
  8413. "url": "https://api.github.com/repos/symfony/filesystem/zipball/df08650ea7aee2d925380069c131a66124d79177",
  8414. "reference": "df08650ea7aee2d925380069c131a66124d79177",
  8415. "shasum": "",
  8416. "mirrors": [
  8417. {
  8418. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8419. "preferred": true
  8420. }
  8421. ]
  8422. },
  8423. "require": {
  8424. "php": ">=7.2.5",
  8425. "symfony/polyfill-ctype": "~1.8"
  8426. },
  8427. "type": "library",
  8428. "autoload": {
  8429. "psr-4": {
  8430. "Symfony\\Component\\Filesystem\\": ""
  8431. },
  8432. "exclude-from-classmap": [
  8433. "/Tests/"
  8434. ]
  8435. },
  8436. "notification-url": "https://packagist.org/downloads/",
  8437. "license": [
  8438. "MIT"
  8439. ],
  8440. "authors": [
  8441. {
  8442. "name": "Fabien Potencier",
  8443. "email": "fabien@symfony.com"
  8444. },
  8445. {
  8446. "name": "Symfony Community",
  8447. "homepage": "https://symfony.com/contributors"
  8448. }
  8449. ],
  8450. "description": "Symfony Filesystem Component",
  8451. "homepage": "https://symfony.com",
  8452. "support": {
  8453. "source": "https://github.com/symfony/filesystem/tree/v5.1.8"
  8454. },
  8455. "funding": [
  8456. {
  8457. "url": "https://symfony.com/sponsor",
  8458. "type": "custom"
  8459. },
  8460. {
  8461. "url": "https://github.com/fabpot",
  8462. "type": "github"
  8463. },
  8464. {
  8465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8466. "type": "tidelift"
  8467. }
  8468. ],
  8469. "time": "2020-10-24T12:01:57+00:00"
  8470. },
  8471. {
  8472. "name": "symfony/options-resolver",
  8473. "version": "v5.1.8",
  8474. "source": {
  8475. "type": "git",
  8476. "url": "https://github.com/symfony/options-resolver.git",
  8477. "reference": "c6a02905e4ffc7a1498e8ee019db2b477cd1cc02"
  8478. },
  8479. "dist": {
  8480. "type": "zip",
  8481. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/c6a02905e4ffc7a1498e8ee019db2b477cd1cc02",
  8482. "reference": "c6a02905e4ffc7a1498e8ee019db2b477cd1cc02",
  8483. "shasum": "",
  8484. "mirrors": [
  8485. {
  8486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8487. "preferred": true
  8488. }
  8489. ]
  8490. },
  8491. "require": {
  8492. "php": ">=7.2.5",
  8493. "symfony/deprecation-contracts": "^2.1",
  8494. "symfony/polyfill-php80": "^1.15"
  8495. },
  8496. "type": "library",
  8497. "autoload": {
  8498. "psr-4": {
  8499. "Symfony\\Component\\OptionsResolver\\": ""
  8500. },
  8501. "exclude-from-classmap": [
  8502. "/Tests/"
  8503. ]
  8504. },
  8505. "notification-url": "https://packagist.org/downloads/",
  8506. "license": [
  8507. "MIT"
  8508. ],
  8509. "authors": [
  8510. {
  8511. "name": "Fabien Potencier",
  8512. "email": "fabien@symfony.com"
  8513. },
  8514. {
  8515. "name": "Symfony Community",
  8516. "homepage": "https://symfony.com/contributors"
  8517. }
  8518. ],
  8519. "description": "Symfony OptionsResolver Component",
  8520. "homepage": "https://symfony.com",
  8521. "keywords": [
  8522. "config",
  8523. "configuration",
  8524. "options"
  8525. ],
  8526. "support": {
  8527. "source": "https://github.com/symfony/options-resolver/tree/v5.1.8"
  8528. },
  8529. "funding": [
  8530. {
  8531. "url": "https://symfony.com/sponsor",
  8532. "type": "custom"
  8533. },
  8534. {
  8535. "url": "https://github.com/fabpot",
  8536. "type": "github"
  8537. },
  8538. {
  8539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8540. "type": "tidelift"
  8541. }
  8542. ],
  8543. "time": "2020-10-24T12:01:57+00:00"
  8544. },
  8545. {
  8546. "name": "symfony/polyfill-php70",
  8547. "version": "v1.20.0",
  8548. "source": {
  8549. "type": "git",
  8550. "url": "https://github.com/symfony/polyfill-php70.git",
  8551. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644"
  8552. },
  8553. "dist": {
  8554. "type": "zip",
  8555. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/5f03a781d984aae42cebd18e7912fa80f02ee644",
  8556. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644",
  8557. "shasum": "",
  8558. "mirrors": [
  8559. {
  8560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8561. "preferred": true
  8562. }
  8563. ]
  8564. },
  8565. "require": {
  8566. "php": ">=7.1"
  8567. },
  8568. "type": "metapackage",
  8569. "extra": {
  8570. "branch-alias": {
  8571. "dev-main": "1.20-dev"
  8572. },
  8573. "thanks": {
  8574. "name": "symfony/polyfill",
  8575. "url": "https://github.com/symfony/polyfill"
  8576. }
  8577. },
  8578. "notification-url": "https://packagist.org/downloads/",
  8579. "license": [
  8580. "MIT"
  8581. ],
  8582. "authors": [
  8583. {
  8584. "name": "Nicolas Grekas",
  8585. "email": "p@tchwork.com"
  8586. },
  8587. {
  8588. "name": "Symfony Community",
  8589. "homepage": "https://symfony.com/contributors"
  8590. }
  8591. ],
  8592. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8593. "homepage": "https://symfony.com",
  8594. "keywords": [
  8595. "compatibility",
  8596. "polyfill",
  8597. "portable",
  8598. "shim"
  8599. ],
  8600. "support": {
  8601. "source": "https://github.com/symfony/polyfill-php70/tree/v1.20.0"
  8602. },
  8603. "funding": [
  8604. {
  8605. "url": "https://symfony.com/sponsor",
  8606. "type": "custom"
  8607. },
  8608. {
  8609. "url": "https://github.com/fabpot",
  8610. "type": "github"
  8611. },
  8612. {
  8613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8614. "type": "tidelift"
  8615. }
  8616. ],
  8617. "time": "2020-10-23T14:02:19+00:00"
  8618. },
  8619. {
  8620. "name": "symfony/process",
  8621. "version": "v5.1.8",
  8622. "source": {
  8623. "type": "git",
  8624. "url": "https://github.com/symfony/process.git",
  8625. "reference": "f00872c3f6804150d6a0f73b4151daab96248101"
  8626. },
  8627. "dist": {
  8628. "type": "zip",
  8629. "url": "https://api.github.com/repos/symfony/process/zipball/f00872c3f6804150d6a0f73b4151daab96248101",
  8630. "reference": "f00872c3f6804150d6a0f73b4151daab96248101",
  8631. "shasum": "",
  8632. "mirrors": [
  8633. {
  8634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8635. "preferred": true
  8636. }
  8637. ]
  8638. },
  8639. "require": {
  8640. "php": ">=7.2.5",
  8641. "symfony/polyfill-php80": "^1.15"
  8642. },
  8643. "type": "library",
  8644. "autoload": {
  8645. "psr-4": {
  8646. "Symfony\\Component\\Process\\": ""
  8647. },
  8648. "exclude-from-classmap": [
  8649. "/Tests/"
  8650. ]
  8651. },
  8652. "notification-url": "https://packagist.org/downloads/",
  8653. "license": [
  8654. "MIT"
  8655. ],
  8656. "authors": [
  8657. {
  8658. "name": "Fabien Potencier",
  8659. "email": "fabien@symfony.com"
  8660. },
  8661. {
  8662. "name": "Symfony Community",
  8663. "homepage": "https://symfony.com/contributors"
  8664. }
  8665. ],
  8666. "description": "Symfony Process Component",
  8667. "homepage": "https://symfony.com",
  8668. "support": {
  8669. "source": "https://github.com/symfony/process/tree/v5.1.8"
  8670. },
  8671. "funding": [
  8672. {
  8673. "url": "https://symfony.com/sponsor",
  8674. "type": "custom"
  8675. },
  8676. {
  8677. "url": "https://github.com/fabpot",
  8678. "type": "github"
  8679. },
  8680. {
  8681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8682. "type": "tidelift"
  8683. }
  8684. ],
  8685. "time": "2020-10-24T12:01:57+00:00"
  8686. },
  8687. {
  8688. "name": "symfony/stopwatch",
  8689. "version": "v5.1.8",
  8690. "source": {
  8691. "type": "git",
  8692. "url": "https://github.com/symfony/stopwatch.git",
  8693. "reference": "3d9f57c89011f0266e6b1d469e5c0110513859d5"
  8694. },
  8695. "dist": {
  8696. "type": "zip",
  8697. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/3d9f57c89011f0266e6b1d469e5c0110513859d5",
  8698. "reference": "3d9f57c89011f0266e6b1d469e5c0110513859d5",
  8699. "shasum": "",
  8700. "mirrors": [
  8701. {
  8702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8703. "preferred": true
  8704. }
  8705. ]
  8706. },
  8707. "require": {
  8708. "php": ">=7.2.5",
  8709. "symfony/service-contracts": "^1.0|^2"
  8710. },
  8711. "type": "library",
  8712. "autoload": {
  8713. "psr-4": {
  8714. "Symfony\\Component\\Stopwatch\\": ""
  8715. },
  8716. "exclude-from-classmap": [
  8717. "/Tests/"
  8718. ]
  8719. },
  8720. "notification-url": "https://packagist.org/downloads/",
  8721. "license": [
  8722. "MIT"
  8723. ],
  8724. "authors": [
  8725. {
  8726. "name": "Fabien Potencier",
  8727. "email": "fabien@symfony.com"
  8728. },
  8729. {
  8730. "name": "Symfony Community",
  8731. "homepage": "https://symfony.com/contributors"
  8732. }
  8733. ],
  8734. "description": "Symfony Stopwatch Component",
  8735. "homepage": "https://symfony.com",
  8736. "support": {
  8737. "source": "https://github.com/symfony/stopwatch/tree/v5.1.8"
  8738. },
  8739. "funding": [
  8740. {
  8741. "url": "https://symfony.com/sponsor",
  8742. "type": "custom"
  8743. },
  8744. {
  8745. "url": "https://github.com/fabpot",
  8746. "type": "github"
  8747. },
  8748. {
  8749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8750. "type": "tidelift"
  8751. }
  8752. ],
  8753. "time": "2020-10-24T12:01:57+00:00"
  8754. },
  8755. {
  8756. "name": "theseer/tokenizer",
  8757. "version": "1.2.0",
  8758. "source": {
  8759. "type": "git",
  8760. "url": "https://github.com/theseer/tokenizer.git",
  8761. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  8762. },
  8763. "dist": {
  8764. "type": "zip",
  8765. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  8766. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  8767. "shasum": "",
  8768. "mirrors": [
  8769. {
  8770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8771. "preferred": true
  8772. }
  8773. ]
  8774. },
  8775. "require": {
  8776. "ext-dom": "*",
  8777. "ext-tokenizer": "*",
  8778. "ext-xmlwriter": "*",
  8779. "php": "^7.2 || ^8.0"
  8780. },
  8781. "type": "library",
  8782. "autoload": {
  8783. "classmap": [
  8784. "src/"
  8785. ]
  8786. },
  8787. "notification-url": "https://packagist.org/downloads/",
  8788. "license": [
  8789. "BSD-3-Clause"
  8790. ],
  8791. "authors": [
  8792. {
  8793. "name": "Arne Blankerts",
  8794. "email": "arne@blankerts.de",
  8795. "role": "Developer"
  8796. }
  8797. ],
  8798. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8799. "support": {
  8800. "issues": "https://github.com/theseer/tokenizer/issues",
  8801. "source": "https://github.com/theseer/tokenizer/tree/master"
  8802. },
  8803. "funding": [
  8804. {
  8805. "url": "https://github.com/theseer",
  8806. "type": "github"
  8807. }
  8808. ],
  8809. "time": "2020-07-12T23:59:07+00:00"
  8810. }
  8811. ],
  8812. "aliases": [],
  8813. "minimum-stability": "dev",
  8814. "stability-flags": [],
  8815. "prefer-stable": true,
  8816. "prefer-lowest": false,
  8817. "platform": {
  8818. "php": ">=7.2",
  8819. "ext-swoole": ">=4.5"
  8820. },
  8821. "platform-dev": [],
  8822. "plugin-api-version": "2.0.0"
  8823. }