composer.lock 322 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010
  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": "5163f3587c9f0cd7628ffa2397424686",
  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/resource",
  2522. "version": "v2.0.0",
  2523. "source": {
  2524. "type": "git",
  2525. "url": "https://github.com/hyperf/resource.git",
  2526. "reference": "1e842b3c77533ceec2dbfb8559f01c50bbefadaf"
  2527. },
  2528. "dist": {
  2529. "type": "zip",
  2530. "url": "https://api.github.com/repos/hyperf/resource/zipball/1e842b3c77533ceec2dbfb8559f01c50bbefadaf",
  2531. "reference": "1e842b3c77533ceec2dbfb8559f01c50bbefadaf",
  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. "ext-json": "*",
  2542. "hyperf/http-message": "~2.0.0",
  2543. "hyperf/paginator": "~2.0.0",
  2544. "hyperf/utils": "~2.0.0",
  2545. "php": ">=7.2",
  2546. "psr/container": "^1.0"
  2547. },
  2548. "require-dev": {
  2549. "friendsofphp/php-cs-fixer": "^2.16",
  2550. "hyperf/command": "~2.0.0",
  2551. "hyperf/database": "~2.0.0",
  2552. "hyperf/devtool": "~2.0.0",
  2553. "hyperf/http-server": "~2.0.0",
  2554. "mockery/mockery": "^1.0",
  2555. "phpstan/phpstan": "^0.12",
  2556. "phpunit/phpunit": "^7.0"
  2557. },
  2558. "type": "library",
  2559. "extra": {
  2560. "branch-alias": {
  2561. "dev-master": "2.0-dev"
  2562. },
  2563. "hyperf": {
  2564. "config": "Hyperf\\Resource\\ConfigProvider"
  2565. }
  2566. },
  2567. "autoload": {
  2568. "psr-4": {
  2569. "Hyperf\\Resource\\": "src/"
  2570. }
  2571. },
  2572. "notification-url": "https://packagist.org/downloads/",
  2573. "license": [
  2574. "MIT"
  2575. ],
  2576. "description": "A api resource component for hyperf.",
  2577. "homepage": "https://hyperf.io",
  2578. "keywords": [
  2579. "hyperf",
  2580. "php",
  2581. "resource"
  2582. ],
  2583. "support": {
  2584. "docs": "https://hyperf.wiki",
  2585. "issues": "https://github.com/hyperf/hyperf/issues",
  2586. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2587. "source": "https://github.com/hyperf/hyperf"
  2588. },
  2589. "time": "2020-10-07T08:29:23+00:00"
  2590. },
  2591. {
  2592. "name": "hyperf/rpc",
  2593. "version": "v2.0.12",
  2594. "source": {
  2595. "type": "git",
  2596. "url": "https://github.com/hyperf/rpc.git",
  2597. "reference": "9bd73d5eaaff9f501cc1e2e27c7c8b496ad37e56"
  2598. },
  2599. "dist": {
  2600. "type": "zip",
  2601. "url": "https://api.github.com/repos/hyperf/rpc/zipball/9bd73d5eaaff9f501cc1e2e27c7c8b496ad37e56",
  2602. "reference": "9bd73d5eaaff9f501cc1e2e27c7c8b496ad37e56",
  2603. "shasum": "",
  2604. "mirrors": [
  2605. {
  2606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2607. "preferred": true
  2608. }
  2609. ]
  2610. },
  2611. "require": {
  2612. "hyperf/contract": "~2.0.0",
  2613. "hyperf/utils": "~2.0.0",
  2614. "php": ">=7.2"
  2615. },
  2616. "require-dev": {
  2617. "friendsofphp/php-cs-fixer": "^2.9",
  2618. "malukenho/docheader": "^0.1.6",
  2619. "mockery/mockery": "^1.0",
  2620. "phpunit/phpunit": "^7.0.0"
  2621. },
  2622. "type": "library",
  2623. "extra": {
  2624. "branch-alias": {
  2625. "dev-master": "2.0-dev"
  2626. },
  2627. "hyperf": []
  2628. },
  2629. "autoload": {
  2630. "psr-4": {
  2631. "Hyperf\\Rpc\\": "src/"
  2632. }
  2633. },
  2634. "notification-url": "https://packagist.org/downloads/",
  2635. "license": [
  2636. "MIT"
  2637. ],
  2638. "description": "A rpc basic library for Hyperf.",
  2639. "homepage": "https://hyperf.io",
  2640. "keywords": [
  2641. "hyperf",
  2642. "php",
  2643. "rpc",
  2644. "swoole"
  2645. ],
  2646. "support": {
  2647. "docs": "https://hyperf.wiki",
  2648. "issues": "https://github.com/hyperf/hyperf/issues",
  2649. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2650. "source": "https://github.com/hyperf/hyperf"
  2651. },
  2652. "time": "2020-09-14T04:43:30+00:00"
  2653. },
  2654. {
  2655. "name": "hyperf/rpc-client",
  2656. "version": "v2.0.12",
  2657. "source": {
  2658. "type": "git",
  2659. "url": "https://github.com/hyperf/rpc-client.git",
  2660. "reference": "5ffd727c9e3bd1f8a91cf6da81b95b33eea32e04"
  2661. },
  2662. "dist": {
  2663. "type": "zip",
  2664. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/5ffd727c9e3bd1f8a91cf6da81b95b33eea32e04",
  2665. "reference": "5ffd727c9e3bd1f8a91cf6da81b95b33eea32e04",
  2666. "shasum": "",
  2667. "mirrors": [
  2668. {
  2669. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2670. "preferred": true
  2671. }
  2672. ]
  2673. },
  2674. "require": {
  2675. "hyperf/load-balancer": "~2.0.0",
  2676. "hyperf/rpc": "~2.0.0",
  2677. "hyperf/utils": "~2.0.0",
  2678. "php": ">=7.2",
  2679. "psr/container": "^1.0",
  2680. "roave/better-reflection": "^4.0"
  2681. },
  2682. "require-dev": {
  2683. "friendsofphp/php-cs-fixer": "^2.9",
  2684. "malukenho/docheader": "^0.1.6",
  2685. "mockery/mockery": "^1.0",
  2686. "phpunit/phpunit": "^7.0.0"
  2687. },
  2688. "suggest": {
  2689. "hyperf/consul": "For fetch the nodes info from consul.",
  2690. "hyperf/di": "For better container experience.",
  2691. "hyperf/pool": "Required to use connection pool."
  2692. },
  2693. "type": "library",
  2694. "extra": {
  2695. "branch-alias": {
  2696. "dev-master": "2.0-dev"
  2697. },
  2698. "hyperf": {
  2699. "config": "Hyperf\\RpcClient\\ConfigProvider"
  2700. }
  2701. },
  2702. "autoload": {
  2703. "psr-4": {
  2704. "Hyperf\\RpcClient\\": "src/"
  2705. }
  2706. },
  2707. "notification-url": "https://packagist.org/downloads/",
  2708. "license": [
  2709. "MIT"
  2710. ],
  2711. "description": "An abstract rpc server component for Hyperf.",
  2712. "homepage": "https://hyperf.io",
  2713. "keywords": [
  2714. "hyperf",
  2715. "json-rpc",
  2716. "php",
  2717. "rpc",
  2718. "rpc-client",
  2719. "swoole"
  2720. ],
  2721. "support": {
  2722. "docs": "https://hyperf.wiki",
  2723. "issues": "https://github.com/hyperf/hyperf/issues",
  2724. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2725. "source": "https://github.com/hyperf/hyperf"
  2726. },
  2727. "time": "2020-09-14T04:43:30+00:00"
  2728. },
  2729. {
  2730. "name": "hyperf/rpc-server",
  2731. "version": "v2.0.17",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://github.com/hyperf/rpc-server.git",
  2735. "reference": "37235bf6dede0cb7f4e94133ab3cc4729f5711f7"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/37235bf6dede0cb7f4e94133ab3cc4729f5711f7",
  2740. "reference": "37235bf6dede0cb7f4e94133ab3cc4729f5711f7",
  2741. "shasum": "",
  2742. "mirrors": [
  2743. {
  2744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2745. "preferred": true
  2746. }
  2747. ]
  2748. },
  2749. "require": {
  2750. "hyperf/http-server": "~2.0.0",
  2751. "hyperf/rpc": "~2.0.0",
  2752. "php": ">=7.2"
  2753. },
  2754. "require-dev": {
  2755. "friendsofphp/php-cs-fixer": "^2.9",
  2756. "malukenho/docheader": "^0.1.6",
  2757. "mockery/mockery": "^1.0",
  2758. "phpunit/phpunit": "^7.0.0"
  2759. },
  2760. "suggest": {
  2761. "hyperf/di": "Required to use annotations."
  2762. },
  2763. "type": "library",
  2764. "extra": {
  2765. "branch-alias": {
  2766. "dev-master": "2.0-dev"
  2767. },
  2768. "hyperf": {
  2769. "config": "Hyperf\\RpcServer\\ConfigProvider"
  2770. }
  2771. },
  2772. "autoload": {
  2773. "psr-4": {
  2774. "Hyperf\\RpcServer\\": "src/"
  2775. }
  2776. },
  2777. "notification-url": "https://packagist.org/downloads/",
  2778. "license": [
  2779. "MIT"
  2780. ],
  2781. "description": "An abstract rpc server component for Hyperf.",
  2782. "homepage": "https://hyperf.io",
  2783. "keywords": [
  2784. "hyperf",
  2785. "php",
  2786. "rpc",
  2787. "rpc-server",
  2788. "swoole"
  2789. ],
  2790. "support": {
  2791. "docs": "https://hyperf.wiki",
  2792. "issues": "https://github.com/hyperf/hyperf/issues",
  2793. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2794. "source": "https://github.com/hyperf/hyperf"
  2795. },
  2796. "time": "2020-10-29T10:16:04+00:00"
  2797. },
  2798. {
  2799. "name": "hyperf/server",
  2800. "version": "v2.0.13",
  2801. "source": {
  2802. "type": "git",
  2803. "url": "https://github.com/hyperf/server.git",
  2804. "reference": "2597dc953d98f3bcdcbf47904e3c3c4a71e172f2"
  2805. },
  2806. "dist": {
  2807. "type": "zip",
  2808. "url": "https://api.github.com/repos/hyperf/server/zipball/2597dc953d98f3bcdcbf47904e3c3c4a71e172f2",
  2809. "reference": "2597dc953d98f3bcdcbf47904e3c3c4a71e172f2",
  2810. "shasum": "",
  2811. "mirrors": [
  2812. {
  2813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2814. "preferred": true
  2815. }
  2816. ]
  2817. },
  2818. "require": {
  2819. "hyperf/contract": "~2.0.0",
  2820. "hyperf/utils": "~2.0.0",
  2821. "php": ">=7.2",
  2822. "psr/container": "^1.0",
  2823. "psr/event-dispatcher": "^1.0",
  2824. "psr/log": "^1.0",
  2825. "symfony/console": "^5.0"
  2826. },
  2827. "require-dev": {
  2828. "friendsofphp/php-cs-fixer": "^2.9",
  2829. "malukenho/docheader": "^0.1.6",
  2830. "mockery/mockery": "^1.0",
  2831. "phpunit/phpunit": "^7.0.0"
  2832. },
  2833. "suggest": {
  2834. "hyperf/event": "Dump the info after server start.",
  2835. "hyperf/framework": "Dump the info after server start."
  2836. },
  2837. "type": "library",
  2838. "extra": {
  2839. "branch-alias": {
  2840. "dev-master": "2.0-dev"
  2841. },
  2842. "hyperf": {
  2843. "config": "Hyperf\\Server\\ConfigProvider"
  2844. }
  2845. },
  2846. "autoload": {
  2847. "psr-4": {
  2848. "Hyperf\\Server\\": "src/"
  2849. }
  2850. },
  2851. "notification-url": "https://packagist.org/downloads/",
  2852. "license": [
  2853. "MIT"
  2854. ],
  2855. "description": "A base server library for Hyperf.",
  2856. "homepage": "https://hyperf.io",
  2857. "keywords": [
  2858. "hyperf",
  2859. "php",
  2860. "server",
  2861. "swoole"
  2862. ],
  2863. "support": {
  2864. "docs": "https://hyperf.wiki",
  2865. "issues": "https://github.com/hyperf/hyperf/issues",
  2866. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2867. "source": "https://github.com/hyperf/hyperf"
  2868. },
  2869. "time": "2020-09-27T08:25:56+00:00"
  2870. },
  2871. {
  2872. "name": "hyperf/tracer",
  2873. "version": "v2.0.17",
  2874. "source": {
  2875. "type": "git",
  2876. "url": "https://github.com/hyperf/tracer.git",
  2877. "reference": "1f1c56cadac391f4090384d4d8391997e32859ac"
  2878. },
  2879. "dist": {
  2880. "type": "zip",
  2881. "url": "https://api.github.com/repos/hyperf/tracer/zipball/1f1c56cadac391f4090384d4d8391997e32859ac",
  2882. "reference": "1f1c56cadac391f4090384d4d8391997e32859ac",
  2883. "shasum": "",
  2884. "mirrors": [
  2885. {
  2886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2887. "preferred": true
  2888. }
  2889. ]
  2890. },
  2891. "require": {
  2892. "hyperf/contract": "~2.0.0",
  2893. "hyperf/di": "~2.0.0",
  2894. "hyperf/guzzle": "~2.0.0",
  2895. "hyperf/utils": "~2.0.0",
  2896. "jcchavezs/zipkin-opentracing": "^0.1.3",
  2897. "opentracing/opentracing": "1.0.*",
  2898. "php": ">=7.2",
  2899. "psr/http-message": "^1.0"
  2900. },
  2901. "require-dev": {
  2902. "friendsofphp/php-cs-fixer": "^2.9",
  2903. "hyperf/event": "~2.0.0",
  2904. "jonahgeorge/jaeger-client-php": "^0.4.4",
  2905. "malukenho/docheader": "^0.1.6",
  2906. "mockery/mockery": "^1.0",
  2907. "phpunit/phpunit": "^7.0.0"
  2908. },
  2909. "suggest": {
  2910. "hyperf/event": "Required to use DbQueryExecutedListener.",
  2911. "jonahgeorge/jaeger-client-php": "Required to use jaeger tracing."
  2912. },
  2913. "type": "library",
  2914. "extra": {
  2915. "branch-alias": {
  2916. "dev-master": "2.0-dev"
  2917. },
  2918. "hyperf": {
  2919. "config": "Hyperf\\Tracer\\ConfigProvider"
  2920. }
  2921. },
  2922. "autoload": {
  2923. "psr-4": {
  2924. "Hyperf\\Tracer\\": "src/"
  2925. }
  2926. },
  2927. "notification-url": "https://packagist.org/downloads/",
  2928. "license": [
  2929. "MIT"
  2930. ],
  2931. "description": "A open tracing system implemented for Hyperf or other coroutine framework",
  2932. "homepage": "https://hyperf.io",
  2933. "keywords": [
  2934. "hyperf",
  2935. "open-tracing",
  2936. "php",
  2937. "zipkin"
  2938. ],
  2939. "support": {
  2940. "docs": "https://hyperf.wiki",
  2941. "issues": "https://github.com/hyperf/hyperf/issues",
  2942. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2943. "source": "https://github.com/hyperf/hyperf"
  2944. },
  2945. "time": "2020-10-31T12:42:41+00:00"
  2946. },
  2947. {
  2948. "name": "hyperf/translation",
  2949. "version": "v2.0.18",
  2950. "source": {
  2951. "type": "git",
  2952. "url": "https://github.com/hyperf/translation.git",
  2953. "reference": "988811b9278a9ca82197916f47e4230cfd3facfa"
  2954. },
  2955. "dist": {
  2956. "type": "zip",
  2957. "url": "https://api.github.com/repos/hyperf/translation/zipball/988811b9278a9ca82197916f47e4230cfd3facfa",
  2958. "reference": "988811b9278a9ca82197916f47e4230cfd3facfa",
  2959. "shasum": "",
  2960. "mirrors": [
  2961. {
  2962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2963. "preferred": true
  2964. }
  2965. ]
  2966. },
  2967. "require": {
  2968. "hyperf/contract": "~2.0.0",
  2969. "hyperf/utils": "~2.0.0",
  2970. "php": ">=7.2",
  2971. "psr/container": "^1.0"
  2972. },
  2973. "require-dev": {
  2974. "friendsofphp/php-cs-fixer": "^2.14",
  2975. "mockery/mockery": "^1.2"
  2976. },
  2977. "type": "library",
  2978. "extra": {
  2979. "branch-alias": {
  2980. "dev-master": "2.0-dev"
  2981. },
  2982. "hyperf": {
  2983. "config": "Hyperf\\Translation\\ConfigProvider"
  2984. }
  2985. },
  2986. "autoload": {
  2987. "files": [
  2988. "src/Functions.php"
  2989. ],
  2990. "psr-4": {
  2991. "Hyperf\\Translation\\": "src/"
  2992. }
  2993. },
  2994. "notification-url": "https://packagist.org/downloads/",
  2995. "license": [
  2996. "MIT"
  2997. ],
  2998. "description": "An independent translation component, forked by illuminate/translation.",
  2999. "keywords": [
  3000. "hyperf",
  3001. "translation"
  3002. ],
  3003. "support": {
  3004. "issues": "https://github.com/hyperf/translation/issues",
  3005. "source": "https://github.com/hyperf/translation/tree/v2.0.18"
  3006. },
  3007. "time": "2020-11-07T08:53:43+00:00"
  3008. },
  3009. {
  3010. "name": "hyperf/utils",
  3011. "version": "v2.0.18",
  3012. "source": {
  3013. "type": "git",
  3014. "url": "https://github.com/hyperf/utils.git",
  3015. "reference": "0619fe0ccc2101f796f2252d8d2312b47939c30e"
  3016. },
  3017. "dist": {
  3018. "type": "zip",
  3019. "url": "https://api.github.com/repos/hyperf/utils/zipball/0619fe0ccc2101f796f2252d8d2312b47939c30e",
  3020. "reference": "0619fe0ccc2101f796f2252d8d2312b47939c30e",
  3021. "shasum": "",
  3022. "mirrors": [
  3023. {
  3024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3025. "preferred": true
  3026. }
  3027. ]
  3028. },
  3029. "require": {
  3030. "doctrine/inflector": "^2.0",
  3031. "hyperf/contract": "~2.0.0",
  3032. "php": ">=7.2"
  3033. },
  3034. "require-dev": {
  3035. "friendsofphp/php-cs-fixer": "^2.9",
  3036. "malukenho/docheader": "^0.1.6",
  3037. "mockery/mockery": "^1.0",
  3038. "phpunit/phpunit": "^7.0.0",
  3039. "symfony/property-access": "^5.0",
  3040. "symfony/serializer": "^5.0",
  3041. "symfony/var-dumper": "^5.0"
  3042. },
  3043. "suggest": {
  3044. "ext-swoole": "Required to use methods related to swoole (>=4.5).",
  3045. "hyperf/di": "Required to use ExceptionNormalizer",
  3046. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0)",
  3047. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0)",
  3048. "symfony/var-dumper": "Required to use the dd function (^5.0)."
  3049. },
  3050. "type": "library",
  3051. "extra": {
  3052. "hyperf": {
  3053. "config": "Hyperf\\Utils\\ConfigProvider"
  3054. },
  3055. "branch-alias": {
  3056. "dev-master": "2.0-dev"
  3057. }
  3058. },
  3059. "autoload": {
  3060. "files": [
  3061. "src/Functions.php"
  3062. ],
  3063. "psr-4": {
  3064. "Hyperf\\Utils\\": "src/"
  3065. }
  3066. },
  3067. "notification-url": "https://packagist.org/downloads/",
  3068. "license": [
  3069. "MIT"
  3070. ],
  3071. "description": "A tools package that could help developer solved the problem quickly.",
  3072. "homepage": "https://hyperf.io",
  3073. "keywords": [
  3074. "hyperf",
  3075. "php",
  3076. "swoole",
  3077. "utils"
  3078. ],
  3079. "support": {
  3080. "docs": "https://hyperf.wiki",
  3081. "issues": "https://github.com/hyperf/hyperf/issues",
  3082. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3083. "source": "https://github.com/hyperf/hyperf"
  3084. },
  3085. "time": "2020-11-05T04:42:11+00:00"
  3086. },
  3087. {
  3088. "name": "jcchavezs/zipkin-opentracing",
  3089. "version": "0.1.5",
  3090. "source": {
  3091. "type": "git",
  3092. "url": "https://github.com/jcchavezs/zipkin-php-opentracing.git",
  3093. "reference": "565f3bed0fef52d7004b0faba2439e3cac992837"
  3094. },
  3095. "dist": {
  3096. "type": "zip",
  3097. "url": "https://api.github.com/repos/jcchavezs/zipkin-php-opentracing/zipball/565f3bed0fef52d7004b0faba2439e3cac992837",
  3098. "reference": "565f3bed0fef52d7004b0faba2439e3cac992837",
  3099. "shasum": "",
  3100. "mirrors": [
  3101. {
  3102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3103. "preferred": true
  3104. }
  3105. ]
  3106. },
  3107. "require": {
  3108. "opentracing/opentracing": "1.0.0-beta5",
  3109. "openzipkin/zipkin": "^1.3.6",
  3110. "php": "~5.6 || ~7.0"
  3111. },
  3112. "provide": {
  3113. "opentracing/opentracing": "dev-master"
  3114. },
  3115. "require-dev": {
  3116. "phpunit/phpunit": "~5.7.19",
  3117. "squizlabs/php_codesniffer": "3.*"
  3118. },
  3119. "type": "library",
  3120. "autoload": {
  3121. "psr-4": {
  3122. "ZipkinOpenTracing\\": "./src/ZipkinOpenTracing/"
  3123. }
  3124. },
  3125. "notification-url": "https://packagist.org/downloads/",
  3126. "license": [
  3127. "MIT"
  3128. ],
  3129. "authors": [
  3130. {
  3131. "name": "José Carlos Chávez",
  3132. "email": "jcchavezs@gmail.com"
  3133. }
  3134. ],
  3135. "description": "A Zipkin bridge with OpenTracing",
  3136. "support": {
  3137. "issues": "https://github.com/jcchavezs/zipkin-php-opentracing/issues",
  3138. "source": "https://github.com/jcchavezs/zipkin-php-opentracing/tree/0.1.5"
  3139. },
  3140. "time": "2020-05-19T15:56:43+00:00"
  3141. },
  3142. {
  3143. "name": "jetbrains/phpstorm-stubs",
  3144. "version": "v2019.3",
  3145. "source": {
  3146. "type": "git",
  3147. "url": "https://github.com/JetBrains/phpstorm-stubs.git",
  3148. "reference": "883b6facd78e01c0743b554af86fa590c2573f40"
  3149. },
  3150. "dist": {
  3151. "type": "zip",
  3152. "url": "https://api.github.com/repos/JetBrains/phpstorm-stubs/zipball/883b6facd78e01c0743b554af86fa590c2573f40",
  3153. "reference": "883b6facd78e01c0743b554af86fa590c2573f40",
  3154. "shasum": "",
  3155. "mirrors": [
  3156. {
  3157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3158. "preferred": true
  3159. }
  3160. ]
  3161. },
  3162. "require-dev": {
  3163. "nikic/php-parser": "^4",
  3164. "php": "^7.1",
  3165. "phpdocumentor/reflection-docblock": "^4.3",
  3166. "phpunit/phpunit": "^7"
  3167. },
  3168. "type": "library",
  3169. "autoload": {
  3170. "files": [
  3171. "PhpStormStubsMap.php"
  3172. ]
  3173. },
  3174. "notification-url": "https://packagist.org/downloads/",
  3175. "license": [
  3176. "Apache-2.0"
  3177. ],
  3178. "description": "PHP runtime & extensions header files for PhpStorm",
  3179. "homepage": "https://www.jetbrains.com/phpstorm",
  3180. "keywords": [
  3181. "autocomplete",
  3182. "code",
  3183. "inference",
  3184. "inspection",
  3185. "jetbrains",
  3186. "phpstorm",
  3187. "stubs",
  3188. "type"
  3189. ],
  3190. "support": {
  3191. "source": "https://github.com/JetBrains/phpstorm-stubs/tree/master"
  3192. },
  3193. "time": "2019-12-05T16:56:26+00:00"
  3194. },
  3195. {
  3196. "name": "laminas/laminas-mime",
  3197. "version": "2.7.4",
  3198. "source": {
  3199. "type": "git",
  3200. "url": "https://github.com/laminas/laminas-mime.git",
  3201. "reference": "e45a7d856bf7b4a7b5bd00d6371f9961dc233add"
  3202. },
  3203. "dist": {
  3204. "type": "zip",
  3205. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/e45a7d856bf7b4a7b5bd00d6371f9961dc233add",
  3206. "reference": "e45a7d856bf7b4a7b5bd00d6371f9961dc233add",
  3207. "shasum": "",
  3208. "mirrors": [
  3209. {
  3210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3211. "preferred": true
  3212. }
  3213. ]
  3214. },
  3215. "require": {
  3216. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  3217. "laminas/laminas-zendframework-bridge": "^1.0",
  3218. "php": "^5.6 || ^7.0"
  3219. },
  3220. "replace": {
  3221. "zendframework/zend-mime": "^2.7.2"
  3222. },
  3223. "require-dev": {
  3224. "laminas/laminas-coding-standard": "~1.0.0",
  3225. "laminas/laminas-mail": "^2.6",
  3226. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20"
  3227. },
  3228. "suggest": {
  3229. "laminas/laminas-mail": "Laminas\\Mail component"
  3230. },
  3231. "type": "library",
  3232. "extra": {
  3233. "branch-alias": {
  3234. "dev-master": "2.7.x-dev",
  3235. "dev-develop": "2.8.x-dev"
  3236. }
  3237. },
  3238. "autoload": {
  3239. "psr-4": {
  3240. "Laminas\\Mime\\": "src/"
  3241. }
  3242. },
  3243. "notification-url": "https://packagist.org/downloads/",
  3244. "license": [
  3245. "BSD-3-Clause"
  3246. ],
  3247. "description": "Create and parse MIME messages and parts",
  3248. "homepage": "https://laminas.dev",
  3249. "keywords": [
  3250. "laminas",
  3251. "mime"
  3252. ],
  3253. "support": {
  3254. "chat": "https://laminas.dev/chat",
  3255. "docs": "https://docs.laminas.dev/laminas-mime/",
  3256. "forum": "https://discourse.laminas.dev",
  3257. "issues": "https://github.com/laminas/laminas-mime/issues",
  3258. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  3259. "source": "https://github.com/laminas/laminas-mime"
  3260. },
  3261. "time": "2020-03-29T13:12:07+00:00"
  3262. },
  3263. {
  3264. "name": "laminas/laminas-stdlib",
  3265. "version": "3.3.0",
  3266. "source": {
  3267. "type": "git",
  3268. "url": "https://github.com/laminas/laminas-stdlib.git",
  3269. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6"
  3270. },
  3271. "dist": {
  3272. "type": "zip",
  3273. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6",
  3274. "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6",
  3275. "shasum": "",
  3276. "mirrors": [
  3277. {
  3278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3279. "preferred": true
  3280. }
  3281. ]
  3282. },
  3283. "require": {
  3284. "laminas/laminas-zendframework-bridge": "^1.0",
  3285. "php": "^7.3 || ^8.0"
  3286. },
  3287. "replace": {
  3288. "zendframework/zend-stdlib": "^3.2.1"
  3289. },
  3290. "require-dev": {
  3291. "laminas/laminas-coding-standard": "~1.0.0",
  3292. "phpbench/phpbench": "^0.17.1",
  3293. "phpunit/phpunit": "^9.3.7"
  3294. },
  3295. "type": "library",
  3296. "extra": {
  3297. "branch-alias": {
  3298. "dev-master": "3.3.x-dev",
  3299. "dev-develop": "3.4.x-dev"
  3300. }
  3301. },
  3302. "autoload": {
  3303. "psr-4": {
  3304. "Laminas\\Stdlib\\": "src/"
  3305. }
  3306. },
  3307. "notification-url": "https://packagist.org/downloads/",
  3308. "license": [
  3309. "BSD-3-Clause"
  3310. ],
  3311. "description": "SPL extensions, array utilities, error handlers, and more",
  3312. "homepage": "https://laminas.dev",
  3313. "keywords": [
  3314. "laminas",
  3315. "stdlib"
  3316. ],
  3317. "support": {
  3318. "chat": "https://laminas.dev/chat",
  3319. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  3320. "forum": "https://discourse.laminas.dev",
  3321. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  3322. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  3323. "source": "https://github.com/laminas/laminas-stdlib"
  3324. },
  3325. "funding": [
  3326. {
  3327. "url": "https://funding.communitybridge.org/projects/laminas-project",
  3328. "type": "community_bridge"
  3329. }
  3330. ],
  3331. "time": "2020-08-25T09:08:16+00:00"
  3332. },
  3333. {
  3334. "name": "laminas/laminas-zendframework-bridge",
  3335. "version": "1.1.1",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  3339. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  3344. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  3345. "shasum": "",
  3346. "mirrors": [
  3347. {
  3348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3349. "preferred": true
  3350. }
  3351. ]
  3352. },
  3353. "require": {
  3354. "php": "^5.6 || ^7.0 || ^8.0"
  3355. },
  3356. "require-dev": {
  3357. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  3358. "squizlabs/php_codesniffer": "^3.5"
  3359. },
  3360. "type": "library",
  3361. "extra": {
  3362. "laminas": {
  3363. "module": "Laminas\\ZendFrameworkBridge"
  3364. }
  3365. },
  3366. "autoload": {
  3367. "files": [
  3368. "src/autoload.php"
  3369. ],
  3370. "psr-4": {
  3371. "Laminas\\ZendFrameworkBridge\\": "src//"
  3372. }
  3373. },
  3374. "notification-url": "https://packagist.org/downloads/",
  3375. "license": [
  3376. "BSD-3-Clause"
  3377. ],
  3378. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  3379. "keywords": [
  3380. "ZendFramework",
  3381. "autoloading",
  3382. "laminas",
  3383. "zf"
  3384. ],
  3385. "support": {
  3386. "forum": "https://discourse.laminas.dev/",
  3387. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  3388. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  3389. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  3390. },
  3391. "funding": [
  3392. {
  3393. "url": "https://funding.communitybridge.org/projects/laminas-project",
  3394. "type": "community_bridge"
  3395. }
  3396. ],
  3397. "time": "2020-09-14T14:23:00+00:00"
  3398. },
  3399. {
  3400. "name": "lcobucci/jwt",
  3401. "version": "3.3.3",
  3402. "source": {
  3403. "type": "git",
  3404. "url": "https://github.com/lcobucci/jwt.git",
  3405. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  3406. },
  3407. "dist": {
  3408. "type": "zip",
  3409. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  3410. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  3411. "shasum": "",
  3412. "mirrors": [
  3413. {
  3414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3415. "preferred": true
  3416. }
  3417. ]
  3418. },
  3419. "require": {
  3420. "ext-mbstring": "*",
  3421. "ext-openssl": "*",
  3422. "php": "^5.6 || ^7.0"
  3423. },
  3424. "require-dev": {
  3425. "mikey179/vfsstream": "~1.5",
  3426. "phpmd/phpmd": "~2.2",
  3427. "phpunit/php-invoker": "~1.1",
  3428. "phpunit/phpunit": "^5.7 || ^7.3",
  3429. "squizlabs/php_codesniffer": "~2.3"
  3430. },
  3431. "type": "library",
  3432. "extra": {
  3433. "branch-alias": {
  3434. "dev-master": "3.1-dev"
  3435. }
  3436. },
  3437. "autoload": {
  3438. "psr-4": {
  3439. "Lcobucci\\JWT\\": "src"
  3440. }
  3441. },
  3442. "notification-url": "https://packagist.org/downloads/",
  3443. "license": [
  3444. "BSD-3-Clause"
  3445. ],
  3446. "authors": [
  3447. {
  3448. "name": "Luís Otávio Cobucci Oblonczyk",
  3449. "email": "lcobucci@gmail.com",
  3450. "role": "Developer"
  3451. }
  3452. ],
  3453. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3454. "keywords": [
  3455. "JWS",
  3456. "jwt"
  3457. ],
  3458. "support": {
  3459. "issues": "https://github.com/lcobucci/jwt/issues",
  3460. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  3461. },
  3462. "funding": [
  3463. {
  3464. "url": "https://github.com/lcobucci",
  3465. "type": "github"
  3466. },
  3467. {
  3468. "url": "https://www.patreon.com/lcobucci",
  3469. "type": "patreon"
  3470. }
  3471. ],
  3472. "time": "2020-08-20T13:22:28+00:00"
  3473. },
  3474. {
  3475. "name": "markrogoyski/math-php",
  3476. "version": "v0.49.0",
  3477. "source": {
  3478. "type": "git",
  3479. "url": "https://github.com/markrogoyski/math-php.git",
  3480. "reference": "41d56a7542233cbb0489e7982facdb1d88d8c08b"
  3481. },
  3482. "dist": {
  3483. "type": "zip",
  3484. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/41d56a7542233cbb0489e7982facdb1d88d8c08b",
  3485. "reference": "41d56a7542233cbb0489e7982facdb1d88d8c08b",
  3486. "shasum": "",
  3487. "mirrors": [
  3488. {
  3489. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3490. "preferred": true
  3491. }
  3492. ]
  3493. },
  3494. "require": {
  3495. "php": ">=7.0.0"
  3496. },
  3497. "require-dev": {
  3498. "php-coveralls/php-coveralls": "^2.0",
  3499. "phploc/phploc": "*",
  3500. "phpmd/phpmd": "^2.6",
  3501. "phpstan/phpstan": "*",
  3502. "phpunit/phpunit": "6.*",
  3503. "squizlabs/php_codesniffer": "2.*"
  3504. },
  3505. "type": "library",
  3506. "autoload": {
  3507. "psr-4": {
  3508. "MathPHP\\": "src/"
  3509. }
  3510. },
  3511. "notification-url": "https://packagist.org/downloads/",
  3512. "license": [
  3513. "MIT"
  3514. ],
  3515. "authors": [
  3516. {
  3517. "name": "Kevin Nowaczyk",
  3518. "role": "Contributor"
  3519. },
  3520. {
  3521. "name": "Jakob Sandberg",
  3522. "role": "Contributor"
  3523. },
  3524. {
  3525. "name": "Mark Rogoyski",
  3526. "email": "mark@rogoyski.com",
  3527. "homepage": "https://github.com/markrogoyski",
  3528. "role": "Lead developer"
  3529. }
  3530. ],
  3531. "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",
  3532. "homepage": "https://github.com/markrogoyski/math-php/",
  3533. "keywords": [
  3534. "algebra",
  3535. "combinatorics",
  3536. "distributions",
  3537. "linear algebra",
  3538. "math",
  3539. "mathematics",
  3540. "matrix",
  3541. "numerical analysis",
  3542. "probability",
  3543. "regressions",
  3544. "statistics"
  3545. ],
  3546. "support": {
  3547. "issues": "https://github.com/markrogoyski/math-php/issues",
  3548. "source": "https://github.com/markrogoyski/math-php/tree/develop"
  3549. },
  3550. "time": "2019-02-23T19:49:38+00:00"
  3551. },
  3552. {
  3553. "name": "monolog/monolog",
  3554. "version": "2.1.1",
  3555. "source": {
  3556. "type": "git",
  3557. "url": "https://github.com/Seldaek/monolog.git",
  3558. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  3559. },
  3560. "dist": {
  3561. "type": "zip",
  3562. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  3563. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  3564. "shasum": "",
  3565. "mirrors": [
  3566. {
  3567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3568. "preferred": true
  3569. }
  3570. ]
  3571. },
  3572. "require": {
  3573. "php": ">=7.2",
  3574. "psr/log": "^1.0.1"
  3575. },
  3576. "provide": {
  3577. "psr/log-implementation": "1.0.0"
  3578. },
  3579. "require-dev": {
  3580. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3581. "doctrine/couchdb": "~1.0@dev",
  3582. "elasticsearch/elasticsearch": "^6.0",
  3583. "graylog2/gelf-php": "^1.4.2",
  3584. "php-amqplib/php-amqplib": "~2.4",
  3585. "php-console/php-console": "^3.1.3",
  3586. "php-parallel-lint/php-parallel-lint": "^1.0",
  3587. "phpspec/prophecy": "^1.6.1",
  3588. "phpunit/phpunit": "^8.5",
  3589. "predis/predis": "^1.1",
  3590. "rollbar/rollbar": "^1.3",
  3591. "ruflin/elastica": ">=0.90 <3.0",
  3592. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3593. },
  3594. "suggest": {
  3595. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3596. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3597. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3598. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3599. "ext-mbstring": "Allow to work properly with unicode symbols",
  3600. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3601. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3602. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3603. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3604. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3605. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3606. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3607. },
  3608. "type": "library",
  3609. "extra": {
  3610. "branch-alias": {
  3611. "dev-master": "2.x-dev"
  3612. }
  3613. },
  3614. "autoload": {
  3615. "psr-4": {
  3616. "Monolog\\": "src/Monolog"
  3617. }
  3618. },
  3619. "notification-url": "https://packagist.org/downloads/",
  3620. "license": [
  3621. "MIT"
  3622. ],
  3623. "authors": [
  3624. {
  3625. "name": "Jordi Boggiano",
  3626. "email": "j.boggiano@seld.be",
  3627. "homepage": "http://seld.be"
  3628. }
  3629. ],
  3630. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3631. "homepage": "http://github.com/Seldaek/monolog",
  3632. "keywords": [
  3633. "log",
  3634. "logging",
  3635. "psr-3"
  3636. ],
  3637. "support": {
  3638. "issues": "https://github.com/Seldaek/monolog/issues",
  3639. "source": "https://github.com/Seldaek/monolog/tree/2.1.1"
  3640. },
  3641. "funding": [
  3642. {
  3643. "url": "https://github.com/Seldaek",
  3644. "type": "github"
  3645. },
  3646. {
  3647. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3648. "type": "tidelift"
  3649. }
  3650. ],
  3651. "time": "2020-07-23T08:41:23+00:00"
  3652. },
  3653. {
  3654. "name": "nesbot/carbon",
  3655. "version": "2.41.5",
  3656. "source": {
  3657. "type": "git",
  3658. "url": "https://github.com/briannesbitt/Carbon.git",
  3659. "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee"
  3660. },
  3661. "dist": {
  3662. "type": "zip",
  3663. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c4a9caf97cfc53adfc219043bcecf42bc663acee",
  3664. "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee",
  3665. "shasum": "",
  3666. "mirrors": [
  3667. {
  3668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3669. "preferred": true
  3670. }
  3671. ]
  3672. },
  3673. "require": {
  3674. "ext-json": "*",
  3675. "php": "^7.1.8 || ^8.0",
  3676. "symfony/polyfill-mbstring": "^1.0",
  3677. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3678. },
  3679. "require-dev": {
  3680. "doctrine/orm": "^2.7",
  3681. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3682. "kylekatarnls/multi-tester": "^2.0",
  3683. "phpmd/phpmd": "^2.9",
  3684. "phpstan/extension-installer": "^1.0",
  3685. "phpstan/phpstan": "^0.12.35",
  3686. "phpunit/phpunit": "^7.5 || ^8.0",
  3687. "squizlabs/php_codesniffer": "^3.4"
  3688. },
  3689. "bin": [
  3690. "bin/carbon"
  3691. ],
  3692. "type": "library",
  3693. "extra": {
  3694. "branch-alias": {
  3695. "dev-master": "2.x-dev",
  3696. "dev-3.x": "3.x-dev"
  3697. },
  3698. "laravel": {
  3699. "providers": [
  3700. "Carbon\\Laravel\\ServiceProvider"
  3701. ]
  3702. },
  3703. "phpstan": {
  3704. "includes": [
  3705. "extension.neon"
  3706. ]
  3707. }
  3708. },
  3709. "autoload": {
  3710. "psr-4": {
  3711. "Carbon\\": "src/Carbon/"
  3712. }
  3713. },
  3714. "notification-url": "https://packagist.org/downloads/",
  3715. "license": [
  3716. "MIT"
  3717. ],
  3718. "authors": [
  3719. {
  3720. "name": "Brian Nesbitt",
  3721. "email": "brian@nesbot.com",
  3722. "homepage": "http://nesbot.com"
  3723. },
  3724. {
  3725. "name": "kylekatarnls",
  3726. "homepage": "http://github.com/kylekatarnls"
  3727. }
  3728. ],
  3729. "description": "An API extension for DateTime that supports 281 different languages.",
  3730. "homepage": "http://carbon.nesbot.com",
  3731. "keywords": [
  3732. "date",
  3733. "datetime",
  3734. "time"
  3735. ],
  3736. "support": {
  3737. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3738. "source": "https://github.com/briannesbitt/Carbon"
  3739. },
  3740. "funding": [
  3741. {
  3742. "url": "https://opencollective.com/Carbon",
  3743. "type": "open_collective"
  3744. },
  3745. {
  3746. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3747. "type": "tidelift"
  3748. }
  3749. ],
  3750. "time": "2020-10-23T06:02:30+00:00"
  3751. },
  3752. {
  3753. "name": "nikic/fast-route",
  3754. "version": "v1.3.0",
  3755. "source": {
  3756. "type": "git",
  3757. "url": "https://github.com/nikic/FastRoute.git",
  3758. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  3759. },
  3760. "dist": {
  3761. "type": "zip",
  3762. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  3763. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  3764. "shasum": "",
  3765. "mirrors": [
  3766. {
  3767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3768. "preferred": true
  3769. }
  3770. ]
  3771. },
  3772. "require": {
  3773. "php": ">=5.4.0"
  3774. },
  3775. "require-dev": {
  3776. "phpunit/phpunit": "^4.8.35|~5.7"
  3777. },
  3778. "type": "library",
  3779. "autoload": {
  3780. "psr-4": {
  3781. "FastRoute\\": "src/"
  3782. },
  3783. "files": [
  3784. "src/functions.php"
  3785. ]
  3786. },
  3787. "notification-url": "https://packagist.org/downloads/",
  3788. "license": [
  3789. "BSD-3-Clause"
  3790. ],
  3791. "authors": [
  3792. {
  3793. "name": "Nikita Popov",
  3794. "email": "nikic@php.net"
  3795. }
  3796. ],
  3797. "description": "Fast request router for PHP",
  3798. "keywords": [
  3799. "router",
  3800. "routing"
  3801. ],
  3802. "support": {
  3803. "issues": "https://github.com/nikic/FastRoute/issues",
  3804. "source": "https://github.com/nikic/FastRoute/tree/master"
  3805. },
  3806. "time": "2018-02-13T20:26:39+00:00"
  3807. },
  3808. {
  3809. "name": "nikic/php-parser",
  3810. "version": "v4.10.2",
  3811. "source": {
  3812. "type": "git",
  3813. "url": "https://github.com/nikic/PHP-Parser.git",
  3814. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  3815. },
  3816. "dist": {
  3817. "type": "zip",
  3818. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  3819. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  3820. "shasum": "",
  3821. "mirrors": [
  3822. {
  3823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3824. "preferred": true
  3825. }
  3826. ]
  3827. },
  3828. "require": {
  3829. "ext-tokenizer": "*",
  3830. "php": ">=7.0"
  3831. },
  3832. "require-dev": {
  3833. "ircmaxell/php-yacc": "^0.0.7",
  3834. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3835. },
  3836. "bin": [
  3837. "bin/php-parse"
  3838. ],
  3839. "type": "library",
  3840. "extra": {
  3841. "branch-alias": {
  3842. "dev-master": "4.9-dev"
  3843. }
  3844. },
  3845. "autoload": {
  3846. "psr-4": {
  3847. "PhpParser\\": "lib/PhpParser"
  3848. }
  3849. },
  3850. "notification-url": "https://packagist.org/downloads/",
  3851. "license": [
  3852. "BSD-3-Clause"
  3853. ],
  3854. "authors": [
  3855. {
  3856. "name": "Nikita Popov"
  3857. }
  3858. ],
  3859. "description": "A PHP parser written in PHP",
  3860. "keywords": [
  3861. "parser",
  3862. "php"
  3863. ],
  3864. "support": {
  3865. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3866. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.2"
  3867. },
  3868. "time": "2020-09-26T10:30:38+00:00"
  3869. },
  3870. {
  3871. "name": "opentracing/opentracing",
  3872. "version": "1.0.0-beta5",
  3873. "source": {
  3874. "type": "git",
  3875. "url": "https://github.com/opentracing/opentracing-php.git",
  3876. "reference": "19591d4084e32eaea061eebd9448b62e5ee3ec19"
  3877. },
  3878. "dist": {
  3879. "type": "zip",
  3880. "url": "https://api.github.com/repos/opentracing/opentracing-php/zipball/19591d4084e32eaea061eebd9448b62e5ee3ec19",
  3881. "reference": "19591d4084e32eaea061eebd9448b62e5ee3ec19",
  3882. "shasum": "",
  3883. "mirrors": [
  3884. {
  3885. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3886. "preferred": true
  3887. }
  3888. ]
  3889. },
  3890. "require": {
  3891. "php": "^5.6||^7.0"
  3892. },
  3893. "require-dev": {
  3894. "phpunit/phpunit": "~5.7.19",
  3895. "squizlabs/php_codesniffer": "3.*"
  3896. },
  3897. "type": "library",
  3898. "autoload": {
  3899. "psr-4": {
  3900. "OpenTracing\\": "./src/OpenTracing/"
  3901. },
  3902. "files": [
  3903. "./src/OpenTracing/Tags.php",
  3904. "./src/OpenTracing/Formats.php"
  3905. ]
  3906. },
  3907. "notification-url": "https://packagist.org/downloads/",
  3908. "license": [
  3909. "MIT"
  3910. ],
  3911. "authors": [
  3912. {
  3913. "name": "José Carlos Chávez",
  3914. "email": "jcchavezs@gmail.com"
  3915. }
  3916. ],
  3917. "description": "OpenTracing API for PHP",
  3918. "support": {
  3919. "issues": "https://github.com/opentracing/opentracing-php/issues",
  3920. "source": "https://github.com/opentracing/opentracing-php/tree/master"
  3921. },
  3922. "time": "2018-04-13T13:38:46+00:00"
  3923. },
  3924. {
  3925. "name": "openzipkin/zipkin",
  3926. "version": "1.3.6",
  3927. "source": {
  3928. "type": "git",
  3929. "url": "https://github.com/openzipkin/zipkin-php.git",
  3930. "reference": "4e49ac5f4088c52fa01ab2eb09e72e2af6d62a05"
  3931. },
  3932. "dist": {
  3933. "type": "zip",
  3934. "url": "https://api.github.com/repos/openzipkin/zipkin-php/zipball/4e49ac5f4088c52fa01ab2eb09e72e2af6d62a05",
  3935. "reference": "4e49ac5f4088c52fa01ab2eb09e72e2af6d62a05",
  3936. "shasum": "",
  3937. "mirrors": [
  3938. {
  3939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3940. "preferred": true
  3941. }
  3942. ]
  3943. },
  3944. "require": {
  3945. "ext-curl": "*",
  3946. "php": "^5.6 || ^7.0",
  3947. "psr/http-message": "~1.0",
  3948. "psr/log": "^1.0"
  3949. },
  3950. "require-dev": {
  3951. "guzzlehttp/psr7": "^1.4",
  3952. "jcchavezs/httptest": "~0.2",
  3953. "phpunit/phpunit": "~5.7.19",
  3954. "squizlabs/php_codesniffer": "3.*"
  3955. },
  3956. "type": "library",
  3957. "autoload": {
  3958. "psr-4": {
  3959. "Zipkin\\": "./src/Zipkin/"
  3960. },
  3961. "files": [
  3962. "./src/Zipkin/Propagation/Id.php",
  3963. "./src/Zipkin/Timestamp.php",
  3964. "./src/Zipkin/Kind.php",
  3965. "./src/Zipkin/Tags.php",
  3966. "./src/Zipkin/Annotations.php"
  3967. ]
  3968. },
  3969. "notification-url": "https://packagist.org/downloads/",
  3970. "license": [
  3971. "MIT"
  3972. ],
  3973. "authors": [
  3974. {
  3975. "name": "José Carlos Chávez",
  3976. "email": "jcchavezs@gmail.com"
  3977. }
  3978. ],
  3979. "description": "A Zipkin instrumentation for PHP",
  3980. "keywords": [
  3981. "openzipkin",
  3982. "tracing",
  3983. "zipkin"
  3984. ],
  3985. "support": {
  3986. "issues": "https://github.com/openzipkin/zipkin-php/issues",
  3987. "source": "https://github.com/openzipkin/zipkin-php/tree/v1"
  3988. },
  3989. "time": "2020-05-18T22:20:46+00:00"
  3990. },
  3991. {
  3992. "name": "phpdocumentor/reflection-common",
  3993. "version": "2.2.0",
  3994. "source": {
  3995. "type": "git",
  3996. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3997. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3998. },
  3999. "dist": {
  4000. "type": "zip",
  4001. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4002. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4003. "shasum": "",
  4004. "mirrors": [
  4005. {
  4006. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4007. "preferred": true
  4008. }
  4009. ]
  4010. },
  4011. "require": {
  4012. "php": "^7.2 || ^8.0"
  4013. },
  4014. "type": "library",
  4015. "extra": {
  4016. "branch-alias": {
  4017. "dev-2.x": "2.x-dev"
  4018. }
  4019. },
  4020. "autoload": {
  4021. "psr-4": {
  4022. "phpDocumentor\\Reflection\\": "src/"
  4023. }
  4024. },
  4025. "notification-url": "https://packagist.org/downloads/",
  4026. "license": [
  4027. "MIT"
  4028. ],
  4029. "authors": [
  4030. {
  4031. "name": "Jaap van Otterdijk",
  4032. "email": "opensource@ijaap.nl"
  4033. }
  4034. ],
  4035. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4036. "homepage": "http://www.phpdoc.org",
  4037. "keywords": [
  4038. "FQSEN",
  4039. "phpDocumentor",
  4040. "phpdoc",
  4041. "reflection",
  4042. "static analysis"
  4043. ],
  4044. "support": {
  4045. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  4046. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  4047. },
  4048. "time": "2020-06-27T09:03:43+00:00"
  4049. },
  4050. {
  4051. "name": "phpdocumentor/reflection-docblock",
  4052. "version": "5.2.2",
  4053. "source": {
  4054. "type": "git",
  4055. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4056. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  4057. },
  4058. "dist": {
  4059. "type": "zip",
  4060. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  4061. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  4062. "shasum": "",
  4063. "mirrors": [
  4064. {
  4065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4066. "preferred": true
  4067. }
  4068. ]
  4069. },
  4070. "require": {
  4071. "ext-filter": "*",
  4072. "php": "^7.2 || ^8.0",
  4073. "phpdocumentor/reflection-common": "^2.2",
  4074. "phpdocumentor/type-resolver": "^1.3",
  4075. "webmozart/assert": "^1.9.1"
  4076. },
  4077. "require-dev": {
  4078. "mockery/mockery": "~1.3.2"
  4079. },
  4080. "type": "library",
  4081. "extra": {
  4082. "branch-alias": {
  4083. "dev-master": "5.x-dev"
  4084. }
  4085. },
  4086. "autoload": {
  4087. "psr-4": {
  4088. "phpDocumentor\\Reflection\\": "src"
  4089. }
  4090. },
  4091. "notification-url": "https://packagist.org/downloads/",
  4092. "license": [
  4093. "MIT"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "Mike van Riel",
  4098. "email": "me@mikevanriel.com"
  4099. },
  4100. {
  4101. "name": "Jaap van Otterdijk",
  4102. "email": "account@ijaap.nl"
  4103. }
  4104. ],
  4105. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4106. "support": {
  4107. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  4108. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  4109. },
  4110. "time": "2020-09-03T19:13:55+00:00"
  4111. },
  4112. {
  4113. "name": "phpdocumentor/type-resolver",
  4114. "version": "1.4.0",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4118. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  4123. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  4124. "shasum": "",
  4125. "mirrors": [
  4126. {
  4127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4128. "preferred": true
  4129. }
  4130. ]
  4131. },
  4132. "require": {
  4133. "php": "^7.2 || ^8.0",
  4134. "phpdocumentor/reflection-common": "^2.0"
  4135. },
  4136. "require-dev": {
  4137. "ext-tokenizer": "*"
  4138. },
  4139. "type": "library",
  4140. "extra": {
  4141. "branch-alias": {
  4142. "dev-1.x": "1.x-dev"
  4143. }
  4144. },
  4145. "autoload": {
  4146. "psr-4": {
  4147. "phpDocumentor\\Reflection\\": "src"
  4148. }
  4149. },
  4150. "notification-url": "https://packagist.org/downloads/",
  4151. "license": [
  4152. "MIT"
  4153. ],
  4154. "authors": [
  4155. {
  4156. "name": "Mike van Riel",
  4157. "email": "me@mikevanriel.com"
  4158. }
  4159. ],
  4160. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4161. "support": {
  4162. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  4163. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  4164. },
  4165. "time": "2020-09-17T18:55:26+00:00"
  4166. },
  4167. {
  4168. "name": "phper666/hyperf-server-command",
  4169. "version": "v1.0.4",
  4170. "source": {
  4171. "type": "git",
  4172. "url": "https://github.com/phper666/hyperf-server-command.git",
  4173. "reference": "0ccf1105c9835d35bff956b054cb3601c0f9ad10"
  4174. },
  4175. "dist": {
  4176. "type": "zip",
  4177. "url": "https://api.github.com/repos/phper666/hyperf-server-command/zipball/0ccf1105c9835d35bff956b054cb3601c0f9ad10",
  4178. "reference": "0ccf1105c9835d35bff956b054cb3601c0f9ad10",
  4179. "shasum": "",
  4180. "mirrors": [
  4181. {
  4182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4183. "preferred": true
  4184. }
  4185. ]
  4186. },
  4187. "require": {
  4188. "php": ">=7.2"
  4189. },
  4190. "suggest": {
  4191. "hyperf/command": "required hyperf/command ~2.0.0 OR required hyperf/command ~1.1.0"
  4192. },
  4193. "type": "library",
  4194. "extra": {
  4195. "hyperf": {
  4196. "config": "Phper666\\HyperfServiceCommand\\ConfigProvider"
  4197. }
  4198. },
  4199. "autoload": {
  4200. "psr-4": {
  4201. "Phper666\\HyperfServiceCommand\\": "src/"
  4202. },
  4203. "files": []
  4204. },
  4205. "notification-url": "https://packagist.org/downloads/",
  4206. "license": [
  4207. "MIT"
  4208. ],
  4209. "authors": [
  4210. {
  4211. "name": "liyuzhao",
  4212. "email": "562405704@qq.com"
  4213. }
  4214. ],
  4215. "support": {
  4216. "issues": "https://github.com/phper666/hyperf-server-command/issues",
  4217. "source": "https://github.com/phper666/hyperf-server-command/tree/master"
  4218. },
  4219. "time": "2020-07-28T05:38:15+00:00"
  4220. },
  4221. {
  4222. "name": "phper666/jwt-auth",
  4223. "version": "v3.0.4",
  4224. "source": {
  4225. "type": "git",
  4226. "url": "https://github.com/phper666/jwt-auth.git",
  4227. "reference": "48c50257cacb4168b1e1121f6b287708ad00a1e5"
  4228. },
  4229. "dist": {
  4230. "type": "zip",
  4231. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/48c50257cacb4168b1e1121f6b287708ad00a1e5",
  4232. "reference": "48c50257cacb4168b1e1121f6b287708ad00a1e5",
  4233. "shasum": "",
  4234. "mirrors": [
  4235. {
  4236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4237. "preferred": true
  4238. }
  4239. ]
  4240. },
  4241. "require": {
  4242. "ext-swoole": ">=4.4",
  4243. "lcobucci/jwt": "^3.2",
  4244. "nesbot/carbon": "^1.0 || ^2.0",
  4245. "php": ">=7.2"
  4246. },
  4247. "suggest": {
  4248. "hyperf/cache": "required hyperf/cache ~2.0.0 OR required hyperf/cache ~1.1.0",
  4249. "hyperf/command": "required hyperf/command ~2.0.0 OR required hyperf/command ~1.1.0",
  4250. "hyperf/config": "required hyperf/config ~2.0.0 OR required hyperf/config ~1.1.0",
  4251. "hyperf/di": "required hyperf/di ~2.0.0 OR required hyperf/di ~1.1.0"
  4252. },
  4253. "type": "library",
  4254. "extra": {
  4255. "hyperf": {
  4256. "config": "Phper666\\JWTAuth\\ConfigProvider"
  4257. }
  4258. },
  4259. "autoload": {
  4260. "psr-4": {
  4261. "Phper666\\JWTAuth\\": "src/"
  4262. }
  4263. },
  4264. "notification-url": "https://packagist.org/downloads/",
  4265. "license": [
  4266. "MIT"
  4267. ],
  4268. "authors": [
  4269. {
  4270. "name": "Li Yuzhao",
  4271. "email": "562405704@qq.com",
  4272. "homepage": "https://github.com/phper666/jwt-auth",
  4273. "role": "Developer"
  4274. }
  4275. ],
  4276. "description": "jwt-auth Component",
  4277. "keywords": [
  4278. "hyperf",
  4279. "php"
  4280. ],
  4281. "support": {
  4282. "issues": "https://github.com/phper666/jwt-auth/issues",
  4283. "source": "https://github.com/phper666/jwt-auth/tree/3.0.1"
  4284. },
  4285. "time": "2020-06-22T13:48:02+00:00"
  4286. },
  4287. {
  4288. "name": "phpoption/phpoption",
  4289. "version": "1.7.5",
  4290. "source": {
  4291. "type": "git",
  4292. "url": "https://github.com/schmittjoh/php-option.git",
  4293. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  4294. },
  4295. "dist": {
  4296. "type": "zip",
  4297. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4298. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4299. "shasum": "",
  4300. "mirrors": [
  4301. {
  4302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4303. "preferred": true
  4304. }
  4305. ]
  4306. },
  4307. "require": {
  4308. "php": "^5.5.9 || ^7.0 || ^8.0"
  4309. },
  4310. "require-dev": {
  4311. "bamarni/composer-bin-plugin": "^1.4.1",
  4312. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  4313. },
  4314. "type": "library",
  4315. "extra": {
  4316. "branch-alias": {
  4317. "dev-master": "1.7-dev"
  4318. }
  4319. },
  4320. "autoload": {
  4321. "psr-4": {
  4322. "PhpOption\\": "src/PhpOption/"
  4323. }
  4324. },
  4325. "notification-url": "https://packagist.org/downloads/",
  4326. "license": [
  4327. "Apache-2.0"
  4328. ],
  4329. "authors": [
  4330. {
  4331. "name": "Johannes M. Schmitt",
  4332. "email": "schmittjoh@gmail.com"
  4333. },
  4334. {
  4335. "name": "Graham Campbell",
  4336. "email": "graham@alt-three.com"
  4337. }
  4338. ],
  4339. "description": "Option Type for PHP",
  4340. "keywords": [
  4341. "language",
  4342. "option",
  4343. "php",
  4344. "type"
  4345. ],
  4346. "support": {
  4347. "issues": "https://github.com/schmittjoh/php-option/issues",
  4348. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  4349. },
  4350. "funding": [
  4351. {
  4352. "url": "https://github.com/GrahamCampbell",
  4353. "type": "github"
  4354. },
  4355. {
  4356. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4357. "type": "tidelift"
  4358. }
  4359. ],
  4360. "time": "2020-07-20T17:29:33+00:00"
  4361. },
  4362. {
  4363. "name": "psr/container",
  4364. "version": "1.0.0",
  4365. "source": {
  4366. "type": "git",
  4367. "url": "https://github.com/php-fig/container.git",
  4368. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  4369. },
  4370. "dist": {
  4371. "type": "zip",
  4372. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  4373. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  4374. "shasum": "",
  4375. "mirrors": [
  4376. {
  4377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4378. "preferred": true
  4379. }
  4380. ]
  4381. },
  4382. "require": {
  4383. "php": ">=5.3.0"
  4384. },
  4385. "type": "library",
  4386. "extra": {
  4387. "branch-alias": {
  4388. "dev-master": "1.0.x-dev"
  4389. }
  4390. },
  4391. "autoload": {
  4392. "psr-4": {
  4393. "Psr\\Container\\": "src/"
  4394. }
  4395. },
  4396. "notification-url": "https://packagist.org/downloads/",
  4397. "license": [
  4398. "MIT"
  4399. ],
  4400. "authors": [
  4401. {
  4402. "name": "PHP-FIG",
  4403. "homepage": "http://www.php-fig.org/"
  4404. }
  4405. ],
  4406. "description": "Common Container Interface (PHP FIG PSR-11)",
  4407. "homepage": "https://github.com/php-fig/container",
  4408. "keywords": [
  4409. "PSR-11",
  4410. "container",
  4411. "container-interface",
  4412. "container-interop",
  4413. "psr"
  4414. ],
  4415. "support": {
  4416. "issues": "https://github.com/php-fig/container/issues",
  4417. "source": "https://github.com/php-fig/container/tree/master"
  4418. },
  4419. "time": "2017-02-14T16:28:37+00:00"
  4420. },
  4421. {
  4422. "name": "psr/event-dispatcher",
  4423. "version": "1.0.0",
  4424. "source": {
  4425. "type": "git",
  4426. "url": "https://github.com/php-fig/event-dispatcher.git",
  4427. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4428. },
  4429. "dist": {
  4430. "type": "zip",
  4431. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4432. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4433. "shasum": "",
  4434. "mirrors": [
  4435. {
  4436. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4437. "preferred": true
  4438. }
  4439. ]
  4440. },
  4441. "require": {
  4442. "php": ">=7.2.0"
  4443. },
  4444. "type": "library",
  4445. "extra": {
  4446. "branch-alias": {
  4447. "dev-master": "1.0.x-dev"
  4448. }
  4449. },
  4450. "autoload": {
  4451. "psr-4": {
  4452. "Psr\\EventDispatcher\\": "src/"
  4453. }
  4454. },
  4455. "notification-url": "https://packagist.org/downloads/",
  4456. "license": [
  4457. "MIT"
  4458. ],
  4459. "authors": [
  4460. {
  4461. "name": "PHP-FIG",
  4462. "homepage": "http://www.php-fig.org/"
  4463. }
  4464. ],
  4465. "description": "Standard interfaces for event handling.",
  4466. "keywords": [
  4467. "events",
  4468. "psr",
  4469. "psr-14"
  4470. ],
  4471. "support": {
  4472. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4473. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4474. },
  4475. "time": "2019-01-08T18:20:26+00:00"
  4476. },
  4477. {
  4478. "name": "psr/http-message",
  4479. "version": "1.0.1",
  4480. "source": {
  4481. "type": "git",
  4482. "url": "https://github.com/php-fig/http-message.git",
  4483. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4484. },
  4485. "dist": {
  4486. "type": "zip",
  4487. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4488. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4489. "shasum": "",
  4490. "mirrors": [
  4491. {
  4492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4493. "preferred": true
  4494. }
  4495. ]
  4496. },
  4497. "require": {
  4498. "php": ">=5.3.0"
  4499. },
  4500. "type": "library",
  4501. "extra": {
  4502. "branch-alias": {
  4503. "dev-master": "1.0.x-dev"
  4504. }
  4505. },
  4506. "autoload": {
  4507. "psr-4": {
  4508. "Psr\\Http\\Message\\": "src/"
  4509. }
  4510. },
  4511. "notification-url": "https://packagist.org/downloads/",
  4512. "license": [
  4513. "MIT"
  4514. ],
  4515. "authors": [
  4516. {
  4517. "name": "PHP-FIG",
  4518. "homepage": "http://www.php-fig.org/"
  4519. }
  4520. ],
  4521. "description": "Common interface for HTTP messages",
  4522. "homepage": "https://github.com/php-fig/http-message",
  4523. "keywords": [
  4524. "http",
  4525. "http-message",
  4526. "psr",
  4527. "psr-7",
  4528. "request",
  4529. "response"
  4530. ],
  4531. "support": {
  4532. "source": "https://github.com/php-fig/http-message/tree/master"
  4533. },
  4534. "time": "2016-08-06T14:39:51+00:00"
  4535. },
  4536. {
  4537. "name": "psr/http-server-handler",
  4538. "version": "1.0.1",
  4539. "source": {
  4540. "type": "git",
  4541. "url": "https://github.com/php-fig/http-server-handler.git",
  4542. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  4543. },
  4544. "dist": {
  4545. "type": "zip",
  4546. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  4547. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  4548. "shasum": "",
  4549. "mirrors": [
  4550. {
  4551. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4552. "preferred": true
  4553. }
  4554. ]
  4555. },
  4556. "require": {
  4557. "php": ">=7.0",
  4558. "psr/http-message": "^1.0"
  4559. },
  4560. "type": "library",
  4561. "extra": {
  4562. "branch-alias": {
  4563. "dev-master": "1.0.x-dev"
  4564. }
  4565. },
  4566. "autoload": {
  4567. "psr-4": {
  4568. "Psr\\Http\\Server\\": "src/"
  4569. }
  4570. },
  4571. "notification-url": "https://packagist.org/downloads/",
  4572. "license": [
  4573. "MIT"
  4574. ],
  4575. "authors": [
  4576. {
  4577. "name": "PHP-FIG",
  4578. "homepage": "http://www.php-fig.org/"
  4579. }
  4580. ],
  4581. "description": "Common interface for HTTP server-side request handler",
  4582. "keywords": [
  4583. "handler",
  4584. "http",
  4585. "http-interop",
  4586. "psr",
  4587. "psr-15",
  4588. "psr-7",
  4589. "request",
  4590. "response",
  4591. "server"
  4592. ],
  4593. "support": {
  4594. "issues": "https://github.com/php-fig/http-server-handler/issues",
  4595. "source": "https://github.com/php-fig/http-server-handler/tree/master"
  4596. },
  4597. "time": "2018-10-30T16:46:14+00:00"
  4598. },
  4599. {
  4600. "name": "psr/http-server-middleware",
  4601. "version": "1.0.1",
  4602. "source": {
  4603. "type": "git",
  4604. "url": "https://github.com/php-fig/http-server-middleware.git",
  4605. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  4606. },
  4607. "dist": {
  4608. "type": "zip",
  4609. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  4610. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  4611. "shasum": "",
  4612. "mirrors": [
  4613. {
  4614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4615. "preferred": true
  4616. }
  4617. ]
  4618. },
  4619. "require": {
  4620. "php": ">=7.0",
  4621. "psr/http-message": "^1.0",
  4622. "psr/http-server-handler": "^1.0"
  4623. },
  4624. "type": "library",
  4625. "extra": {
  4626. "branch-alias": {
  4627. "dev-master": "1.0.x-dev"
  4628. }
  4629. },
  4630. "autoload": {
  4631. "psr-4": {
  4632. "Psr\\Http\\Server\\": "src/"
  4633. }
  4634. },
  4635. "notification-url": "https://packagist.org/downloads/",
  4636. "license": [
  4637. "MIT"
  4638. ],
  4639. "authors": [
  4640. {
  4641. "name": "PHP-FIG",
  4642. "homepage": "http://www.php-fig.org/"
  4643. }
  4644. ],
  4645. "description": "Common interface for HTTP server-side middleware",
  4646. "keywords": [
  4647. "http",
  4648. "http-interop",
  4649. "middleware",
  4650. "psr",
  4651. "psr-15",
  4652. "psr-7",
  4653. "request",
  4654. "response"
  4655. ],
  4656. "support": {
  4657. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  4658. "source": "https://github.com/php-fig/http-server-middleware/tree/master"
  4659. },
  4660. "time": "2018-10-30T17:12:04+00:00"
  4661. },
  4662. {
  4663. "name": "psr/log",
  4664. "version": "1.1.3",
  4665. "source": {
  4666. "type": "git",
  4667. "url": "https://github.com/php-fig/log.git",
  4668. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  4669. },
  4670. "dist": {
  4671. "type": "zip",
  4672. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  4673. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4674. "shasum": "",
  4675. "mirrors": [
  4676. {
  4677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4678. "preferred": true
  4679. }
  4680. ]
  4681. },
  4682. "require": {
  4683. "php": ">=5.3.0"
  4684. },
  4685. "type": "library",
  4686. "extra": {
  4687. "branch-alias": {
  4688. "dev-master": "1.1.x-dev"
  4689. }
  4690. },
  4691. "autoload": {
  4692. "psr-4": {
  4693. "Psr\\Log\\": "Psr/Log/"
  4694. }
  4695. },
  4696. "notification-url": "https://packagist.org/downloads/",
  4697. "license": [
  4698. "MIT"
  4699. ],
  4700. "authors": [
  4701. {
  4702. "name": "PHP-FIG",
  4703. "homepage": "http://www.php-fig.org/"
  4704. }
  4705. ],
  4706. "description": "Common interface for logging libraries",
  4707. "homepage": "https://github.com/php-fig/log",
  4708. "keywords": [
  4709. "log",
  4710. "psr",
  4711. "psr-3"
  4712. ],
  4713. "support": {
  4714. "source": "https://github.com/php-fig/log/tree/1.1.3"
  4715. },
  4716. "time": "2020-03-23T09:12:05+00:00"
  4717. },
  4718. {
  4719. "name": "psr/simple-cache",
  4720. "version": "1.0.1",
  4721. "source": {
  4722. "type": "git",
  4723. "url": "https://github.com/php-fig/simple-cache.git",
  4724. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4725. },
  4726. "dist": {
  4727. "type": "zip",
  4728. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4729. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4730. "shasum": "",
  4731. "mirrors": [
  4732. {
  4733. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4734. "preferred": true
  4735. }
  4736. ]
  4737. },
  4738. "require": {
  4739. "php": ">=5.3.0"
  4740. },
  4741. "type": "library",
  4742. "extra": {
  4743. "branch-alias": {
  4744. "dev-master": "1.0.x-dev"
  4745. }
  4746. },
  4747. "autoload": {
  4748. "psr-4": {
  4749. "Psr\\SimpleCache\\": "src/"
  4750. }
  4751. },
  4752. "notification-url": "https://packagist.org/downloads/",
  4753. "license": [
  4754. "MIT"
  4755. ],
  4756. "authors": [
  4757. {
  4758. "name": "PHP-FIG",
  4759. "homepage": "http://www.php-fig.org/"
  4760. }
  4761. ],
  4762. "description": "Common interfaces for simple caching",
  4763. "keywords": [
  4764. "cache",
  4765. "caching",
  4766. "psr",
  4767. "psr-16",
  4768. "simple-cache"
  4769. ],
  4770. "support": {
  4771. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4772. },
  4773. "time": "2017-10-23T01:57:42+00:00"
  4774. },
  4775. {
  4776. "name": "ralouphie/getallheaders",
  4777. "version": "3.0.3",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://github.com/ralouphie/getallheaders.git",
  4781. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4786. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4787. "shasum": "",
  4788. "mirrors": [
  4789. {
  4790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4791. "preferred": true
  4792. }
  4793. ]
  4794. },
  4795. "require": {
  4796. "php": ">=5.6"
  4797. },
  4798. "require-dev": {
  4799. "php-coveralls/php-coveralls": "^2.1",
  4800. "phpunit/phpunit": "^5 || ^6.5"
  4801. },
  4802. "type": "library",
  4803. "autoload": {
  4804. "files": [
  4805. "src/getallheaders.php"
  4806. ]
  4807. },
  4808. "notification-url": "https://packagist.org/downloads/",
  4809. "license": [
  4810. "MIT"
  4811. ],
  4812. "authors": [
  4813. {
  4814. "name": "Ralph Khattar",
  4815. "email": "ralph.khattar@gmail.com"
  4816. }
  4817. ],
  4818. "description": "A polyfill for getallheaders.",
  4819. "support": {
  4820. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4821. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4822. },
  4823. "time": "2019-03-08T08:55:37+00:00"
  4824. },
  4825. {
  4826. "name": "roave/better-reflection",
  4827. "version": "4.3.0",
  4828. "source": {
  4829. "type": "git",
  4830. "url": "https://github.com/Roave/BetterReflection.git",
  4831. "reference": "aa017e698b47feed410721f3d20e2bacfcba59d5"
  4832. },
  4833. "dist": {
  4834. "type": "zip",
  4835. "url": "https://api.github.com/repos/Roave/BetterReflection/zipball/aa017e698b47feed410721f3d20e2bacfcba59d5",
  4836. "reference": "aa017e698b47feed410721f3d20e2bacfcba59d5",
  4837. "shasum": "",
  4838. "mirrors": [
  4839. {
  4840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4841. "preferred": true
  4842. }
  4843. ]
  4844. },
  4845. "require": {
  4846. "ext-json": "*",
  4847. "jetbrains/phpstorm-stubs": "2019.3",
  4848. "nikic/php-parser": "^4.4.0",
  4849. "php": ">=7.2.0,<7.5.0",
  4850. "phpdocumentor/reflection-docblock": "^5.1.0",
  4851. "phpdocumentor/type-resolver": "^1.1.0",
  4852. "roave/signature": "^1.0"
  4853. },
  4854. "require-dev": {
  4855. "doctrine/coding-standard": "^7.0.2",
  4856. "phpstan/phpstan": "^0.12.25",
  4857. "phpunit/phpunit": "^8.5.4",
  4858. "vimeo/psalm": "3.11.2"
  4859. },
  4860. "suggest": {
  4861. "composer/composer": "Required to use the ComposerSourceLocator"
  4862. },
  4863. "type": "library",
  4864. "extra": {
  4865. "branch-alias": {
  4866. "dev-master": "4.0-dev"
  4867. }
  4868. },
  4869. "autoload": {
  4870. "psr-4": {
  4871. "Roave\\BetterReflection\\": "src"
  4872. }
  4873. },
  4874. "notification-url": "https://packagist.org/downloads/",
  4875. "license": [
  4876. "MIT"
  4877. ],
  4878. "authors": [
  4879. {
  4880. "name": "James Titcumb",
  4881. "email": "james@asgrim.com",
  4882. "homepage": "https://github.com/asgrim"
  4883. },
  4884. {
  4885. "name": "Marco Pivetta",
  4886. "email": "ocramius@gmail.com",
  4887. "homepage": "https://ocramius.github.io/"
  4888. },
  4889. {
  4890. "name": "Gary Hockin",
  4891. "email": "gary@roave.com",
  4892. "homepage": "https://github.com/geeh"
  4893. },
  4894. {
  4895. "name": "Jaroslav Hanslík",
  4896. "email": "kukulich@kukulich.cz",
  4897. "homepage": "https://github.com/kukulich"
  4898. }
  4899. ],
  4900. "description": "Better Reflection - an improved code reflection API",
  4901. "support": {
  4902. "issues": "https://github.com/Roave/BetterReflection/issues",
  4903. "source": "https://github.com/Roave/BetterReflection/tree/4.3.0"
  4904. },
  4905. "time": "2020-05-28T14:10:32+00:00"
  4906. },
  4907. {
  4908. "name": "roave/signature",
  4909. "version": "1.2.0",
  4910. "source": {
  4911. "type": "git",
  4912. "url": "https://github.com/Roave/Signature.git",
  4913. "reference": "577ee14d2abaeb315a5cd2d86d7e3df46a7dac56"
  4914. },
  4915. "dist": {
  4916. "type": "zip",
  4917. "url": "https://api.github.com/repos/Roave/Signature/zipball/577ee14d2abaeb315a5cd2d86d7e3df46a7dac56",
  4918. "reference": "577ee14d2abaeb315a5cd2d86d7e3df46a7dac56",
  4919. "shasum": "",
  4920. "mirrors": [
  4921. {
  4922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4923. "preferred": true
  4924. }
  4925. ]
  4926. },
  4927. "require": {
  4928. "php": "^7.3 || ^7.4"
  4929. },
  4930. "require-dev": {
  4931. "doctrine/coding-standard": "^8.1",
  4932. "infection/infection": "^0.17.5",
  4933. "phpunit/phpunit": "^9.3",
  4934. "vimeo/psalm": "^3.16"
  4935. },
  4936. "type": "library",
  4937. "autoload": {
  4938. "psr-4": {
  4939. "Roave\\Signature\\": "src"
  4940. }
  4941. },
  4942. "notification-url": "https://packagist.org/downloads/",
  4943. "license": [
  4944. "MIT"
  4945. ],
  4946. "description": "Sign and verify stuff",
  4947. "support": {
  4948. "issues": "https://github.com/Roave/Signature/issues",
  4949. "source": "https://github.com/Roave/Signature/tree/1.2.0"
  4950. },
  4951. "time": "2020-10-01T08:18:39+00:00"
  4952. },
  4953. {
  4954. "name": "symfony/console",
  4955. "version": "v5.1.8",
  4956. "source": {
  4957. "type": "git",
  4958. "url": "https://github.com/symfony/console.git",
  4959. "reference": "e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e"
  4960. },
  4961. "dist": {
  4962. "type": "zip",
  4963. "url": "https://api.github.com/repos/symfony/console/zipball/e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e",
  4964. "reference": "e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e",
  4965. "shasum": "",
  4966. "mirrors": [
  4967. {
  4968. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4969. "preferred": true
  4970. }
  4971. ]
  4972. },
  4973. "require": {
  4974. "php": ">=7.2.5",
  4975. "symfony/polyfill-mbstring": "~1.0",
  4976. "symfony/polyfill-php73": "^1.8",
  4977. "symfony/polyfill-php80": "^1.15",
  4978. "symfony/service-contracts": "^1.1|^2",
  4979. "symfony/string": "^5.1"
  4980. },
  4981. "conflict": {
  4982. "symfony/dependency-injection": "<4.4",
  4983. "symfony/dotenv": "<5.1",
  4984. "symfony/event-dispatcher": "<4.4",
  4985. "symfony/lock": "<4.4",
  4986. "symfony/process": "<4.4"
  4987. },
  4988. "provide": {
  4989. "psr/log-implementation": "1.0"
  4990. },
  4991. "require-dev": {
  4992. "psr/log": "~1.0",
  4993. "symfony/config": "^4.4|^5.0",
  4994. "symfony/dependency-injection": "^4.4|^5.0",
  4995. "symfony/event-dispatcher": "^4.4|^5.0",
  4996. "symfony/lock": "^4.4|^5.0",
  4997. "symfony/process": "^4.4|^5.0",
  4998. "symfony/var-dumper": "^4.4|^5.0"
  4999. },
  5000. "suggest": {
  5001. "psr/log": "For using the console logger",
  5002. "symfony/event-dispatcher": "",
  5003. "symfony/lock": "",
  5004. "symfony/process": ""
  5005. },
  5006. "type": "library",
  5007. "autoload": {
  5008. "psr-4": {
  5009. "Symfony\\Component\\Console\\": ""
  5010. },
  5011. "exclude-from-classmap": [
  5012. "/Tests/"
  5013. ]
  5014. },
  5015. "notification-url": "https://packagist.org/downloads/",
  5016. "license": [
  5017. "MIT"
  5018. ],
  5019. "authors": [
  5020. {
  5021. "name": "Fabien Potencier",
  5022. "email": "fabien@symfony.com"
  5023. },
  5024. {
  5025. "name": "Symfony Community",
  5026. "homepage": "https://symfony.com/contributors"
  5027. }
  5028. ],
  5029. "description": "Symfony Console Component",
  5030. "homepage": "https://symfony.com",
  5031. "support": {
  5032. "source": "https://github.com/symfony/console/tree/v5.1.8"
  5033. },
  5034. "funding": [
  5035. {
  5036. "url": "https://symfony.com/sponsor",
  5037. "type": "custom"
  5038. },
  5039. {
  5040. "url": "https://github.com/fabpot",
  5041. "type": "github"
  5042. },
  5043. {
  5044. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5045. "type": "tidelift"
  5046. }
  5047. ],
  5048. "time": "2020-10-24T12:01:57+00:00"
  5049. },
  5050. {
  5051. "name": "symfony/finder",
  5052. "version": "v5.1.8",
  5053. "source": {
  5054. "type": "git",
  5055. "url": "https://github.com/symfony/finder.git",
  5056. "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0"
  5057. },
  5058. "dist": {
  5059. "type": "zip",
  5060. "url": "https://api.github.com/repos/symfony/finder/zipball/e70eb5a69c2ff61ea135a13d2266e8914a67b3a0",
  5061. "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0",
  5062. "shasum": "",
  5063. "mirrors": [
  5064. {
  5065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5066. "preferred": true
  5067. }
  5068. ]
  5069. },
  5070. "require": {
  5071. "php": ">=7.2.5"
  5072. },
  5073. "type": "library",
  5074. "autoload": {
  5075. "psr-4": {
  5076. "Symfony\\Component\\Finder\\": ""
  5077. },
  5078. "exclude-from-classmap": [
  5079. "/Tests/"
  5080. ]
  5081. },
  5082. "notification-url": "https://packagist.org/downloads/",
  5083. "license": [
  5084. "MIT"
  5085. ],
  5086. "authors": [
  5087. {
  5088. "name": "Fabien Potencier",
  5089. "email": "fabien@symfony.com"
  5090. },
  5091. {
  5092. "name": "Symfony Community",
  5093. "homepage": "https://symfony.com/contributors"
  5094. }
  5095. ],
  5096. "description": "Symfony Finder Component",
  5097. "homepage": "https://symfony.com",
  5098. "support": {
  5099. "source": "https://github.com/symfony/finder/tree/v5.1.8"
  5100. },
  5101. "funding": [
  5102. {
  5103. "url": "https://symfony.com/sponsor",
  5104. "type": "custom"
  5105. },
  5106. {
  5107. "url": "https://github.com/fabpot",
  5108. "type": "github"
  5109. },
  5110. {
  5111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5112. "type": "tidelift"
  5113. }
  5114. ],
  5115. "time": "2020-10-24T12:01:57+00:00"
  5116. },
  5117. {
  5118. "name": "symfony/polyfill-ctype",
  5119. "version": "v1.20.0",
  5120. "source": {
  5121. "type": "git",
  5122. "url": "https://github.com/symfony/polyfill-ctype.git",
  5123. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  5124. },
  5125. "dist": {
  5126. "type": "zip",
  5127. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5128. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5129. "shasum": "",
  5130. "mirrors": [
  5131. {
  5132. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5133. "preferred": true
  5134. }
  5135. ]
  5136. },
  5137. "require": {
  5138. "php": ">=7.1"
  5139. },
  5140. "suggest": {
  5141. "ext-ctype": "For best performance"
  5142. },
  5143. "type": "library",
  5144. "extra": {
  5145. "branch-alias": {
  5146. "dev-main": "1.20-dev"
  5147. },
  5148. "thanks": {
  5149. "name": "symfony/polyfill",
  5150. "url": "https://github.com/symfony/polyfill"
  5151. }
  5152. },
  5153. "autoload": {
  5154. "psr-4": {
  5155. "Symfony\\Polyfill\\Ctype\\": ""
  5156. },
  5157. "files": [
  5158. "bootstrap.php"
  5159. ]
  5160. },
  5161. "notification-url": "https://packagist.org/downloads/",
  5162. "license": [
  5163. "MIT"
  5164. ],
  5165. "authors": [
  5166. {
  5167. "name": "Gert de Pagter",
  5168. "email": "BackEndTea@gmail.com"
  5169. },
  5170. {
  5171. "name": "Symfony Community",
  5172. "homepage": "https://symfony.com/contributors"
  5173. }
  5174. ],
  5175. "description": "Symfony polyfill for ctype functions",
  5176. "homepage": "https://symfony.com",
  5177. "keywords": [
  5178. "compatibility",
  5179. "ctype",
  5180. "polyfill",
  5181. "portable"
  5182. ],
  5183. "support": {
  5184. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  5185. },
  5186. "funding": [
  5187. {
  5188. "url": "https://symfony.com/sponsor",
  5189. "type": "custom"
  5190. },
  5191. {
  5192. "url": "https://github.com/fabpot",
  5193. "type": "github"
  5194. },
  5195. {
  5196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5197. "type": "tidelift"
  5198. }
  5199. ],
  5200. "time": "2020-10-23T14:02:19+00:00"
  5201. },
  5202. {
  5203. "name": "symfony/polyfill-intl-grapheme",
  5204. "version": "v1.20.0",
  5205. "source": {
  5206. "type": "git",
  5207. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5208. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
  5209. },
  5210. "dist": {
  5211. "type": "zip",
  5212. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5213. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5214. "shasum": "",
  5215. "mirrors": [
  5216. {
  5217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5218. "preferred": true
  5219. }
  5220. ]
  5221. },
  5222. "require": {
  5223. "php": ">=7.1"
  5224. },
  5225. "suggest": {
  5226. "ext-intl": "For best performance"
  5227. },
  5228. "type": "library",
  5229. "extra": {
  5230. "branch-alias": {
  5231. "dev-main": "1.20-dev"
  5232. },
  5233. "thanks": {
  5234. "name": "symfony/polyfill",
  5235. "url": "https://github.com/symfony/polyfill"
  5236. }
  5237. },
  5238. "autoload": {
  5239. "psr-4": {
  5240. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5241. },
  5242. "files": [
  5243. "bootstrap.php"
  5244. ]
  5245. },
  5246. "notification-url": "https://packagist.org/downloads/",
  5247. "license": [
  5248. "MIT"
  5249. ],
  5250. "authors": [
  5251. {
  5252. "name": "Nicolas Grekas",
  5253. "email": "p@tchwork.com"
  5254. },
  5255. {
  5256. "name": "Symfony Community",
  5257. "homepage": "https://symfony.com/contributors"
  5258. }
  5259. ],
  5260. "description": "Symfony polyfill for intl's grapheme_* functions",
  5261. "homepage": "https://symfony.com",
  5262. "keywords": [
  5263. "compatibility",
  5264. "grapheme",
  5265. "intl",
  5266. "polyfill",
  5267. "portable",
  5268. "shim"
  5269. ],
  5270. "support": {
  5271. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
  5272. },
  5273. "funding": [
  5274. {
  5275. "url": "https://symfony.com/sponsor",
  5276. "type": "custom"
  5277. },
  5278. {
  5279. "url": "https://github.com/fabpot",
  5280. "type": "github"
  5281. },
  5282. {
  5283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5284. "type": "tidelift"
  5285. }
  5286. ],
  5287. "time": "2020-10-23T14:02:19+00:00"
  5288. },
  5289. {
  5290. "name": "symfony/polyfill-intl-idn",
  5291. "version": "v1.20.0",
  5292. "source": {
  5293. "type": "git",
  5294. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5295. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  5296. },
  5297. "dist": {
  5298. "type": "zip",
  5299. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5300. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5301. "shasum": "",
  5302. "mirrors": [
  5303. {
  5304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5305. "preferred": true
  5306. }
  5307. ]
  5308. },
  5309. "require": {
  5310. "php": ">=7.1",
  5311. "symfony/polyfill-intl-normalizer": "^1.10",
  5312. "symfony/polyfill-php72": "^1.10"
  5313. },
  5314. "suggest": {
  5315. "ext-intl": "For best performance"
  5316. },
  5317. "type": "library",
  5318. "extra": {
  5319. "branch-alias": {
  5320. "dev-main": "1.20-dev"
  5321. },
  5322. "thanks": {
  5323. "name": "symfony/polyfill",
  5324. "url": "https://github.com/symfony/polyfill"
  5325. }
  5326. },
  5327. "autoload": {
  5328. "psr-4": {
  5329. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5330. },
  5331. "files": [
  5332. "bootstrap.php"
  5333. ]
  5334. },
  5335. "notification-url": "https://packagist.org/downloads/",
  5336. "license": [
  5337. "MIT"
  5338. ],
  5339. "authors": [
  5340. {
  5341. "name": "Laurent Bassin",
  5342. "email": "laurent@bassin.info"
  5343. },
  5344. {
  5345. "name": "Trevor Rowbotham",
  5346. "email": "trevor.rowbotham@pm.me"
  5347. },
  5348. {
  5349. "name": "Symfony Community",
  5350. "homepage": "https://symfony.com/contributors"
  5351. }
  5352. ],
  5353. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5354. "homepage": "https://symfony.com",
  5355. "keywords": [
  5356. "compatibility",
  5357. "idn",
  5358. "intl",
  5359. "polyfill",
  5360. "portable",
  5361. "shim"
  5362. ],
  5363. "support": {
  5364. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  5365. },
  5366. "funding": [
  5367. {
  5368. "url": "https://symfony.com/sponsor",
  5369. "type": "custom"
  5370. },
  5371. {
  5372. "url": "https://github.com/fabpot",
  5373. "type": "github"
  5374. },
  5375. {
  5376. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5377. "type": "tidelift"
  5378. }
  5379. ],
  5380. "time": "2020-10-23T14:02:19+00:00"
  5381. },
  5382. {
  5383. "name": "symfony/polyfill-intl-normalizer",
  5384. "version": "v1.20.0",
  5385. "source": {
  5386. "type": "git",
  5387. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5388. "reference": "727d1096295d807c309fb01a851577302394c897"
  5389. },
  5390. "dist": {
  5391. "type": "zip",
  5392. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  5393. "reference": "727d1096295d807c309fb01a851577302394c897",
  5394. "shasum": "",
  5395. "mirrors": [
  5396. {
  5397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5398. "preferred": true
  5399. }
  5400. ]
  5401. },
  5402. "require": {
  5403. "php": ">=7.1"
  5404. },
  5405. "suggest": {
  5406. "ext-intl": "For best performance"
  5407. },
  5408. "type": "library",
  5409. "extra": {
  5410. "branch-alias": {
  5411. "dev-main": "1.20-dev"
  5412. },
  5413. "thanks": {
  5414. "name": "symfony/polyfill",
  5415. "url": "https://github.com/symfony/polyfill"
  5416. }
  5417. },
  5418. "autoload": {
  5419. "psr-4": {
  5420. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5421. },
  5422. "files": [
  5423. "bootstrap.php"
  5424. ],
  5425. "classmap": [
  5426. "Resources/stubs"
  5427. ]
  5428. },
  5429. "notification-url": "https://packagist.org/downloads/",
  5430. "license": [
  5431. "MIT"
  5432. ],
  5433. "authors": [
  5434. {
  5435. "name": "Nicolas Grekas",
  5436. "email": "p@tchwork.com"
  5437. },
  5438. {
  5439. "name": "Symfony Community",
  5440. "homepage": "https://symfony.com/contributors"
  5441. }
  5442. ],
  5443. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5444. "homepage": "https://symfony.com",
  5445. "keywords": [
  5446. "compatibility",
  5447. "intl",
  5448. "normalizer",
  5449. "polyfill",
  5450. "portable",
  5451. "shim"
  5452. ],
  5453. "support": {
  5454. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  5455. },
  5456. "funding": [
  5457. {
  5458. "url": "https://symfony.com/sponsor",
  5459. "type": "custom"
  5460. },
  5461. {
  5462. "url": "https://github.com/fabpot",
  5463. "type": "github"
  5464. },
  5465. {
  5466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5467. "type": "tidelift"
  5468. }
  5469. ],
  5470. "time": "2020-10-23T14:02:19+00:00"
  5471. },
  5472. {
  5473. "name": "symfony/polyfill-mbstring",
  5474. "version": "v1.20.0",
  5475. "source": {
  5476. "type": "git",
  5477. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5478. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  5479. },
  5480. "dist": {
  5481. "type": "zip",
  5482. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  5483. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  5484. "shasum": "",
  5485. "mirrors": [
  5486. {
  5487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5488. "preferred": true
  5489. }
  5490. ]
  5491. },
  5492. "require": {
  5493. "php": ">=7.1"
  5494. },
  5495. "suggest": {
  5496. "ext-mbstring": "For best performance"
  5497. },
  5498. "type": "library",
  5499. "extra": {
  5500. "branch-alias": {
  5501. "dev-main": "1.20-dev"
  5502. },
  5503. "thanks": {
  5504. "name": "symfony/polyfill",
  5505. "url": "https://github.com/symfony/polyfill"
  5506. }
  5507. },
  5508. "autoload": {
  5509. "psr-4": {
  5510. "Symfony\\Polyfill\\Mbstring\\": ""
  5511. },
  5512. "files": [
  5513. "bootstrap.php"
  5514. ]
  5515. },
  5516. "notification-url": "https://packagist.org/downloads/",
  5517. "license": [
  5518. "MIT"
  5519. ],
  5520. "authors": [
  5521. {
  5522. "name": "Nicolas Grekas",
  5523. "email": "p@tchwork.com"
  5524. },
  5525. {
  5526. "name": "Symfony Community",
  5527. "homepage": "https://symfony.com/contributors"
  5528. }
  5529. ],
  5530. "description": "Symfony polyfill for the Mbstring extension",
  5531. "homepage": "https://symfony.com",
  5532. "keywords": [
  5533. "compatibility",
  5534. "mbstring",
  5535. "polyfill",
  5536. "portable",
  5537. "shim"
  5538. ],
  5539. "support": {
  5540. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  5541. },
  5542. "funding": [
  5543. {
  5544. "url": "https://symfony.com/sponsor",
  5545. "type": "custom"
  5546. },
  5547. {
  5548. "url": "https://github.com/fabpot",
  5549. "type": "github"
  5550. },
  5551. {
  5552. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5553. "type": "tidelift"
  5554. }
  5555. ],
  5556. "time": "2020-10-23T14:02:19+00:00"
  5557. },
  5558. {
  5559. "name": "symfony/polyfill-php72",
  5560. "version": "v1.20.0",
  5561. "source": {
  5562. "type": "git",
  5563. "url": "https://github.com/symfony/polyfill-php72.git",
  5564. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  5565. },
  5566. "dist": {
  5567. "type": "zip",
  5568. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  5569. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  5570. "shasum": "",
  5571. "mirrors": [
  5572. {
  5573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5574. "preferred": true
  5575. }
  5576. ]
  5577. },
  5578. "require": {
  5579. "php": ">=7.1"
  5580. },
  5581. "type": "library",
  5582. "extra": {
  5583. "branch-alias": {
  5584. "dev-main": "1.20-dev"
  5585. },
  5586. "thanks": {
  5587. "name": "symfony/polyfill",
  5588. "url": "https://github.com/symfony/polyfill"
  5589. }
  5590. },
  5591. "autoload": {
  5592. "psr-4": {
  5593. "Symfony\\Polyfill\\Php72\\": ""
  5594. },
  5595. "files": [
  5596. "bootstrap.php"
  5597. ]
  5598. },
  5599. "notification-url": "https://packagist.org/downloads/",
  5600. "license": [
  5601. "MIT"
  5602. ],
  5603. "authors": [
  5604. {
  5605. "name": "Nicolas Grekas",
  5606. "email": "p@tchwork.com"
  5607. },
  5608. {
  5609. "name": "Symfony Community",
  5610. "homepage": "https://symfony.com/contributors"
  5611. }
  5612. ],
  5613. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5614. "homepage": "https://symfony.com",
  5615. "keywords": [
  5616. "compatibility",
  5617. "polyfill",
  5618. "portable",
  5619. "shim"
  5620. ],
  5621. "support": {
  5622. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  5623. },
  5624. "funding": [
  5625. {
  5626. "url": "https://symfony.com/sponsor",
  5627. "type": "custom"
  5628. },
  5629. {
  5630. "url": "https://github.com/fabpot",
  5631. "type": "github"
  5632. },
  5633. {
  5634. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5635. "type": "tidelift"
  5636. }
  5637. ],
  5638. "time": "2020-10-23T14:02:19+00:00"
  5639. },
  5640. {
  5641. "name": "symfony/polyfill-php73",
  5642. "version": "v1.20.0",
  5643. "source": {
  5644. "type": "git",
  5645. "url": "https://github.com/symfony/polyfill-php73.git",
  5646. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  5647. },
  5648. "dist": {
  5649. "type": "zip",
  5650. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  5651. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  5652. "shasum": "",
  5653. "mirrors": [
  5654. {
  5655. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5656. "preferred": true
  5657. }
  5658. ]
  5659. },
  5660. "require": {
  5661. "php": ">=7.1"
  5662. },
  5663. "type": "library",
  5664. "extra": {
  5665. "branch-alias": {
  5666. "dev-main": "1.20-dev"
  5667. },
  5668. "thanks": {
  5669. "name": "symfony/polyfill",
  5670. "url": "https://github.com/symfony/polyfill"
  5671. }
  5672. },
  5673. "autoload": {
  5674. "psr-4": {
  5675. "Symfony\\Polyfill\\Php73\\": ""
  5676. },
  5677. "files": [
  5678. "bootstrap.php"
  5679. ],
  5680. "classmap": [
  5681. "Resources/stubs"
  5682. ]
  5683. },
  5684. "notification-url": "https://packagist.org/downloads/",
  5685. "license": [
  5686. "MIT"
  5687. ],
  5688. "authors": [
  5689. {
  5690. "name": "Nicolas Grekas",
  5691. "email": "p@tchwork.com"
  5692. },
  5693. {
  5694. "name": "Symfony Community",
  5695. "homepage": "https://symfony.com/contributors"
  5696. }
  5697. ],
  5698. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5699. "homepage": "https://symfony.com",
  5700. "keywords": [
  5701. "compatibility",
  5702. "polyfill",
  5703. "portable",
  5704. "shim"
  5705. ],
  5706. "support": {
  5707. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  5708. },
  5709. "funding": [
  5710. {
  5711. "url": "https://symfony.com/sponsor",
  5712. "type": "custom"
  5713. },
  5714. {
  5715. "url": "https://github.com/fabpot",
  5716. "type": "github"
  5717. },
  5718. {
  5719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5720. "type": "tidelift"
  5721. }
  5722. ],
  5723. "time": "2020-10-23T14:02:19+00:00"
  5724. },
  5725. {
  5726. "name": "symfony/polyfill-php80",
  5727. "version": "v1.20.0",
  5728. "source": {
  5729. "type": "git",
  5730. "url": "https://github.com/symfony/polyfill-php80.git",
  5731. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  5732. },
  5733. "dist": {
  5734. "type": "zip",
  5735. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  5736. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  5737. "shasum": "",
  5738. "mirrors": [
  5739. {
  5740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5741. "preferred": true
  5742. }
  5743. ]
  5744. },
  5745. "require": {
  5746. "php": ">=7.1"
  5747. },
  5748. "type": "library",
  5749. "extra": {
  5750. "branch-alias": {
  5751. "dev-main": "1.20-dev"
  5752. },
  5753. "thanks": {
  5754. "name": "symfony/polyfill",
  5755. "url": "https://github.com/symfony/polyfill"
  5756. }
  5757. },
  5758. "autoload": {
  5759. "psr-4": {
  5760. "Symfony\\Polyfill\\Php80\\": ""
  5761. },
  5762. "files": [
  5763. "bootstrap.php"
  5764. ],
  5765. "classmap": [
  5766. "Resources/stubs"
  5767. ]
  5768. },
  5769. "notification-url": "https://packagist.org/downloads/",
  5770. "license": [
  5771. "MIT"
  5772. ],
  5773. "authors": [
  5774. {
  5775. "name": "Ion Bazan",
  5776. "email": "ion.bazan@gmail.com"
  5777. },
  5778. {
  5779. "name": "Nicolas Grekas",
  5780. "email": "p@tchwork.com"
  5781. },
  5782. {
  5783. "name": "Symfony Community",
  5784. "homepage": "https://symfony.com/contributors"
  5785. }
  5786. ],
  5787. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5788. "homepage": "https://symfony.com",
  5789. "keywords": [
  5790. "compatibility",
  5791. "polyfill",
  5792. "portable",
  5793. "shim"
  5794. ],
  5795. "support": {
  5796. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  5797. },
  5798. "funding": [
  5799. {
  5800. "url": "https://symfony.com/sponsor",
  5801. "type": "custom"
  5802. },
  5803. {
  5804. "url": "https://github.com/fabpot",
  5805. "type": "github"
  5806. },
  5807. {
  5808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5809. "type": "tidelift"
  5810. }
  5811. ],
  5812. "time": "2020-10-23T14:02:19+00:00"
  5813. },
  5814. {
  5815. "name": "symfony/service-contracts",
  5816. "version": "v2.2.0",
  5817. "source": {
  5818. "type": "git",
  5819. "url": "https://github.com/symfony/service-contracts.git",
  5820. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  5821. },
  5822. "dist": {
  5823. "type": "zip",
  5824. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5825. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5826. "shasum": "",
  5827. "mirrors": [
  5828. {
  5829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5830. "preferred": true
  5831. }
  5832. ]
  5833. },
  5834. "require": {
  5835. "php": ">=7.2.5",
  5836. "psr/container": "^1.0"
  5837. },
  5838. "suggest": {
  5839. "symfony/service-implementation": ""
  5840. },
  5841. "type": "library",
  5842. "extra": {
  5843. "branch-alias": {
  5844. "dev-master": "2.2-dev"
  5845. },
  5846. "thanks": {
  5847. "name": "symfony/contracts",
  5848. "url": "https://github.com/symfony/contracts"
  5849. }
  5850. },
  5851. "autoload": {
  5852. "psr-4": {
  5853. "Symfony\\Contracts\\Service\\": ""
  5854. }
  5855. },
  5856. "notification-url": "https://packagist.org/downloads/",
  5857. "license": [
  5858. "MIT"
  5859. ],
  5860. "authors": [
  5861. {
  5862. "name": "Nicolas Grekas",
  5863. "email": "p@tchwork.com"
  5864. },
  5865. {
  5866. "name": "Symfony Community",
  5867. "homepage": "https://symfony.com/contributors"
  5868. }
  5869. ],
  5870. "description": "Generic abstractions related to writing services",
  5871. "homepage": "https://symfony.com",
  5872. "keywords": [
  5873. "abstractions",
  5874. "contracts",
  5875. "decoupling",
  5876. "interfaces",
  5877. "interoperability",
  5878. "standards"
  5879. ],
  5880. "support": {
  5881. "source": "https://github.com/symfony/service-contracts/tree/master"
  5882. },
  5883. "funding": [
  5884. {
  5885. "url": "https://symfony.com/sponsor",
  5886. "type": "custom"
  5887. },
  5888. {
  5889. "url": "https://github.com/fabpot",
  5890. "type": "github"
  5891. },
  5892. {
  5893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5894. "type": "tidelift"
  5895. }
  5896. ],
  5897. "time": "2020-09-07T11:33:47+00:00"
  5898. },
  5899. {
  5900. "name": "symfony/string",
  5901. "version": "v5.1.8",
  5902. "source": {
  5903. "type": "git",
  5904. "url": "https://github.com/symfony/string.git",
  5905. "reference": "a97573e960303db71be0dd8fda9be3bca5e0feea"
  5906. },
  5907. "dist": {
  5908. "type": "zip",
  5909. "url": "https://api.github.com/repos/symfony/string/zipball/a97573e960303db71be0dd8fda9be3bca5e0feea",
  5910. "reference": "a97573e960303db71be0dd8fda9be3bca5e0feea",
  5911. "shasum": "",
  5912. "mirrors": [
  5913. {
  5914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5915. "preferred": true
  5916. }
  5917. ]
  5918. },
  5919. "require": {
  5920. "php": ">=7.2.5",
  5921. "symfony/polyfill-ctype": "~1.8",
  5922. "symfony/polyfill-intl-grapheme": "~1.0",
  5923. "symfony/polyfill-intl-normalizer": "~1.0",
  5924. "symfony/polyfill-mbstring": "~1.0",
  5925. "symfony/polyfill-php80": "~1.15"
  5926. },
  5927. "require-dev": {
  5928. "symfony/error-handler": "^4.4|^5.0",
  5929. "symfony/http-client": "^4.4|^5.0",
  5930. "symfony/translation-contracts": "^1.1|^2",
  5931. "symfony/var-exporter": "^4.4|^5.0"
  5932. },
  5933. "type": "library",
  5934. "autoload": {
  5935. "psr-4": {
  5936. "Symfony\\Component\\String\\": ""
  5937. },
  5938. "files": [
  5939. "Resources/functions.php"
  5940. ],
  5941. "exclude-from-classmap": [
  5942. "/Tests/"
  5943. ]
  5944. },
  5945. "notification-url": "https://packagist.org/downloads/",
  5946. "license": [
  5947. "MIT"
  5948. ],
  5949. "authors": [
  5950. {
  5951. "name": "Nicolas Grekas",
  5952. "email": "p@tchwork.com"
  5953. },
  5954. {
  5955. "name": "Symfony Community",
  5956. "homepage": "https://symfony.com/contributors"
  5957. }
  5958. ],
  5959. "description": "Symfony String component",
  5960. "homepage": "https://symfony.com",
  5961. "keywords": [
  5962. "grapheme",
  5963. "i18n",
  5964. "string",
  5965. "unicode",
  5966. "utf-8",
  5967. "utf8"
  5968. ],
  5969. "support": {
  5970. "source": "https://github.com/symfony/string/tree/v5.1.8"
  5971. },
  5972. "funding": [
  5973. {
  5974. "url": "https://symfony.com/sponsor",
  5975. "type": "custom"
  5976. },
  5977. {
  5978. "url": "https://github.com/fabpot",
  5979. "type": "github"
  5980. },
  5981. {
  5982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5983. "type": "tidelift"
  5984. }
  5985. ],
  5986. "time": "2020-10-24T12:01:57+00:00"
  5987. },
  5988. {
  5989. "name": "symfony/translation",
  5990. "version": "v5.1.8",
  5991. "source": {
  5992. "type": "git",
  5993. "url": "https://github.com/symfony/translation.git",
  5994. "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6"
  5995. },
  5996. "dist": {
  5997. "type": "zip",
  5998. "url": "https://api.github.com/repos/symfony/translation/zipball/27980838fd261e04379fa91e94e81e662fe5a1b6",
  5999. "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6",
  6000. "shasum": "",
  6001. "mirrors": [
  6002. {
  6003. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6004. "preferred": true
  6005. }
  6006. ]
  6007. },
  6008. "require": {
  6009. "php": ">=7.2.5",
  6010. "symfony/polyfill-mbstring": "~1.0",
  6011. "symfony/polyfill-php80": "^1.15",
  6012. "symfony/translation-contracts": "^2"
  6013. },
  6014. "conflict": {
  6015. "symfony/config": "<4.4",
  6016. "symfony/dependency-injection": "<5.0",
  6017. "symfony/http-kernel": "<5.0",
  6018. "symfony/twig-bundle": "<5.0",
  6019. "symfony/yaml": "<4.4"
  6020. },
  6021. "provide": {
  6022. "symfony/translation-implementation": "2.0"
  6023. },
  6024. "require-dev": {
  6025. "psr/log": "~1.0",
  6026. "symfony/config": "^4.4|^5.0",
  6027. "symfony/console": "^4.4|^5.0",
  6028. "symfony/dependency-injection": "^5.0",
  6029. "symfony/finder": "^4.4|^5.0",
  6030. "symfony/http-kernel": "^5.0",
  6031. "symfony/intl": "^4.4|^5.0",
  6032. "symfony/service-contracts": "^1.1.2|^2",
  6033. "symfony/yaml": "^4.4|^5.0"
  6034. },
  6035. "suggest": {
  6036. "psr/log-implementation": "To use logging capability in translator",
  6037. "symfony/config": "",
  6038. "symfony/yaml": ""
  6039. },
  6040. "type": "library",
  6041. "autoload": {
  6042. "psr-4": {
  6043. "Symfony\\Component\\Translation\\": ""
  6044. },
  6045. "exclude-from-classmap": [
  6046. "/Tests/"
  6047. ]
  6048. },
  6049. "notification-url": "https://packagist.org/downloads/",
  6050. "license": [
  6051. "MIT"
  6052. ],
  6053. "authors": [
  6054. {
  6055. "name": "Fabien Potencier",
  6056. "email": "fabien@symfony.com"
  6057. },
  6058. {
  6059. "name": "Symfony Community",
  6060. "homepage": "https://symfony.com/contributors"
  6061. }
  6062. ],
  6063. "description": "Symfony Translation Component",
  6064. "homepage": "https://symfony.com",
  6065. "support": {
  6066. "source": "https://github.com/symfony/translation/tree/v5.1.8"
  6067. },
  6068. "funding": [
  6069. {
  6070. "url": "https://symfony.com/sponsor",
  6071. "type": "custom"
  6072. },
  6073. {
  6074. "url": "https://github.com/fabpot",
  6075. "type": "github"
  6076. },
  6077. {
  6078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6079. "type": "tidelift"
  6080. }
  6081. ],
  6082. "time": "2020-10-24T12:01:57+00:00"
  6083. },
  6084. {
  6085. "name": "symfony/translation-contracts",
  6086. "version": "v2.3.0",
  6087. "source": {
  6088. "type": "git",
  6089. "url": "https://github.com/symfony/translation-contracts.git",
  6090. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6091. },
  6092. "dist": {
  6093. "type": "zip",
  6094. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6095. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6096. "shasum": "",
  6097. "mirrors": [
  6098. {
  6099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6100. "preferred": true
  6101. }
  6102. ]
  6103. },
  6104. "require": {
  6105. "php": ">=7.2.5"
  6106. },
  6107. "suggest": {
  6108. "symfony/translation-implementation": ""
  6109. },
  6110. "type": "library",
  6111. "extra": {
  6112. "branch-alias": {
  6113. "dev-master": "2.3-dev"
  6114. },
  6115. "thanks": {
  6116. "name": "symfony/contracts",
  6117. "url": "https://github.com/symfony/contracts"
  6118. }
  6119. },
  6120. "autoload": {
  6121. "psr-4": {
  6122. "Symfony\\Contracts\\Translation\\": ""
  6123. }
  6124. },
  6125. "notification-url": "https://packagist.org/downloads/",
  6126. "license": [
  6127. "MIT"
  6128. ],
  6129. "authors": [
  6130. {
  6131. "name": "Nicolas Grekas",
  6132. "email": "p@tchwork.com"
  6133. },
  6134. {
  6135. "name": "Symfony Community",
  6136. "homepage": "https://symfony.com/contributors"
  6137. }
  6138. ],
  6139. "description": "Generic abstractions related to translation",
  6140. "homepage": "https://symfony.com",
  6141. "keywords": [
  6142. "abstractions",
  6143. "contracts",
  6144. "decoupling",
  6145. "interfaces",
  6146. "interoperability",
  6147. "standards"
  6148. ],
  6149. "support": {
  6150. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6151. },
  6152. "funding": [
  6153. {
  6154. "url": "https://symfony.com/sponsor",
  6155. "type": "custom"
  6156. },
  6157. {
  6158. "url": "https://github.com/fabpot",
  6159. "type": "github"
  6160. },
  6161. {
  6162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6163. "type": "tidelift"
  6164. }
  6165. ],
  6166. "time": "2020-09-28T13:05:58+00:00"
  6167. },
  6168. {
  6169. "name": "vlucas/phpdotenv",
  6170. "version": "v4.1.8",
  6171. "source": {
  6172. "type": "git",
  6173. "url": "https://github.com/vlucas/phpdotenv.git",
  6174. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  6175. },
  6176. "dist": {
  6177. "type": "zip",
  6178. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  6179. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  6180. "shasum": "",
  6181. "mirrors": [
  6182. {
  6183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6184. "preferred": true
  6185. }
  6186. ]
  6187. },
  6188. "require": {
  6189. "php": "^5.5.9 || ^7.0 || ^8.0",
  6190. "phpoption/phpoption": "^1.7.3",
  6191. "symfony/polyfill-ctype": "^1.17"
  6192. },
  6193. "require-dev": {
  6194. "bamarni/composer-bin-plugin": "^1.4.1",
  6195. "ext-filter": "*",
  6196. "ext-pcre": "*",
  6197. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6198. },
  6199. "suggest": {
  6200. "ext-filter": "Required to use the boolean validator.",
  6201. "ext-pcre": "Required to use most of the library."
  6202. },
  6203. "type": "library",
  6204. "extra": {
  6205. "branch-alias": {
  6206. "dev-master": "4.1-dev"
  6207. }
  6208. },
  6209. "autoload": {
  6210. "psr-4": {
  6211. "Dotenv\\": "src/"
  6212. }
  6213. },
  6214. "notification-url": "https://packagist.org/downloads/",
  6215. "license": [
  6216. "BSD-3-Clause"
  6217. ],
  6218. "authors": [
  6219. {
  6220. "name": "Graham Campbell",
  6221. "email": "graham@alt-three.com",
  6222. "homepage": "https://gjcampbell.co.uk/"
  6223. },
  6224. {
  6225. "name": "Vance Lucas",
  6226. "email": "vance@vancelucas.com",
  6227. "homepage": "https://vancelucas.com/"
  6228. }
  6229. ],
  6230. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6231. "keywords": [
  6232. "dotenv",
  6233. "env",
  6234. "environment"
  6235. ],
  6236. "support": {
  6237. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6238. "source": "https://github.com/vlucas/phpdotenv/tree/4.1"
  6239. },
  6240. "funding": [
  6241. {
  6242. "url": "https://github.com/GrahamCampbell",
  6243. "type": "github"
  6244. },
  6245. {
  6246. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6247. "type": "tidelift"
  6248. }
  6249. ],
  6250. "time": "2020-07-14T19:22:52+00:00"
  6251. },
  6252. {
  6253. "name": "webmozart/assert",
  6254. "version": "1.9.1",
  6255. "source": {
  6256. "type": "git",
  6257. "url": "https://github.com/webmozart/assert.git",
  6258. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  6259. },
  6260. "dist": {
  6261. "type": "zip",
  6262. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  6263. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  6264. "shasum": "",
  6265. "mirrors": [
  6266. {
  6267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6268. "preferred": true
  6269. }
  6270. ]
  6271. },
  6272. "require": {
  6273. "php": "^5.3.3 || ^7.0 || ^8.0",
  6274. "symfony/polyfill-ctype": "^1.8"
  6275. },
  6276. "conflict": {
  6277. "phpstan/phpstan": "<0.12.20",
  6278. "vimeo/psalm": "<3.9.1"
  6279. },
  6280. "require-dev": {
  6281. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6282. },
  6283. "type": "library",
  6284. "autoload": {
  6285. "psr-4": {
  6286. "Webmozart\\Assert\\": "src/"
  6287. }
  6288. },
  6289. "notification-url": "https://packagist.org/downloads/",
  6290. "license": [
  6291. "MIT"
  6292. ],
  6293. "authors": [
  6294. {
  6295. "name": "Bernhard Schussek",
  6296. "email": "bschussek@gmail.com"
  6297. }
  6298. ],
  6299. "description": "Assertions to validate method input/output with nice error messages.",
  6300. "keywords": [
  6301. "assert",
  6302. "check",
  6303. "validate"
  6304. ],
  6305. "support": {
  6306. "issues": "https://github.com/webmozart/assert/issues",
  6307. "source": "https://github.com/webmozart/assert/tree/master"
  6308. },
  6309. "time": "2020-07-08T17:02:28+00:00"
  6310. }
  6311. ],
  6312. "packages-dev": [
  6313. {
  6314. "name": "composer/semver",
  6315. "version": "3.2.2",
  6316. "source": {
  6317. "type": "git",
  6318. "url": "https://github.com/composer/semver.git",
  6319. "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
  6320. },
  6321. "dist": {
  6322. "type": "zip",
  6323. "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
  6324. "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
  6325. "shasum": "",
  6326. "mirrors": [
  6327. {
  6328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6329. "preferred": true
  6330. }
  6331. ]
  6332. },
  6333. "require": {
  6334. "php": "^5.3.2 || ^7.0 || ^8.0"
  6335. },
  6336. "require-dev": {
  6337. "phpstan/phpstan": "^0.12.19",
  6338. "symfony/phpunit-bridge": "^4.2 || ^5"
  6339. },
  6340. "type": "library",
  6341. "extra": {
  6342. "branch-alias": {
  6343. "dev-main": "3.x-dev"
  6344. }
  6345. },
  6346. "autoload": {
  6347. "psr-4": {
  6348. "Composer\\Semver\\": "src"
  6349. }
  6350. },
  6351. "notification-url": "https://packagist.org/downloads/",
  6352. "license": [
  6353. "MIT"
  6354. ],
  6355. "authors": [
  6356. {
  6357. "name": "Nils Adermann",
  6358. "email": "naderman@naderman.de",
  6359. "homepage": "http://www.naderman.de"
  6360. },
  6361. {
  6362. "name": "Jordi Boggiano",
  6363. "email": "j.boggiano@seld.be",
  6364. "homepage": "http://seld.be"
  6365. },
  6366. {
  6367. "name": "Rob Bast",
  6368. "email": "rob.bast@gmail.com",
  6369. "homepage": "http://robbast.nl"
  6370. }
  6371. ],
  6372. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6373. "keywords": [
  6374. "semantic",
  6375. "semver",
  6376. "validation",
  6377. "versioning"
  6378. ],
  6379. "support": {
  6380. "irc": "irc://irc.freenode.org/composer",
  6381. "issues": "https://github.com/composer/semver/issues",
  6382. "source": "https://github.com/composer/semver/tree/3.2.2"
  6383. },
  6384. "funding": [
  6385. {
  6386. "url": "https://packagist.com",
  6387. "type": "custom"
  6388. },
  6389. {
  6390. "url": "https://github.com/composer",
  6391. "type": "github"
  6392. },
  6393. {
  6394. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6395. "type": "tidelift"
  6396. }
  6397. ],
  6398. "time": "2020-10-14T08:51:15+00:00"
  6399. },
  6400. {
  6401. "name": "composer/xdebug-handler",
  6402. "version": "1.4.4",
  6403. "source": {
  6404. "type": "git",
  6405. "url": "https://github.com/composer/xdebug-handler.git",
  6406. "reference": "6e076a124f7ee146f2487554a94b6a19a74887ba"
  6407. },
  6408. "dist": {
  6409. "type": "zip",
  6410. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6e076a124f7ee146f2487554a94b6a19a74887ba",
  6411. "reference": "6e076a124f7ee146f2487554a94b6a19a74887ba",
  6412. "shasum": "",
  6413. "mirrors": [
  6414. {
  6415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6416. "preferred": true
  6417. }
  6418. ]
  6419. },
  6420. "require": {
  6421. "php": "^5.3.2 || ^7.0 || ^8.0",
  6422. "psr/log": "^1.0"
  6423. },
  6424. "require-dev": {
  6425. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  6426. },
  6427. "type": "library",
  6428. "autoload": {
  6429. "psr-4": {
  6430. "Composer\\XdebugHandler\\": "src"
  6431. }
  6432. },
  6433. "notification-url": "https://packagist.org/downloads/",
  6434. "license": [
  6435. "MIT"
  6436. ],
  6437. "authors": [
  6438. {
  6439. "name": "John Stevenson",
  6440. "email": "john-stevenson@blueyonder.co.uk"
  6441. }
  6442. ],
  6443. "description": "Restarts a process without Xdebug.",
  6444. "keywords": [
  6445. "Xdebug",
  6446. "performance"
  6447. ],
  6448. "support": {
  6449. "irc": "irc://irc.freenode.org/composer",
  6450. "issues": "https://github.com/composer/xdebug-handler/issues",
  6451. "source": "https://github.com/composer/xdebug-handler/tree/1.4.4"
  6452. },
  6453. "funding": [
  6454. {
  6455. "url": "https://packagist.com",
  6456. "type": "custom"
  6457. },
  6458. {
  6459. "url": "https://github.com/composer",
  6460. "type": "github"
  6461. },
  6462. {
  6463. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6464. "type": "tidelift"
  6465. }
  6466. ],
  6467. "time": "2020-10-24T12:39:10+00:00"
  6468. },
  6469. {
  6470. "name": "friendsofphp/php-cs-fixer",
  6471. "version": "v2.16.7",
  6472. "source": {
  6473. "type": "git",
  6474. "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
  6475. "reference": "4e35806a6d7d8510d6842ae932e8832363d22c87"
  6476. },
  6477. "dist": {
  6478. "type": "zip",
  6479. "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/4e35806a6d7d8510d6842ae932e8832363d22c87",
  6480. "reference": "4e35806a6d7d8510d6842ae932e8832363d22c87",
  6481. "shasum": "",
  6482. "mirrors": [
  6483. {
  6484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6485. "preferred": true
  6486. }
  6487. ]
  6488. },
  6489. "require": {
  6490. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  6491. "composer/xdebug-handler": "^1.2",
  6492. "doctrine/annotations": "^1.2",
  6493. "ext-json": "*",
  6494. "ext-tokenizer": "*",
  6495. "php": "^7.1",
  6496. "php-cs-fixer/diff": "^1.3",
  6497. "symfony/console": "^3.4.43 || ^4.1.6 || ^5.0",
  6498. "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0",
  6499. "symfony/filesystem": "^3.0 || ^4.0 || ^5.0",
  6500. "symfony/finder": "^3.0 || ^4.0 || ^5.0",
  6501. "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0",
  6502. "symfony/polyfill-php70": "^1.0",
  6503. "symfony/polyfill-php72": "^1.4",
  6504. "symfony/process": "^3.0 || ^4.0 || ^5.0",
  6505. "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0"
  6506. },
  6507. "require-dev": {
  6508. "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
  6509. "justinrainbow/json-schema": "^5.0",
  6510. "keradus/cli-executor": "^1.4",
  6511. "mikey179/vfsstream": "^1.6",
  6512. "php-coveralls/php-coveralls": "^2.4.1",
  6513. "php-cs-fixer/accessible-object": "^1.0",
  6514. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  6515. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  6516. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1",
  6517. "phpunitgoodpractices/traits": "^1.9.1",
  6518. "symfony/phpunit-bridge": "^5.1",
  6519. "symfony/yaml": "^3.0 || ^4.0 || ^5.0"
  6520. },
  6521. "suggest": {
  6522. "ext-dom": "For handling output formats in XML",
  6523. "ext-mbstring": "For handling non-UTF8 characters.",
  6524. "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
  6525. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
  6526. "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
  6527. },
  6528. "bin": [
  6529. "php-cs-fixer"
  6530. ],
  6531. "type": "application",
  6532. "autoload": {
  6533. "psr-4": {
  6534. "PhpCsFixer\\": "src/"
  6535. },
  6536. "classmap": [
  6537. "tests/Test/AbstractFixerTestCase.php",
  6538. "tests/Test/AbstractIntegrationCaseFactory.php",
  6539. "tests/Test/AbstractIntegrationTestCase.php",
  6540. "tests/Test/Assert/AssertTokensTrait.php",
  6541. "tests/Test/IntegrationCase.php",
  6542. "tests/Test/IntegrationCaseFactory.php",
  6543. "tests/Test/IntegrationCaseFactoryInterface.php",
  6544. "tests/Test/InternalIntegrationCaseFactory.php",
  6545. "tests/Test/IsIdenticalConstraint.php",
  6546. "tests/TestCase.php"
  6547. ]
  6548. },
  6549. "notification-url": "https://packagist.org/downloads/",
  6550. "license": [
  6551. "MIT"
  6552. ],
  6553. "authors": [
  6554. {
  6555. "name": "Fabien Potencier",
  6556. "email": "fabien@symfony.com"
  6557. },
  6558. {
  6559. "name": "Dariusz Rumiński",
  6560. "email": "dariusz.ruminski@gmail.com"
  6561. }
  6562. ],
  6563. "description": "A tool to automatically fix PHP code style",
  6564. "support": {
  6565. "issues": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues",
  6566. "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v2.16.7"
  6567. },
  6568. "funding": [
  6569. {
  6570. "url": "https://github.com/keradus",
  6571. "type": "github"
  6572. }
  6573. ],
  6574. "time": "2020-10-27T22:44:27+00:00"
  6575. },
  6576. {
  6577. "name": "hamcrest/hamcrest-php",
  6578. "version": "v2.0.1",
  6579. "source": {
  6580. "type": "git",
  6581. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6582. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  6583. },
  6584. "dist": {
  6585. "type": "zip",
  6586. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6587. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  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. "php": "^5.3|^7.0|^8.0"
  6598. },
  6599. "replace": {
  6600. "cordoval/hamcrest-php": "*",
  6601. "davedevelopment/hamcrest-php": "*",
  6602. "kodova/hamcrest-php": "*"
  6603. },
  6604. "require-dev": {
  6605. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6606. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6607. },
  6608. "type": "library",
  6609. "extra": {
  6610. "branch-alias": {
  6611. "dev-master": "2.1-dev"
  6612. }
  6613. },
  6614. "autoload": {
  6615. "classmap": [
  6616. "hamcrest"
  6617. ]
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "BSD-3-Clause"
  6622. ],
  6623. "description": "This is the PHP port of Hamcrest Matchers",
  6624. "keywords": [
  6625. "test"
  6626. ],
  6627. "support": {
  6628. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  6629. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  6630. },
  6631. "time": "2020-07-09T08:09:16+00:00"
  6632. },
  6633. {
  6634. "name": "hyperf/devtool",
  6635. "version": "v2.0.14",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://github.com/hyperf/devtool.git",
  6639. "reference": "87820770739173c9d3c9368e87dc33d1a7816b44"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://api.github.com/repos/hyperf/devtool/zipball/87820770739173c9d3c9368e87dc33d1a7816b44",
  6644. "reference": "87820770739173c9d3c9368e87dc33d1a7816b44",
  6645. "shasum": "",
  6646. "mirrors": [
  6647. {
  6648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6649. "preferred": true
  6650. }
  6651. ]
  6652. },
  6653. "require": {
  6654. "hyperf/command": "~2.0.0",
  6655. "hyperf/contract": "~2.0.0",
  6656. "hyperf/di": "~2.0.0",
  6657. "hyperf/utils": "~2.0.0",
  6658. "php": ">=7.2"
  6659. },
  6660. "require-dev": {
  6661. "friendsofphp/php-cs-fixer": "^2.9",
  6662. "malukenho/docheader": "^0.1.6",
  6663. "mockery/mockery": "^1.0",
  6664. "phpunit/phpunit": "^7.0.0"
  6665. },
  6666. "type": "library",
  6667. "extra": {
  6668. "branch-alias": {
  6669. "dev-master": "2.0-dev"
  6670. },
  6671. "hyperf": {
  6672. "config": "Hyperf\\Devtool\\ConfigProvider"
  6673. }
  6674. },
  6675. "autoload": {
  6676. "psr-4": {
  6677. "Hyperf\\Devtool\\": "src/"
  6678. }
  6679. },
  6680. "notification-url": "https://packagist.org/downloads/",
  6681. "license": [
  6682. "MIT"
  6683. ],
  6684. "description": "A Devtool for Hyperf.",
  6685. "homepage": "https://hyperf.io",
  6686. "keywords": [
  6687. "devtool",
  6688. "hyperf",
  6689. "php",
  6690. "swoole"
  6691. ],
  6692. "support": {
  6693. "docs": "https://hyperf.wiki",
  6694. "issues": "https://github.com/hyperf/hyperf/issues",
  6695. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  6696. "source": "https://github.com/hyperf/hyperf"
  6697. },
  6698. "time": "2020-10-05T00:31:32+00:00"
  6699. },
  6700. {
  6701. "name": "hyperf/testing",
  6702. "version": "v2.0.14",
  6703. "source": {
  6704. "type": "git",
  6705. "url": "https://github.com/hyperf/testing.git",
  6706. "reference": "3dca89a86f65e2b2e997c6ee55df6439cfcc72e5"
  6707. },
  6708. "dist": {
  6709. "type": "zip",
  6710. "url": "https://api.github.com/repos/hyperf/testing/zipball/3dca89a86f65e2b2e997c6ee55df6439cfcc72e5",
  6711. "reference": "3dca89a86f65e2b2e997c6ee55df6439cfcc72e5",
  6712. "shasum": "",
  6713. "mirrors": [
  6714. {
  6715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6716. "preferred": true
  6717. }
  6718. ]
  6719. },
  6720. "require": {
  6721. "hyperf/contract": "~2.0.0",
  6722. "hyperf/http-message": "~2.0.0",
  6723. "hyperf/http-server": "~2.0.0",
  6724. "hyperf/utils": "~2.0.0",
  6725. "php": ">=7.2",
  6726. "phpunit/phpunit": "^7.0",
  6727. "psr/container": "^1.0"
  6728. },
  6729. "require-dev": {
  6730. "friendsofphp/php-cs-fixer": "^2.9",
  6731. "malukenho/docheader": "^0.1.6",
  6732. "mockery/mockery": "^1.0"
  6733. },
  6734. "bin": [
  6735. "co-phpunit"
  6736. ],
  6737. "type": "library",
  6738. "extra": {
  6739. "branch-alias": {
  6740. "dev-master": "2.0-dev"
  6741. }
  6742. },
  6743. "autoload": {
  6744. "psr-4": {
  6745. "Hyperf\\Testing\\": "src/"
  6746. }
  6747. },
  6748. "notification-url": "https://packagist.org/downloads/",
  6749. "license": [
  6750. "MIT"
  6751. ],
  6752. "description": "Testing for hyperf",
  6753. "keywords": [
  6754. "php",
  6755. "swoole",
  6756. "testing"
  6757. ],
  6758. "support": {
  6759. "source": "https://github.com/hyperf/testing/tree/v2.0.14"
  6760. },
  6761. "time": "2020-10-10T09:22:32+00:00"
  6762. },
  6763. {
  6764. "name": "mockery/mockery",
  6765. "version": "1.3.3",
  6766. "source": {
  6767. "type": "git",
  6768. "url": "https://github.com/mockery/mockery.git",
  6769. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d"
  6770. },
  6771. "dist": {
  6772. "type": "zip",
  6773. "url": "https://api.github.com/repos/mockery/mockery/zipball/60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  6774. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  6775. "shasum": "",
  6776. "mirrors": [
  6777. {
  6778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6779. "preferred": true
  6780. }
  6781. ]
  6782. },
  6783. "require": {
  6784. "hamcrest/hamcrest-php": "^2.0.1",
  6785. "lib-pcre": ">=7.0",
  6786. "php": ">=5.6.0"
  6787. },
  6788. "require-dev": {
  6789. "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
  6790. },
  6791. "type": "library",
  6792. "extra": {
  6793. "branch-alias": {
  6794. "dev-master": "1.3.x-dev"
  6795. }
  6796. },
  6797. "autoload": {
  6798. "psr-0": {
  6799. "Mockery": "library/"
  6800. }
  6801. },
  6802. "notification-url": "https://packagist.org/downloads/",
  6803. "license": [
  6804. "BSD-3-Clause"
  6805. ],
  6806. "authors": [
  6807. {
  6808. "name": "Pádraic Brady",
  6809. "email": "padraic.brady@gmail.com",
  6810. "homepage": "http://blog.astrumfutura.com"
  6811. },
  6812. {
  6813. "name": "Dave Marshall",
  6814. "email": "dave.marshall@atstsolutions.co.uk",
  6815. "homepage": "http://davedevelopment.co.uk"
  6816. }
  6817. ],
  6818. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6819. "homepage": "https://github.com/mockery/mockery",
  6820. "keywords": [
  6821. "BDD",
  6822. "TDD",
  6823. "library",
  6824. "mock",
  6825. "mock objects",
  6826. "mockery",
  6827. "stub",
  6828. "test",
  6829. "test double",
  6830. "testing"
  6831. ],
  6832. "support": {
  6833. "issues": "https://github.com/mockery/mockery/issues",
  6834. "source": "https://github.com/mockery/mockery/tree/1.3.3"
  6835. },
  6836. "time": "2020-08-11T18:10:21+00:00"
  6837. },
  6838. {
  6839. "name": "myclabs/deep-copy",
  6840. "version": "1.10.1",
  6841. "source": {
  6842. "type": "git",
  6843. "url": "https://github.com/myclabs/DeepCopy.git",
  6844. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  6845. },
  6846. "dist": {
  6847. "type": "zip",
  6848. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  6849. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  6850. "shasum": "",
  6851. "mirrors": [
  6852. {
  6853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6854. "preferred": true
  6855. }
  6856. ]
  6857. },
  6858. "require": {
  6859. "php": "^7.1 || ^8.0"
  6860. },
  6861. "replace": {
  6862. "myclabs/deep-copy": "self.version"
  6863. },
  6864. "require-dev": {
  6865. "doctrine/collections": "^1.0",
  6866. "doctrine/common": "^2.6",
  6867. "phpunit/phpunit": "^7.1"
  6868. },
  6869. "type": "library",
  6870. "autoload": {
  6871. "psr-4": {
  6872. "DeepCopy\\": "src/DeepCopy/"
  6873. },
  6874. "files": [
  6875. "src/DeepCopy/deep_copy.php"
  6876. ]
  6877. },
  6878. "notification-url": "https://packagist.org/downloads/",
  6879. "license": [
  6880. "MIT"
  6881. ],
  6882. "description": "Create deep copies (clones) of your objects",
  6883. "keywords": [
  6884. "clone",
  6885. "copy",
  6886. "duplicate",
  6887. "object",
  6888. "object graph"
  6889. ],
  6890. "support": {
  6891. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6892. "source": "https://github.com/myclabs/DeepCopy/tree/1.x"
  6893. },
  6894. "funding": [
  6895. {
  6896. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6897. "type": "tidelift"
  6898. }
  6899. ],
  6900. "time": "2020-06-29T13:22:24+00:00"
  6901. },
  6902. {
  6903. "name": "phar-io/manifest",
  6904. "version": "1.0.3",
  6905. "source": {
  6906. "type": "git",
  6907. "url": "https://github.com/phar-io/manifest.git",
  6908. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  6909. },
  6910. "dist": {
  6911. "type": "zip",
  6912. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6913. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6914. "shasum": "",
  6915. "mirrors": [
  6916. {
  6917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6918. "preferred": true
  6919. }
  6920. ]
  6921. },
  6922. "require": {
  6923. "ext-dom": "*",
  6924. "ext-phar": "*",
  6925. "phar-io/version": "^2.0",
  6926. "php": "^5.6 || ^7.0"
  6927. },
  6928. "type": "library",
  6929. "extra": {
  6930. "branch-alias": {
  6931. "dev-master": "1.0.x-dev"
  6932. }
  6933. },
  6934. "autoload": {
  6935. "classmap": [
  6936. "src/"
  6937. ]
  6938. },
  6939. "notification-url": "https://packagist.org/downloads/",
  6940. "license": [
  6941. "BSD-3-Clause"
  6942. ],
  6943. "authors": [
  6944. {
  6945. "name": "Arne Blankerts",
  6946. "email": "arne@blankerts.de",
  6947. "role": "Developer"
  6948. },
  6949. {
  6950. "name": "Sebastian Heuer",
  6951. "email": "sebastian@phpeople.de",
  6952. "role": "Developer"
  6953. },
  6954. {
  6955. "name": "Sebastian Bergmann",
  6956. "email": "sebastian@phpunit.de",
  6957. "role": "Developer"
  6958. }
  6959. ],
  6960. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6961. "support": {
  6962. "issues": "https://github.com/phar-io/manifest/issues",
  6963. "source": "https://github.com/phar-io/manifest/tree/master"
  6964. },
  6965. "time": "2018-07-08T19:23:20+00:00"
  6966. },
  6967. {
  6968. "name": "phar-io/version",
  6969. "version": "2.0.1",
  6970. "source": {
  6971. "type": "git",
  6972. "url": "https://github.com/phar-io/version.git",
  6973. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  6974. },
  6975. "dist": {
  6976. "type": "zip",
  6977. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6978. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6979. "shasum": "",
  6980. "mirrors": [
  6981. {
  6982. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6983. "preferred": true
  6984. }
  6985. ]
  6986. },
  6987. "require": {
  6988. "php": "^5.6 || ^7.0"
  6989. },
  6990. "type": "library",
  6991. "autoload": {
  6992. "classmap": [
  6993. "src/"
  6994. ]
  6995. },
  6996. "notification-url": "https://packagist.org/downloads/",
  6997. "license": [
  6998. "BSD-3-Clause"
  6999. ],
  7000. "authors": [
  7001. {
  7002. "name": "Arne Blankerts",
  7003. "email": "arne@blankerts.de",
  7004. "role": "Developer"
  7005. },
  7006. {
  7007. "name": "Sebastian Heuer",
  7008. "email": "sebastian@phpeople.de",
  7009. "role": "Developer"
  7010. },
  7011. {
  7012. "name": "Sebastian Bergmann",
  7013. "email": "sebastian@phpunit.de",
  7014. "role": "Developer"
  7015. }
  7016. ],
  7017. "description": "Library for handling version information and constraints",
  7018. "support": {
  7019. "issues": "https://github.com/phar-io/version/issues",
  7020. "source": "https://github.com/phar-io/version/tree/master"
  7021. },
  7022. "time": "2018-07-08T19:19:57+00:00"
  7023. },
  7024. {
  7025. "name": "php-cs-fixer/diff",
  7026. "version": "v1.3.1",
  7027. "source": {
  7028. "type": "git",
  7029. "url": "https://github.com/PHP-CS-Fixer/diff.git",
  7030. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759"
  7031. },
  7032. "dist": {
  7033. "type": "zip",
  7034. "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/dbd31aeb251639ac0b9e7e29405c1441907f5759",
  7035. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759",
  7036. "shasum": "",
  7037. "mirrors": [
  7038. {
  7039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7040. "preferred": true
  7041. }
  7042. ]
  7043. },
  7044. "require": {
  7045. "php": "^5.6 || ^7.0 || ^8.0"
  7046. },
  7047. "require-dev": {
  7048. "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0",
  7049. "symfony/process": "^3.3"
  7050. },
  7051. "type": "library",
  7052. "autoload": {
  7053. "classmap": [
  7054. "src/"
  7055. ]
  7056. },
  7057. "notification-url": "https://packagist.org/downloads/",
  7058. "license": [
  7059. "BSD-3-Clause"
  7060. ],
  7061. "authors": [
  7062. {
  7063. "name": "Sebastian Bergmann",
  7064. "email": "sebastian@phpunit.de"
  7065. },
  7066. {
  7067. "name": "Kore Nordmann",
  7068. "email": "mail@kore-nordmann.de"
  7069. },
  7070. {
  7071. "name": "SpacePossum"
  7072. }
  7073. ],
  7074. "description": "sebastian/diff v2 backport support for PHP5.6",
  7075. "homepage": "https://github.com/PHP-CS-Fixer",
  7076. "keywords": [
  7077. "diff"
  7078. ],
  7079. "support": {
  7080. "issues": "https://github.com/PHP-CS-Fixer/diff/issues",
  7081. "source": "https://github.com/PHP-CS-Fixer/diff/tree/v1.3.1"
  7082. },
  7083. "time": "2020-10-14T08:39:05+00:00"
  7084. },
  7085. {
  7086. "name": "phpspec/prophecy",
  7087. "version": "1.12.1",
  7088. "source": {
  7089. "type": "git",
  7090. "url": "https://github.com/phpspec/prophecy.git",
  7091. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  7092. },
  7093. "dist": {
  7094. "type": "zip",
  7095. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  7096. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  7097. "shasum": "",
  7098. "mirrors": [
  7099. {
  7100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7101. "preferred": true
  7102. }
  7103. ]
  7104. },
  7105. "require": {
  7106. "doctrine/instantiator": "^1.2",
  7107. "php": "^7.2 || ~8.0, <8.1",
  7108. "phpdocumentor/reflection-docblock": "^5.2",
  7109. "sebastian/comparator": "^3.0 || ^4.0",
  7110. "sebastian/recursion-context": "^3.0 || ^4.0"
  7111. },
  7112. "require-dev": {
  7113. "phpspec/phpspec": "^6.0",
  7114. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  7115. },
  7116. "type": "library",
  7117. "extra": {
  7118. "branch-alias": {
  7119. "dev-master": "1.11.x-dev"
  7120. }
  7121. },
  7122. "autoload": {
  7123. "psr-4": {
  7124. "Prophecy\\": "src/Prophecy"
  7125. }
  7126. },
  7127. "notification-url": "https://packagist.org/downloads/",
  7128. "license": [
  7129. "MIT"
  7130. ],
  7131. "authors": [
  7132. {
  7133. "name": "Konstantin Kudryashov",
  7134. "email": "ever.zet@gmail.com",
  7135. "homepage": "http://everzet.com"
  7136. },
  7137. {
  7138. "name": "Marcello Duarte",
  7139. "email": "marcello.duarte@gmail.com"
  7140. }
  7141. ],
  7142. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7143. "homepage": "https://github.com/phpspec/prophecy",
  7144. "keywords": [
  7145. "Double",
  7146. "Dummy",
  7147. "fake",
  7148. "mock",
  7149. "spy",
  7150. "stub"
  7151. ],
  7152. "support": {
  7153. "issues": "https://github.com/phpspec/prophecy/issues",
  7154. "source": "https://github.com/phpspec/prophecy/tree/1.12.1"
  7155. },
  7156. "time": "2020-09-29T09:10:42+00:00"
  7157. },
  7158. {
  7159. "name": "phpstan/phpstan",
  7160. "version": "0.12.54",
  7161. "source": {
  7162. "type": "git",
  7163. "url": "https://github.com/phpstan/phpstan.git",
  7164. "reference": "45c7b999a4b7dd9ac5558bdaaf23dcebbef88223"
  7165. },
  7166. "dist": {
  7167. "type": "zip",
  7168. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/45c7b999a4b7dd9ac5558bdaaf23dcebbef88223",
  7169. "reference": "45c7b999a4b7dd9ac5558bdaaf23dcebbef88223",
  7170. "shasum": "",
  7171. "mirrors": [
  7172. {
  7173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7174. "preferred": true
  7175. }
  7176. ]
  7177. },
  7178. "require": {
  7179. "php": "^7.1|^8.0"
  7180. },
  7181. "conflict": {
  7182. "phpstan/phpstan-shim": "*"
  7183. },
  7184. "bin": [
  7185. "phpstan",
  7186. "phpstan.phar"
  7187. ],
  7188. "type": "library",
  7189. "extra": {
  7190. "branch-alias": {
  7191. "dev-master": "0.12-dev"
  7192. }
  7193. },
  7194. "autoload": {
  7195. "files": [
  7196. "bootstrap.php"
  7197. ]
  7198. },
  7199. "notification-url": "https://packagist.org/downloads/",
  7200. "license": [
  7201. "MIT"
  7202. ],
  7203. "description": "PHPStan - PHP Static Analysis Tool",
  7204. "support": {
  7205. "issues": "https://github.com/phpstan/phpstan/issues",
  7206. "source": "https://github.com/phpstan/phpstan/tree/0.12.54"
  7207. },
  7208. "funding": [
  7209. {
  7210. "url": "https://github.com/ondrejmirtes",
  7211. "type": "github"
  7212. },
  7213. {
  7214. "url": "https://www.patreon.com/phpstan",
  7215. "type": "patreon"
  7216. },
  7217. {
  7218. "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
  7219. "type": "tidelift"
  7220. }
  7221. ],
  7222. "time": "2020-11-05T13:36:26+00:00"
  7223. },
  7224. {
  7225. "name": "phpunit/php-code-coverage",
  7226. "version": "6.1.4",
  7227. "source": {
  7228. "type": "git",
  7229. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7230. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  7231. },
  7232. "dist": {
  7233. "type": "zip",
  7234. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  7235. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  7236. "shasum": "",
  7237. "mirrors": [
  7238. {
  7239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7240. "preferred": true
  7241. }
  7242. ]
  7243. },
  7244. "require": {
  7245. "ext-dom": "*",
  7246. "ext-xmlwriter": "*",
  7247. "php": "^7.1",
  7248. "phpunit/php-file-iterator": "^2.0",
  7249. "phpunit/php-text-template": "^1.2.1",
  7250. "phpunit/php-token-stream": "^3.0",
  7251. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7252. "sebastian/environment": "^3.1 || ^4.0",
  7253. "sebastian/version": "^2.0.1",
  7254. "theseer/tokenizer": "^1.1"
  7255. },
  7256. "require-dev": {
  7257. "phpunit/phpunit": "^7.0"
  7258. },
  7259. "suggest": {
  7260. "ext-xdebug": "^2.6.0"
  7261. },
  7262. "type": "library",
  7263. "extra": {
  7264. "branch-alias": {
  7265. "dev-master": "6.1-dev"
  7266. }
  7267. },
  7268. "autoload": {
  7269. "classmap": [
  7270. "src/"
  7271. ]
  7272. },
  7273. "notification-url": "https://packagist.org/downloads/",
  7274. "license": [
  7275. "BSD-3-Clause"
  7276. ],
  7277. "authors": [
  7278. {
  7279. "name": "Sebastian Bergmann",
  7280. "email": "sebastian@phpunit.de",
  7281. "role": "lead"
  7282. }
  7283. ],
  7284. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7285. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7286. "keywords": [
  7287. "coverage",
  7288. "testing",
  7289. "xunit"
  7290. ],
  7291. "support": {
  7292. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7293. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/master"
  7294. },
  7295. "time": "2018-10-31T16:06:48+00:00"
  7296. },
  7297. {
  7298. "name": "phpunit/php-file-iterator",
  7299. "version": "2.0.2",
  7300. "source": {
  7301. "type": "git",
  7302. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7303. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  7304. },
  7305. "dist": {
  7306. "type": "zip",
  7307. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  7308. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  7309. "shasum": "",
  7310. "mirrors": [
  7311. {
  7312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7313. "preferred": true
  7314. }
  7315. ]
  7316. },
  7317. "require": {
  7318. "php": "^7.1"
  7319. },
  7320. "require-dev": {
  7321. "phpunit/phpunit": "^7.1"
  7322. },
  7323. "type": "library",
  7324. "extra": {
  7325. "branch-alias": {
  7326. "dev-master": "2.0.x-dev"
  7327. }
  7328. },
  7329. "autoload": {
  7330. "classmap": [
  7331. "src/"
  7332. ]
  7333. },
  7334. "notification-url": "https://packagist.org/downloads/",
  7335. "license": [
  7336. "BSD-3-Clause"
  7337. ],
  7338. "authors": [
  7339. {
  7340. "name": "Sebastian Bergmann",
  7341. "email": "sebastian@phpunit.de",
  7342. "role": "lead"
  7343. }
  7344. ],
  7345. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7346. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7347. "keywords": [
  7348. "filesystem",
  7349. "iterator"
  7350. ],
  7351. "support": {
  7352. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7353. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.2"
  7354. },
  7355. "time": "2018-09-13T20:33:42+00:00"
  7356. },
  7357. {
  7358. "name": "phpunit/php-text-template",
  7359. "version": "1.2.1",
  7360. "source": {
  7361. "type": "git",
  7362. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7363. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7364. },
  7365. "dist": {
  7366. "type": "zip",
  7367. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7368. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7369. "shasum": "",
  7370. "mirrors": [
  7371. {
  7372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7373. "preferred": true
  7374. }
  7375. ]
  7376. },
  7377. "require": {
  7378. "php": ">=5.3.3"
  7379. },
  7380. "type": "library",
  7381. "autoload": {
  7382. "classmap": [
  7383. "src/"
  7384. ]
  7385. },
  7386. "notification-url": "https://packagist.org/downloads/",
  7387. "license": [
  7388. "BSD-3-Clause"
  7389. ],
  7390. "authors": [
  7391. {
  7392. "name": "Sebastian Bergmann",
  7393. "email": "sebastian@phpunit.de",
  7394. "role": "lead"
  7395. }
  7396. ],
  7397. "description": "Simple template engine.",
  7398. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7399. "keywords": [
  7400. "template"
  7401. ],
  7402. "support": {
  7403. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7404. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  7405. },
  7406. "time": "2015-06-21T13:50:34+00:00"
  7407. },
  7408. {
  7409. "name": "phpunit/php-timer",
  7410. "version": "2.1.2",
  7411. "source": {
  7412. "type": "git",
  7413. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7414. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  7415. },
  7416. "dist": {
  7417. "type": "zip",
  7418. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  7419. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  7420. "shasum": "",
  7421. "mirrors": [
  7422. {
  7423. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7424. "preferred": true
  7425. }
  7426. ]
  7427. },
  7428. "require": {
  7429. "php": "^7.1"
  7430. },
  7431. "require-dev": {
  7432. "phpunit/phpunit": "^7.0"
  7433. },
  7434. "type": "library",
  7435. "extra": {
  7436. "branch-alias": {
  7437. "dev-master": "2.1-dev"
  7438. }
  7439. },
  7440. "autoload": {
  7441. "classmap": [
  7442. "src/"
  7443. ]
  7444. },
  7445. "notification-url": "https://packagist.org/downloads/",
  7446. "license": [
  7447. "BSD-3-Clause"
  7448. ],
  7449. "authors": [
  7450. {
  7451. "name": "Sebastian Bergmann",
  7452. "email": "sebastian@phpunit.de",
  7453. "role": "lead"
  7454. }
  7455. ],
  7456. "description": "Utility class for timing",
  7457. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7458. "keywords": [
  7459. "timer"
  7460. ],
  7461. "support": {
  7462. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7463. "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
  7464. },
  7465. "time": "2019-06-07T04:22:29+00:00"
  7466. },
  7467. {
  7468. "name": "phpunit/php-token-stream",
  7469. "version": "3.1.1",
  7470. "source": {
  7471. "type": "git",
  7472. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7473. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  7474. },
  7475. "dist": {
  7476. "type": "zip",
  7477. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  7478. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  7479. "shasum": "",
  7480. "mirrors": [
  7481. {
  7482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7483. "preferred": true
  7484. }
  7485. ]
  7486. },
  7487. "require": {
  7488. "ext-tokenizer": "*",
  7489. "php": "^7.1"
  7490. },
  7491. "require-dev": {
  7492. "phpunit/phpunit": "^7.0"
  7493. },
  7494. "type": "library",
  7495. "extra": {
  7496. "branch-alias": {
  7497. "dev-master": "3.1-dev"
  7498. }
  7499. },
  7500. "autoload": {
  7501. "classmap": [
  7502. "src/"
  7503. ]
  7504. },
  7505. "notification-url": "https://packagist.org/downloads/",
  7506. "license": [
  7507. "BSD-3-Clause"
  7508. ],
  7509. "authors": [
  7510. {
  7511. "name": "Sebastian Bergmann",
  7512. "email": "sebastian@phpunit.de"
  7513. }
  7514. ],
  7515. "description": "Wrapper around PHP's tokenizer extension.",
  7516. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7517. "keywords": [
  7518. "tokenizer"
  7519. ],
  7520. "support": {
  7521. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  7522. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.1"
  7523. },
  7524. "abandoned": true,
  7525. "time": "2019-09-17T06:23:10+00:00"
  7526. },
  7527. {
  7528. "name": "phpunit/phpunit",
  7529. "version": "7.5.20",
  7530. "source": {
  7531. "type": "git",
  7532. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7533. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  7534. },
  7535. "dist": {
  7536. "type": "zip",
  7537. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  7538. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  7539. "shasum": "",
  7540. "mirrors": [
  7541. {
  7542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7543. "preferred": true
  7544. }
  7545. ]
  7546. },
  7547. "require": {
  7548. "doctrine/instantiator": "^1.1",
  7549. "ext-dom": "*",
  7550. "ext-json": "*",
  7551. "ext-libxml": "*",
  7552. "ext-mbstring": "*",
  7553. "ext-xml": "*",
  7554. "myclabs/deep-copy": "^1.7",
  7555. "phar-io/manifest": "^1.0.2",
  7556. "phar-io/version": "^2.0",
  7557. "php": "^7.1",
  7558. "phpspec/prophecy": "^1.7",
  7559. "phpunit/php-code-coverage": "^6.0.7",
  7560. "phpunit/php-file-iterator": "^2.0.1",
  7561. "phpunit/php-text-template": "^1.2.1",
  7562. "phpunit/php-timer": "^2.1",
  7563. "sebastian/comparator": "^3.0",
  7564. "sebastian/diff": "^3.0",
  7565. "sebastian/environment": "^4.0",
  7566. "sebastian/exporter": "^3.1",
  7567. "sebastian/global-state": "^2.0",
  7568. "sebastian/object-enumerator": "^3.0.3",
  7569. "sebastian/resource-operations": "^2.0",
  7570. "sebastian/version": "^2.0.1"
  7571. },
  7572. "conflict": {
  7573. "phpunit/phpunit-mock-objects": "*"
  7574. },
  7575. "require-dev": {
  7576. "ext-pdo": "*"
  7577. },
  7578. "suggest": {
  7579. "ext-soap": "*",
  7580. "ext-xdebug": "*",
  7581. "phpunit/php-invoker": "^2.0"
  7582. },
  7583. "bin": [
  7584. "phpunit"
  7585. ],
  7586. "type": "library",
  7587. "extra": {
  7588. "branch-alias": {
  7589. "dev-master": "7.5-dev"
  7590. }
  7591. },
  7592. "autoload": {
  7593. "classmap": [
  7594. "src/"
  7595. ]
  7596. },
  7597. "notification-url": "https://packagist.org/downloads/",
  7598. "license": [
  7599. "BSD-3-Clause"
  7600. ],
  7601. "authors": [
  7602. {
  7603. "name": "Sebastian Bergmann",
  7604. "email": "sebastian@phpunit.de",
  7605. "role": "lead"
  7606. }
  7607. ],
  7608. "description": "The PHP Unit Testing framework.",
  7609. "homepage": "https://phpunit.de/",
  7610. "keywords": [
  7611. "phpunit",
  7612. "testing",
  7613. "xunit"
  7614. ],
  7615. "support": {
  7616. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7617. "source": "https://github.com/sebastianbergmann/phpunit/tree/7.5.20"
  7618. },
  7619. "time": "2020-01-08T08:45:45+00:00"
  7620. },
  7621. {
  7622. "name": "sebastian/code-unit-reverse-lookup",
  7623. "version": "1.0.1",
  7624. "source": {
  7625. "type": "git",
  7626. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7627. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  7628. },
  7629. "dist": {
  7630. "type": "zip",
  7631. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7632. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7633. "shasum": "",
  7634. "mirrors": [
  7635. {
  7636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7637. "preferred": true
  7638. }
  7639. ]
  7640. },
  7641. "require": {
  7642. "php": "^5.6 || ^7.0"
  7643. },
  7644. "require-dev": {
  7645. "phpunit/phpunit": "^5.7 || ^6.0"
  7646. },
  7647. "type": "library",
  7648. "extra": {
  7649. "branch-alias": {
  7650. "dev-master": "1.0.x-dev"
  7651. }
  7652. },
  7653. "autoload": {
  7654. "classmap": [
  7655. "src/"
  7656. ]
  7657. },
  7658. "notification-url": "https://packagist.org/downloads/",
  7659. "license": [
  7660. "BSD-3-Clause"
  7661. ],
  7662. "authors": [
  7663. {
  7664. "name": "Sebastian Bergmann",
  7665. "email": "sebastian@phpunit.de"
  7666. }
  7667. ],
  7668. "description": "Looks up which function or method a line of code belongs to",
  7669. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7670. "support": {
  7671. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7672. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/master"
  7673. },
  7674. "time": "2017-03-04T06:30:41+00:00"
  7675. },
  7676. {
  7677. "name": "sebastian/comparator",
  7678. "version": "3.0.2",
  7679. "source": {
  7680. "type": "git",
  7681. "url": "https://github.com/sebastianbergmann/comparator.git",
  7682. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  7683. },
  7684. "dist": {
  7685. "type": "zip",
  7686. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7687. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7688. "shasum": "",
  7689. "mirrors": [
  7690. {
  7691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7692. "preferred": true
  7693. }
  7694. ]
  7695. },
  7696. "require": {
  7697. "php": "^7.1",
  7698. "sebastian/diff": "^3.0",
  7699. "sebastian/exporter": "^3.1"
  7700. },
  7701. "require-dev": {
  7702. "phpunit/phpunit": "^7.1"
  7703. },
  7704. "type": "library",
  7705. "extra": {
  7706. "branch-alias": {
  7707. "dev-master": "3.0-dev"
  7708. }
  7709. },
  7710. "autoload": {
  7711. "classmap": [
  7712. "src/"
  7713. ]
  7714. },
  7715. "notification-url": "https://packagist.org/downloads/",
  7716. "license": [
  7717. "BSD-3-Clause"
  7718. ],
  7719. "authors": [
  7720. {
  7721. "name": "Jeff Welch",
  7722. "email": "whatthejeff@gmail.com"
  7723. },
  7724. {
  7725. "name": "Volker Dusch",
  7726. "email": "github@wallbash.com"
  7727. },
  7728. {
  7729. "name": "Bernhard Schussek",
  7730. "email": "bschussek@2bepublished.at"
  7731. },
  7732. {
  7733. "name": "Sebastian Bergmann",
  7734. "email": "sebastian@phpunit.de"
  7735. }
  7736. ],
  7737. "description": "Provides the functionality to compare PHP values for equality",
  7738. "homepage": "https://github.com/sebastianbergmann/comparator",
  7739. "keywords": [
  7740. "comparator",
  7741. "compare",
  7742. "equality"
  7743. ],
  7744. "support": {
  7745. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7746. "source": "https://github.com/sebastianbergmann/comparator/tree/master"
  7747. },
  7748. "time": "2018-07-12T15:12:46+00:00"
  7749. },
  7750. {
  7751. "name": "sebastian/diff",
  7752. "version": "3.0.2",
  7753. "source": {
  7754. "type": "git",
  7755. "url": "https://github.com/sebastianbergmann/diff.git",
  7756. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  7757. },
  7758. "dist": {
  7759. "type": "zip",
  7760. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7761. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7762. "shasum": "",
  7763. "mirrors": [
  7764. {
  7765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7766. "preferred": true
  7767. }
  7768. ]
  7769. },
  7770. "require": {
  7771. "php": "^7.1"
  7772. },
  7773. "require-dev": {
  7774. "phpunit/phpunit": "^7.5 || ^8.0",
  7775. "symfony/process": "^2 || ^3.3 || ^4"
  7776. },
  7777. "type": "library",
  7778. "extra": {
  7779. "branch-alias": {
  7780. "dev-master": "3.0-dev"
  7781. }
  7782. },
  7783. "autoload": {
  7784. "classmap": [
  7785. "src/"
  7786. ]
  7787. },
  7788. "notification-url": "https://packagist.org/downloads/",
  7789. "license": [
  7790. "BSD-3-Clause"
  7791. ],
  7792. "authors": [
  7793. {
  7794. "name": "Kore Nordmann",
  7795. "email": "mail@kore-nordmann.de"
  7796. },
  7797. {
  7798. "name": "Sebastian Bergmann",
  7799. "email": "sebastian@phpunit.de"
  7800. }
  7801. ],
  7802. "description": "Diff implementation",
  7803. "homepage": "https://github.com/sebastianbergmann/diff",
  7804. "keywords": [
  7805. "diff",
  7806. "udiff",
  7807. "unidiff",
  7808. "unified diff"
  7809. ],
  7810. "support": {
  7811. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7812. "source": "https://github.com/sebastianbergmann/diff/tree/master"
  7813. },
  7814. "time": "2019-02-04T06:01:07+00:00"
  7815. },
  7816. {
  7817. "name": "sebastian/environment",
  7818. "version": "4.2.3",
  7819. "source": {
  7820. "type": "git",
  7821. "url": "https://github.com/sebastianbergmann/environment.git",
  7822. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  7823. },
  7824. "dist": {
  7825. "type": "zip",
  7826. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  7827. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  7828. "shasum": "",
  7829. "mirrors": [
  7830. {
  7831. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7832. "preferred": true
  7833. }
  7834. ]
  7835. },
  7836. "require": {
  7837. "php": "^7.1"
  7838. },
  7839. "require-dev": {
  7840. "phpunit/phpunit": "^7.5"
  7841. },
  7842. "suggest": {
  7843. "ext-posix": "*"
  7844. },
  7845. "type": "library",
  7846. "extra": {
  7847. "branch-alias": {
  7848. "dev-master": "4.2-dev"
  7849. }
  7850. },
  7851. "autoload": {
  7852. "classmap": [
  7853. "src/"
  7854. ]
  7855. },
  7856. "notification-url": "https://packagist.org/downloads/",
  7857. "license": [
  7858. "BSD-3-Clause"
  7859. ],
  7860. "authors": [
  7861. {
  7862. "name": "Sebastian Bergmann",
  7863. "email": "sebastian@phpunit.de"
  7864. }
  7865. ],
  7866. "description": "Provides functionality to handle HHVM/PHP environments",
  7867. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7868. "keywords": [
  7869. "Xdebug",
  7870. "environment",
  7871. "hhvm"
  7872. ],
  7873. "support": {
  7874. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7875. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.3"
  7876. },
  7877. "time": "2019-11-20T08:46:58+00:00"
  7878. },
  7879. {
  7880. "name": "sebastian/exporter",
  7881. "version": "3.1.2",
  7882. "source": {
  7883. "type": "git",
  7884. "url": "https://github.com/sebastianbergmann/exporter.git",
  7885. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  7886. },
  7887. "dist": {
  7888. "type": "zip",
  7889. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  7890. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  7891. "shasum": "",
  7892. "mirrors": [
  7893. {
  7894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7895. "preferred": true
  7896. }
  7897. ]
  7898. },
  7899. "require": {
  7900. "php": "^7.0",
  7901. "sebastian/recursion-context": "^3.0"
  7902. },
  7903. "require-dev": {
  7904. "ext-mbstring": "*",
  7905. "phpunit/phpunit": "^6.0"
  7906. },
  7907. "type": "library",
  7908. "extra": {
  7909. "branch-alias": {
  7910. "dev-master": "3.1.x-dev"
  7911. }
  7912. },
  7913. "autoload": {
  7914. "classmap": [
  7915. "src/"
  7916. ]
  7917. },
  7918. "notification-url": "https://packagist.org/downloads/",
  7919. "license": [
  7920. "BSD-3-Clause"
  7921. ],
  7922. "authors": [
  7923. {
  7924. "name": "Sebastian Bergmann",
  7925. "email": "sebastian@phpunit.de"
  7926. },
  7927. {
  7928. "name": "Jeff Welch",
  7929. "email": "whatthejeff@gmail.com"
  7930. },
  7931. {
  7932. "name": "Volker Dusch",
  7933. "email": "github@wallbash.com"
  7934. },
  7935. {
  7936. "name": "Adam Harvey",
  7937. "email": "aharvey@php.net"
  7938. },
  7939. {
  7940. "name": "Bernhard Schussek",
  7941. "email": "bschussek@gmail.com"
  7942. }
  7943. ],
  7944. "description": "Provides the functionality to export PHP variables for visualization",
  7945. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7946. "keywords": [
  7947. "export",
  7948. "exporter"
  7949. ],
  7950. "support": {
  7951. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7952. "source": "https://github.com/sebastianbergmann/exporter/tree/master"
  7953. },
  7954. "time": "2019-09-14T09:02:43+00:00"
  7955. },
  7956. {
  7957. "name": "sebastian/global-state",
  7958. "version": "2.0.0",
  7959. "source": {
  7960. "type": "git",
  7961. "url": "https://github.com/sebastianbergmann/global-state.git",
  7962. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  7963. },
  7964. "dist": {
  7965. "type": "zip",
  7966. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7967. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7968. "shasum": "",
  7969. "mirrors": [
  7970. {
  7971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7972. "preferred": true
  7973. }
  7974. ]
  7975. },
  7976. "require": {
  7977. "php": "^7.0"
  7978. },
  7979. "require-dev": {
  7980. "phpunit/phpunit": "^6.0"
  7981. },
  7982. "suggest": {
  7983. "ext-uopz": "*"
  7984. },
  7985. "type": "library",
  7986. "extra": {
  7987. "branch-alias": {
  7988. "dev-master": "2.0-dev"
  7989. }
  7990. },
  7991. "autoload": {
  7992. "classmap": [
  7993. "src/"
  7994. ]
  7995. },
  7996. "notification-url": "https://packagist.org/downloads/",
  7997. "license": [
  7998. "BSD-3-Clause"
  7999. ],
  8000. "authors": [
  8001. {
  8002. "name": "Sebastian Bergmann",
  8003. "email": "sebastian@phpunit.de"
  8004. }
  8005. ],
  8006. "description": "Snapshotting of global state",
  8007. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8008. "keywords": [
  8009. "global state"
  8010. ],
  8011. "support": {
  8012. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8013. "source": "https://github.com/sebastianbergmann/global-state/tree/2.0.0"
  8014. },
  8015. "time": "2017-04-27T15:39:26+00:00"
  8016. },
  8017. {
  8018. "name": "sebastian/object-enumerator",
  8019. "version": "3.0.3",
  8020. "source": {
  8021. "type": "git",
  8022. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8023. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8024. },
  8025. "dist": {
  8026. "type": "zip",
  8027. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8028. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8029. "shasum": "",
  8030. "mirrors": [
  8031. {
  8032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8033. "preferred": true
  8034. }
  8035. ]
  8036. },
  8037. "require": {
  8038. "php": "^7.0",
  8039. "sebastian/object-reflector": "^1.1.1",
  8040. "sebastian/recursion-context": "^3.0"
  8041. },
  8042. "require-dev": {
  8043. "phpunit/phpunit": "^6.0"
  8044. },
  8045. "type": "library",
  8046. "extra": {
  8047. "branch-alias": {
  8048. "dev-master": "3.0.x-dev"
  8049. }
  8050. },
  8051. "autoload": {
  8052. "classmap": [
  8053. "src/"
  8054. ]
  8055. },
  8056. "notification-url": "https://packagist.org/downloads/",
  8057. "license": [
  8058. "BSD-3-Clause"
  8059. ],
  8060. "authors": [
  8061. {
  8062. "name": "Sebastian Bergmann",
  8063. "email": "sebastian@phpunit.de"
  8064. }
  8065. ],
  8066. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8067. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8068. "support": {
  8069. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8070. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/master"
  8071. },
  8072. "time": "2017-08-03T12:35:26+00:00"
  8073. },
  8074. {
  8075. "name": "sebastian/object-reflector",
  8076. "version": "1.1.1",
  8077. "source": {
  8078. "type": "git",
  8079. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8080. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  8081. },
  8082. "dist": {
  8083. "type": "zip",
  8084. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  8085. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  8086. "shasum": "",
  8087. "mirrors": [
  8088. {
  8089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8090. "preferred": true
  8091. }
  8092. ]
  8093. },
  8094. "require": {
  8095. "php": "^7.0"
  8096. },
  8097. "require-dev": {
  8098. "phpunit/phpunit": "^6.0"
  8099. },
  8100. "type": "library",
  8101. "extra": {
  8102. "branch-alias": {
  8103. "dev-master": "1.1-dev"
  8104. }
  8105. },
  8106. "autoload": {
  8107. "classmap": [
  8108. "src/"
  8109. ]
  8110. },
  8111. "notification-url": "https://packagist.org/downloads/",
  8112. "license": [
  8113. "BSD-3-Clause"
  8114. ],
  8115. "authors": [
  8116. {
  8117. "name": "Sebastian Bergmann",
  8118. "email": "sebastian@phpunit.de"
  8119. }
  8120. ],
  8121. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8122. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8123. "support": {
  8124. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  8125. "source": "https://github.com/sebastianbergmann/object-reflector/tree/master"
  8126. },
  8127. "time": "2017-03-29T09:07:27+00:00"
  8128. },
  8129. {
  8130. "name": "sebastian/recursion-context",
  8131. "version": "3.0.0",
  8132. "source": {
  8133. "type": "git",
  8134. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8135. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  8136. },
  8137. "dist": {
  8138. "type": "zip",
  8139. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8140. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8141. "shasum": "",
  8142. "mirrors": [
  8143. {
  8144. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8145. "preferred": true
  8146. }
  8147. ]
  8148. },
  8149. "require": {
  8150. "php": "^7.0"
  8151. },
  8152. "require-dev": {
  8153. "phpunit/phpunit": "^6.0"
  8154. },
  8155. "type": "library",
  8156. "extra": {
  8157. "branch-alias": {
  8158. "dev-master": "3.0.x-dev"
  8159. }
  8160. },
  8161. "autoload": {
  8162. "classmap": [
  8163. "src/"
  8164. ]
  8165. },
  8166. "notification-url": "https://packagist.org/downloads/",
  8167. "license": [
  8168. "BSD-3-Clause"
  8169. ],
  8170. "authors": [
  8171. {
  8172. "name": "Jeff Welch",
  8173. "email": "whatthejeff@gmail.com"
  8174. },
  8175. {
  8176. "name": "Sebastian Bergmann",
  8177. "email": "sebastian@phpunit.de"
  8178. },
  8179. {
  8180. "name": "Adam Harvey",
  8181. "email": "aharvey@php.net"
  8182. }
  8183. ],
  8184. "description": "Provides functionality to recursively process PHP variables",
  8185. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8186. "support": {
  8187. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8188. "source": "https://github.com/sebastianbergmann/recursion-context/tree/master"
  8189. },
  8190. "time": "2017-03-03T06:23:57+00:00"
  8191. },
  8192. {
  8193. "name": "sebastian/resource-operations",
  8194. "version": "2.0.1",
  8195. "source": {
  8196. "type": "git",
  8197. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8198. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  8199. },
  8200. "dist": {
  8201. "type": "zip",
  8202. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  8203. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  8204. "shasum": "",
  8205. "mirrors": [
  8206. {
  8207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8208. "preferred": true
  8209. }
  8210. ]
  8211. },
  8212. "require": {
  8213. "php": "^7.1"
  8214. },
  8215. "type": "library",
  8216. "extra": {
  8217. "branch-alias": {
  8218. "dev-master": "2.0-dev"
  8219. }
  8220. },
  8221. "autoload": {
  8222. "classmap": [
  8223. "src/"
  8224. ]
  8225. },
  8226. "notification-url": "https://packagist.org/downloads/",
  8227. "license": [
  8228. "BSD-3-Clause"
  8229. ],
  8230. "authors": [
  8231. {
  8232. "name": "Sebastian Bergmann",
  8233. "email": "sebastian@phpunit.de"
  8234. }
  8235. ],
  8236. "description": "Provides a list of PHP built-in functions that operate on resources",
  8237. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8238. "support": {
  8239. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  8240. "source": "https://github.com/sebastianbergmann/resource-operations/tree/master"
  8241. },
  8242. "time": "2018-10-04T04:07:39+00:00"
  8243. },
  8244. {
  8245. "name": "sebastian/version",
  8246. "version": "2.0.1",
  8247. "source": {
  8248. "type": "git",
  8249. "url": "https://github.com/sebastianbergmann/version.git",
  8250. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8251. },
  8252. "dist": {
  8253. "type": "zip",
  8254. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8255. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8256. "shasum": "",
  8257. "mirrors": [
  8258. {
  8259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8260. "preferred": true
  8261. }
  8262. ]
  8263. },
  8264. "require": {
  8265. "php": ">=5.6"
  8266. },
  8267. "type": "library",
  8268. "extra": {
  8269. "branch-alias": {
  8270. "dev-master": "2.0.x-dev"
  8271. }
  8272. },
  8273. "autoload": {
  8274. "classmap": [
  8275. "src/"
  8276. ]
  8277. },
  8278. "notification-url": "https://packagist.org/downloads/",
  8279. "license": [
  8280. "BSD-3-Clause"
  8281. ],
  8282. "authors": [
  8283. {
  8284. "name": "Sebastian Bergmann",
  8285. "email": "sebastian@phpunit.de",
  8286. "role": "lead"
  8287. }
  8288. ],
  8289. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8290. "homepage": "https://github.com/sebastianbergmann/version",
  8291. "support": {
  8292. "issues": "https://github.com/sebastianbergmann/version/issues",
  8293. "source": "https://github.com/sebastianbergmann/version/tree/master"
  8294. },
  8295. "time": "2016-10-03T07:35:21+00:00"
  8296. },
  8297. {
  8298. "name": "swoole/ide-helper",
  8299. "version": "4.5.7",
  8300. "source": {
  8301. "type": "git",
  8302. "url": "https://github.com/swoole/ide-helper.git",
  8303. "reference": "d0a31c530161ba0c44e199e105e6ec0b1f4b3e9e"
  8304. },
  8305. "dist": {
  8306. "type": "zip",
  8307. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/d0a31c530161ba0c44e199e105e6ec0b1f4b3e9e",
  8308. "reference": "d0a31c530161ba0c44e199e105e6ec0b1f4b3e9e",
  8309. "shasum": "",
  8310. "mirrors": [
  8311. {
  8312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8313. "preferred": true
  8314. }
  8315. ]
  8316. },
  8317. "require-dev": {
  8318. "guzzlehttp/guzzle": "~6.5.0",
  8319. "laminas/laminas-code": "~3.4.0",
  8320. "squizlabs/php_codesniffer": "~3.5.0",
  8321. "symfony/filesystem": "~4.0"
  8322. },
  8323. "type": "library",
  8324. "notification-url": "https://packagist.org/downloads/",
  8325. "license": [
  8326. "Apache-2.0"
  8327. ],
  8328. "authors": [
  8329. {
  8330. "name": "Team Swoole",
  8331. "email": "team@swoole.com"
  8332. }
  8333. ],
  8334. "description": "IDE help files for Swoole.",
  8335. "support": {
  8336. "issues": "https://github.com/swoole/ide-helper/issues",
  8337. "source": "https://github.com/swoole/ide-helper/tree/4.5.7"
  8338. },
  8339. "time": "2020-11-06T21:24:31+00:00"
  8340. },
  8341. {
  8342. "name": "symfony/deprecation-contracts",
  8343. "version": "v2.2.0",
  8344. "source": {
  8345. "type": "git",
  8346. "url": "https://github.com/symfony/deprecation-contracts.git",
  8347. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  8348. },
  8349. "dist": {
  8350. "type": "zip",
  8351. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  8352. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  8353. "shasum": "",
  8354. "mirrors": [
  8355. {
  8356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8357. "preferred": true
  8358. }
  8359. ]
  8360. },
  8361. "require": {
  8362. "php": ">=7.1"
  8363. },
  8364. "type": "library",
  8365. "extra": {
  8366. "branch-alias": {
  8367. "dev-master": "2.2-dev"
  8368. },
  8369. "thanks": {
  8370. "name": "symfony/contracts",
  8371. "url": "https://github.com/symfony/contracts"
  8372. }
  8373. },
  8374. "autoload": {
  8375. "files": [
  8376. "function.php"
  8377. ]
  8378. },
  8379. "notification-url": "https://packagist.org/downloads/",
  8380. "license": [
  8381. "MIT"
  8382. ],
  8383. "authors": [
  8384. {
  8385. "name": "Nicolas Grekas",
  8386. "email": "p@tchwork.com"
  8387. },
  8388. {
  8389. "name": "Symfony Community",
  8390. "homepage": "https://symfony.com/contributors"
  8391. }
  8392. ],
  8393. "description": "A generic function and convention to trigger deprecation notices",
  8394. "homepage": "https://symfony.com",
  8395. "support": {
  8396. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  8397. },
  8398. "funding": [
  8399. {
  8400. "url": "https://symfony.com/sponsor",
  8401. "type": "custom"
  8402. },
  8403. {
  8404. "url": "https://github.com/fabpot",
  8405. "type": "github"
  8406. },
  8407. {
  8408. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8409. "type": "tidelift"
  8410. }
  8411. ],
  8412. "time": "2020-09-07T11:33:47+00:00"
  8413. },
  8414. {
  8415. "name": "symfony/event-dispatcher",
  8416. "version": "v5.1.8",
  8417. "source": {
  8418. "type": "git",
  8419. "url": "https://github.com/symfony/event-dispatcher.git",
  8420. "reference": "26f4edae48c913fc183a3da0553fe63bdfbd361a"
  8421. },
  8422. "dist": {
  8423. "type": "zip",
  8424. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/26f4edae48c913fc183a3da0553fe63bdfbd361a",
  8425. "reference": "26f4edae48c913fc183a3da0553fe63bdfbd361a",
  8426. "shasum": "",
  8427. "mirrors": [
  8428. {
  8429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8430. "preferred": true
  8431. }
  8432. ]
  8433. },
  8434. "require": {
  8435. "php": ">=7.2.5",
  8436. "symfony/deprecation-contracts": "^2.1",
  8437. "symfony/event-dispatcher-contracts": "^2",
  8438. "symfony/polyfill-php80": "^1.15"
  8439. },
  8440. "conflict": {
  8441. "symfony/dependency-injection": "<4.4"
  8442. },
  8443. "provide": {
  8444. "psr/event-dispatcher-implementation": "1.0",
  8445. "symfony/event-dispatcher-implementation": "2.0"
  8446. },
  8447. "require-dev": {
  8448. "psr/log": "~1.0",
  8449. "symfony/config": "^4.4|^5.0",
  8450. "symfony/dependency-injection": "^4.4|^5.0",
  8451. "symfony/error-handler": "^4.4|^5.0",
  8452. "symfony/expression-language": "^4.4|^5.0",
  8453. "symfony/http-foundation": "^4.4|^5.0",
  8454. "symfony/service-contracts": "^1.1|^2",
  8455. "symfony/stopwatch": "^4.4|^5.0"
  8456. },
  8457. "suggest": {
  8458. "symfony/dependency-injection": "",
  8459. "symfony/http-kernel": ""
  8460. },
  8461. "type": "library",
  8462. "autoload": {
  8463. "psr-4": {
  8464. "Symfony\\Component\\EventDispatcher\\": ""
  8465. },
  8466. "exclude-from-classmap": [
  8467. "/Tests/"
  8468. ]
  8469. },
  8470. "notification-url": "https://packagist.org/downloads/",
  8471. "license": [
  8472. "MIT"
  8473. ],
  8474. "authors": [
  8475. {
  8476. "name": "Fabien Potencier",
  8477. "email": "fabien@symfony.com"
  8478. },
  8479. {
  8480. "name": "Symfony Community",
  8481. "homepage": "https://symfony.com/contributors"
  8482. }
  8483. ],
  8484. "description": "Symfony EventDispatcher Component",
  8485. "homepage": "https://symfony.com",
  8486. "support": {
  8487. "source": "https://github.com/symfony/event-dispatcher/tree/v5.1.8"
  8488. },
  8489. "funding": [
  8490. {
  8491. "url": "https://symfony.com/sponsor",
  8492. "type": "custom"
  8493. },
  8494. {
  8495. "url": "https://github.com/fabpot",
  8496. "type": "github"
  8497. },
  8498. {
  8499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8500. "type": "tidelift"
  8501. }
  8502. ],
  8503. "time": "2020-10-24T12:01:57+00:00"
  8504. },
  8505. {
  8506. "name": "symfony/event-dispatcher-contracts",
  8507. "version": "v2.2.0",
  8508. "source": {
  8509. "type": "git",
  8510. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8511. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  8512. },
  8513. "dist": {
  8514. "type": "zip",
  8515. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  8516. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  8517. "shasum": "",
  8518. "mirrors": [
  8519. {
  8520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8521. "preferred": true
  8522. }
  8523. ]
  8524. },
  8525. "require": {
  8526. "php": ">=7.2.5",
  8527. "psr/event-dispatcher": "^1"
  8528. },
  8529. "suggest": {
  8530. "symfony/event-dispatcher-implementation": ""
  8531. },
  8532. "type": "library",
  8533. "extra": {
  8534. "branch-alias": {
  8535. "dev-master": "2.2-dev"
  8536. },
  8537. "thanks": {
  8538. "name": "symfony/contracts",
  8539. "url": "https://github.com/symfony/contracts"
  8540. }
  8541. },
  8542. "autoload": {
  8543. "psr-4": {
  8544. "Symfony\\Contracts\\EventDispatcher\\": ""
  8545. }
  8546. },
  8547. "notification-url": "https://packagist.org/downloads/",
  8548. "license": [
  8549. "MIT"
  8550. ],
  8551. "authors": [
  8552. {
  8553. "name": "Nicolas Grekas",
  8554. "email": "p@tchwork.com"
  8555. },
  8556. {
  8557. "name": "Symfony Community",
  8558. "homepage": "https://symfony.com/contributors"
  8559. }
  8560. ],
  8561. "description": "Generic abstractions related to dispatching event",
  8562. "homepage": "https://symfony.com",
  8563. "keywords": [
  8564. "abstractions",
  8565. "contracts",
  8566. "decoupling",
  8567. "interfaces",
  8568. "interoperability",
  8569. "standards"
  8570. ],
  8571. "support": {
  8572. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  8573. },
  8574. "funding": [
  8575. {
  8576. "url": "https://symfony.com/sponsor",
  8577. "type": "custom"
  8578. },
  8579. {
  8580. "url": "https://github.com/fabpot",
  8581. "type": "github"
  8582. },
  8583. {
  8584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8585. "type": "tidelift"
  8586. }
  8587. ],
  8588. "time": "2020-09-07T11:33:47+00:00"
  8589. },
  8590. {
  8591. "name": "symfony/filesystem",
  8592. "version": "v5.1.8",
  8593. "source": {
  8594. "type": "git",
  8595. "url": "https://github.com/symfony/filesystem.git",
  8596. "reference": "df08650ea7aee2d925380069c131a66124d79177"
  8597. },
  8598. "dist": {
  8599. "type": "zip",
  8600. "url": "https://api.github.com/repos/symfony/filesystem/zipball/df08650ea7aee2d925380069c131a66124d79177",
  8601. "reference": "df08650ea7aee2d925380069c131a66124d79177",
  8602. "shasum": "",
  8603. "mirrors": [
  8604. {
  8605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8606. "preferred": true
  8607. }
  8608. ]
  8609. },
  8610. "require": {
  8611. "php": ">=7.2.5",
  8612. "symfony/polyfill-ctype": "~1.8"
  8613. },
  8614. "type": "library",
  8615. "autoload": {
  8616. "psr-4": {
  8617. "Symfony\\Component\\Filesystem\\": ""
  8618. },
  8619. "exclude-from-classmap": [
  8620. "/Tests/"
  8621. ]
  8622. },
  8623. "notification-url": "https://packagist.org/downloads/",
  8624. "license": [
  8625. "MIT"
  8626. ],
  8627. "authors": [
  8628. {
  8629. "name": "Fabien Potencier",
  8630. "email": "fabien@symfony.com"
  8631. },
  8632. {
  8633. "name": "Symfony Community",
  8634. "homepage": "https://symfony.com/contributors"
  8635. }
  8636. ],
  8637. "description": "Symfony Filesystem Component",
  8638. "homepage": "https://symfony.com",
  8639. "support": {
  8640. "source": "https://github.com/symfony/filesystem/tree/v5.1.8"
  8641. },
  8642. "funding": [
  8643. {
  8644. "url": "https://symfony.com/sponsor",
  8645. "type": "custom"
  8646. },
  8647. {
  8648. "url": "https://github.com/fabpot",
  8649. "type": "github"
  8650. },
  8651. {
  8652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8653. "type": "tidelift"
  8654. }
  8655. ],
  8656. "time": "2020-10-24T12:01:57+00:00"
  8657. },
  8658. {
  8659. "name": "symfony/options-resolver",
  8660. "version": "v5.1.8",
  8661. "source": {
  8662. "type": "git",
  8663. "url": "https://github.com/symfony/options-resolver.git",
  8664. "reference": "c6a02905e4ffc7a1498e8ee019db2b477cd1cc02"
  8665. },
  8666. "dist": {
  8667. "type": "zip",
  8668. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/c6a02905e4ffc7a1498e8ee019db2b477cd1cc02",
  8669. "reference": "c6a02905e4ffc7a1498e8ee019db2b477cd1cc02",
  8670. "shasum": "",
  8671. "mirrors": [
  8672. {
  8673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8674. "preferred": true
  8675. }
  8676. ]
  8677. },
  8678. "require": {
  8679. "php": ">=7.2.5",
  8680. "symfony/deprecation-contracts": "^2.1",
  8681. "symfony/polyfill-php80": "^1.15"
  8682. },
  8683. "type": "library",
  8684. "autoload": {
  8685. "psr-4": {
  8686. "Symfony\\Component\\OptionsResolver\\": ""
  8687. },
  8688. "exclude-from-classmap": [
  8689. "/Tests/"
  8690. ]
  8691. },
  8692. "notification-url": "https://packagist.org/downloads/",
  8693. "license": [
  8694. "MIT"
  8695. ],
  8696. "authors": [
  8697. {
  8698. "name": "Fabien Potencier",
  8699. "email": "fabien@symfony.com"
  8700. },
  8701. {
  8702. "name": "Symfony Community",
  8703. "homepage": "https://symfony.com/contributors"
  8704. }
  8705. ],
  8706. "description": "Symfony OptionsResolver Component",
  8707. "homepage": "https://symfony.com",
  8708. "keywords": [
  8709. "config",
  8710. "configuration",
  8711. "options"
  8712. ],
  8713. "support": {
  8714. "source": "https://github.com/symfony/options-resolver/tree/v5.1.8"
  8715. },
  8716. "funding": [
  8717. {
  8718. "url": "https://symfony.com/sponsor",
  8719. "type": "custom"
  8720. },
  8721. {
  8722. "url": "https://github.com/fabpot",
  8723. "type": "github"
  8724. },
  8725. {
  8726. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8727. "type": "tidelift"
  8728. }
  8729. ],
  8730. "time": "2020-10-24T12:01:57+00:00"
  8731. },
  8732. {
  8733. "name": "symfony/polyfill-php70",
  8734. "version": "v1.20.0",
  8735. "source": {
  8736. "type": "git",
  8737. "url": "https://github.com/symfony/polyfill-php70.git",
  8738. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644"
  8739. },
  8740. "dist": {
  8741. "type": "zip",
  8742. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/5f03a781d984aae42cebd18e7912fa80f02ee644",
  8743. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644",
  8744. "shasum": "",
  8745. "mirrors": [
  8746. {
  8747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8748. "preferred": true
  8749. }
  8750. ]
  8751. },
  8752. "require": {
  8753. "php": ">=7.1"
  8754. },
  8755. "type": "metapackage",
  8756. "extra": {
  8757. "branch-alias": {
  8758. "dev-main": "1.20-dev"
  8759. },
  8760. "thanks": {
  8761. "name": "symfony/polyfill",
  8762. "url": "https://github.com/symfony/polyfill"
  8763. }
  8764. },
  8765. "notification-url": "https://packagist.org/downloads/",
  8766. "license": [
  8767. "MIT"
  8768. ],
  8769. "authors": [
  8770. {
  8771. "name": "Nicolas Grekas",
  8772. "email": "p@tchwork.com"
  8773. },
  8774. {
  8775. "name": "Symfony Community",
  8776. "homepage": "https://symfony.com/contributors"
  8777. }
  8778. ],
  8779. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8780. "homepage": "https://symfony.com",
  8781. "keywords": [
  8782. "compatibility",
  8783. "polyfill",
  8784. "portable",
  8785. "shim"
  8786. ],
  8787. "support": {
  8788. "source": "https://github.com/symfony/polyfill-php70/tree/v1.20.0"
  8789. },
  8790. "funding": [
  8791. {
  8792. "url": "https://symfony.com/sponsor",
  8793. "type": "custom"
  8794. },
  8795. {
  8796. "url": "https://github.com/fabpot",
  8797. "type": "github"
  8798. },
  8799. {
  8800. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8801. "type": "tidelift"
  8802. }
  8803. ],
  8804. "time": "2020-10-23T14:02:19+00:00"
  8805. },
  8806. {
  8807. "name": "symfony/process",
  8808. "version": "v5.1.8",
  8809. "source": {
  8810. "type": "git",
  8811. "url": "https://github.com/symfony/process.git",
  8812. "reference": "f00872c3f6804150d6a0f73b4151daab96248101"
  8813. },
  8814. "dist": {
  8815. "type": "zip",
  8816. "url": "https://api.github.com/repos/symfony/process/zipball/f00872c3f6804150d6a0f73b4151daab96248101",
  8817. "reference": "f00872c3f6804150d6a0f73b4151daab96248101",
  8818. "shasum": "",
  8819. "mirrors": [
  8820. {
  8821. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8822. "preferred": true
  8823. }
  8824. ]
  8825. },
  8826. "require": {
  8827. "php": ">=7.2.5",
  8828. "symfony/polyfill-php80": "^1.15"
  8829. },
  8830. "type": "library",
  8831. "autoload": {
  8832. "psr-4": {
  8833. "Symfony\\Component\\Process\\": ""
  8834. },
  8835. "exclude-from-classmap": [
  8836. "/Tests/"
  8837. ]
  8838. },
  8839. "notification-url": "https://packagist.org/downloads/",
  8840. "license": [
  8841. "MIT"
  8842. ],
  8843. "authors": [
  8844. {
  8845. "name": "Fabien Potencier",
  8846. "email": "fabien@symfony.com"
  8847. },
  8848. {
  8849. "name": "Symfony Community",
  8850. "homepage": "https://symfony.com/contributors"
  8851. }
  8852. ],
  8853. "description": "Symfony Process Component",
  8854. "homepage": "https://symfony.com",
  8855. "support": {
  8856. "source": "https://github.com/symfony/process/tree/v5.1.8"
  8857. },
  8858. "funding": [
  8859. {
  8860. "url": "https://symfony.com/sponsor",
  8861. "type": "custom"
  8862. },
  8863. {
  8864. "url": "https://github.com/fabpot",
  8865. "type": "github"
  8866. },
  8867. {
  8868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8869. "type": "tidelift"
  8870. }
  8871. ],
  8872. "time": "2020-10-24T12:01:57+00:00"
  8873. },
  8874. {
  8875. "name": "symfony/stopwatch",
  8876. "version": "v5.1.8",
  8877. "source": {
  8878. "type": "git",
  8879. "url": "https://github.com/symfony/stopwatch.git",
  8880. "reference": "3d9f57c89011f0266e6b1d469e5c0110513859d5"
  8881. },
  8882. "dist": {
  8883. "type": "zip",
  8884. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/3d9f57c89011f0266e6b1d469e5c0110513859d5",
  8885. "reference": "3d9f57c89011f0266e6b1d469e5c0110513859d5",
  8886. "shasum": "",
  8887. "mirrors": [
  8888. {
  8889. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8890. "preferred": true
  8891. }
  8892. ]
  8893. },
  8894. "require": {
  8895. "php": ">=7.2.5",
  8896. "symfony/service-contracts": "^1.0|^2"
  8897. },
  8898. "type": "library",
  8899. "autoload": {
  8900. "psr-4": {
  8901. "Symfony\\Component\\Stopwatch\\": ""
  8902. },
  8903. "exclude-from-classmap": [
  8904. "/Tests/"
  8905. ]
  8906. },
  8907. "notification-url": "https://packagist.org/downloads/",
  8908. "license": [
  8909. "MIT"
  8910. ],
  8911. "authors": [
  8912. {
  8913. "name": "Fabien Potencier",
  8914. "email": "fabien@symfony.com"
  8915. },
  8916. {
  8917. "name": "Symfony Community",
  8918. "homepage": "https://symfony.com/contributors"
  8919. }
  8920. ],
  8921. "description": "Symfony Stopwatch Component",
  8922. "homepage": "https://symfony.com",
  8923. "support": {
  8924. "source": "https://github.com/symfony/stopwatch/tree/v5.1.8"
  8925. },
  8926. "funding": [
  8927. {
  8928. "url": "https://symfony.com/sponsor",
  8929. "type": "custom"
  8930. },
  8931. {
  8932. "url": "https://github.com/fabpot",
  8933. "type": "github"
  8934. },
  8935. {
  8936. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8937. "type": "tidelift"
  8938. }
  8939. ],
  8940. "time": "2020-10-24T12:01:57+00:00"
  8941. },
  8942. {
  8943. "name": "theseer/tokenizer",
  8944. "version": "1.2.0",
  8945. "source": {
  8946. "type": "git",
  8947. "url": "https://github.com/theseer/tokenizer.git",
  8948. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  8949. },
  8950. "dist": {
  8951. "type": "zip",
  8952. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  8953. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  8954. "shasum": "",
  8955. "mirrors": [
  8956. {
  8957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8958. "preferred": true
  8959. }
  8960. ]
  8961. },
  8962. "require": {
  8963. "ext-dom": "*",
  8964. "ext-tokenizer": "*",
  8965. "ext-xmlwriter": "*",
  8966. "php": "^7.2 || ^8.0"
  8967. },
  8968. "type": "library",
  8969. "autoload": {
  8970. "classmap": [
  8971. "src/"
  8972. ]
  8973. },
  8974. "notification-url": "https://packagist.org/downloads/",
  8975. "license": [
  8976. "BSD-3-Clause"
  8977. ],
  8978. "authors": [
  8979. {
  8980. "name": "Arne Blankerts",
  8981. "email": "arne@blankerts.de",
  8982. "role": "Developer"
  8983. }
  8984. ],
  8985. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8986. "support": {
  8987. "issues": "https://github.com/theseer/tokenizer/issues",
  8988. "source": "https://github.com/theseer/tokenizer/tree/master"
  8989. },
  8990. "funding": [
  8991. {
  8992. "url": "https://github.com/theseer",
  8993. "type": "github"
  8994. }
  8995. ],
  8996. "time": "2020-07-12T23:59:07+00:00"
  8997. }
  8998. ],
  8999. "aliases": [],
  9000. "minimum-stability": "dev",
  9001. "stability-flags": [],
  9002. "prefer-stable": true,
  9003. "prefer-lowest": false,
  9004. "platform": {
  9005. "php": ">=7.2",
  9006. "ext-swoole": ">=4.5"
  9007. },
  9008. "platform-dev": [],
  9009. "plugin-api-version": "2.0.0"
  9010. }