composer.lock 195 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496
  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": "e80712bb00cbc4e8ec723313eafc34d9",
  8. "packages": [
  9. {
  10. "name": "aliyuncs/oss-sdk-php",
  11. "version": "v2.4.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  15. "reference": "492866331b7bafaac09506cf42f351b7e9e63766"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/492866331b7bafaac09506cf42f351b7e9e63766",
  20. "reference": "492866331b7bafaac09506cf42f351b7e9e63766",
  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. "php": ">=5.3"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "~4.0",
  34. "satooshi/php-coveralls": "~1.0"
  35. },
  36. "type": "library",
  37. "autoload": {
  38. "psr-4": {
  39. "OSS\\": "src/OSS"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Aliyuncs",
  49. "homepage": "http://www.aliyun.com"
  50. }
  51. ],
  52. "description": "Aliyun OSS SDK for PHP",
  53. "homepage": "http://www.aliyun.com/product/oss/",
  54. "support": {
  55. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  56. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.4.1"
  57. },
  58. "time": "2020-09-29T06:23:57+00:00"
  59. },
  60. {
  61. "name": "bower-asset/bootstrap",
  62. "version": "v3.4.1",
  63. "source": {
  64. "type": "git",
  65. "url": "https://github.com/twbs/bootstrap.git",
  66. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  67. },
  68. "dist": {
  69. "type": "zip",
  70. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  71. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  72. },
  73. "require": {
  74. "bower-asset/jquery": ">=1.9.1,<4.0"
  75. },
  76. "type": "bower-asset",
  77. "license": [
  78. "MIT"
  79. ]
  80. },
  81. {
  82. "name": "bower-asset/inputmask",
  83. "version": "3.3.11",
  84. "source": {
  85. "type": "git",
  86. "url": "https://github.com/RobinHerbots/Inputmask.git",
  87. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  88. },
  89. "dist": {
  90. "type": "zip",
  91. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  92. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  93. },
  94. "require": {
  95. "bower-asset/jquery": ">=1.7"
  96. },
  97. "type": "bower-asset",
  98. "license": [
  99. "http://opensource.org/licenses/mit-license.php"
  100. ]
  101. },
  102. {
  103. "name": "bower-asset/jquery",
  104. "version": "3.5.1",
  105. "source": {
  106. "type": "git",
  107. "url": "https://github.com/jquery/jquery-dist.git",
  108. "reference": "4c0e4becb8263bb5b3e6dadc448d8e7305ef8215"
  109. },
  110. "dist": {
  111. "type": "zip",
  112. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/4c0e4becb8263bb5b3e6dadc448d8e7305ef8215",
  113. "reference": "4c0e4becb8263bb5b3e6dadc448d8e7305ef8215"
  114. },
  115. "type": "bower-asset",
  116. "license": [
  117. "MIT"
  118. ]
  119. },
  120. {
  121. "name": "bower-asset/punycode",
  122. "version": "v1.3.2",
  123. "source": {
  124. "type": "git",
  125. "url": "git@github.com:bestiejs/punycode.js.git",
  126. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  127. },
  128. "dist": {
  129. "type": "zip",
  130. "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  131. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  132. },
  133. "type": "bower-asset"
  134. },
  135. {
  136. "name": "bower-asset/yii2-pjax",
  137. "version": "2.0.7.1",
  138. "source": {
  139. "type": "git",
  140. "url": "git@github.com:yiisoft/jquery-pjax.git",
  141. "reference": "aef7b953107264f00234902a3880eb50dafc48be"
  142. },
  143. "dist": {
  144. "type": "zip",
  145. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/aef7b953107264f00234902a3880eb50dafc48be",
  146. "reference": "aef7b953107264f00234902a3880eb50dafc48be"
  147. },
  148. "require": {
  149. "bower-asset/jquery": ">=1.8"
  150. },
  151. "type": "bower-asset",
  152. "license": [
  153. "MIT"
  154. ]
  155. },
  156. {
  157. "name": "cebe/markdown",
  158. "version": "1.2.1",
  159. "source": {
  160. "type": "git",
  161. "url": "https://github.com/cebe/markdown.git",
  162. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  163. },
  164. "dist": {
  165. "type": "zip",
  166. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  167. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  168. "shasum": "",
  169. "mirrors": [
  170. {
  171. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  172. "preferred": true
  173. }
  174. ]
  175. },
  176. "require": {
  177. "lib-pcre": "*",
  178. "php": ">=5.4.0"
  179. },
  180. "require-dev": {
  181. "cebe/indent": "*",
  182. "facebook/xhprof": "*@dev",
  183. "phpunit/phpunit": "4.1.*"
  184. },
  185. "bin": [
  186. "bin/markdown"
  187. ],
  188. "type": "library",
  189. "extra": {
  190. "branch-alias": {
  191. "dev-master": "1.2.x-dev"
  192. }
  193. },
  194. "autoload": {
  195. "psr-4": {
  196. "cebe\\markdown\\": ""
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "MIT"
  202. ],
  203. "authors": [
  204. {
  205. "name": "Carsten Brandt",
  206. "email": "mail@cebe.cc",
  207. "homepage": "http://cebe.cc/",
  208. "role": "Creator"
  209. }
  210. ],
  211. "description": "A super fast, highly extensible markdown parser for PHP",
  212. "homepage": "https://github.com/cebe/markdown#readme",
  213. "keywords": [
  214. "extensible",
  215. "fast",
  216. "gfm",
  217. "markdown",
  218. "markdown-extra"
  219. ],
  220. "support": {
  221. "issues": "https://github.com/cebe/markdown/issues",
  222. "source": "https://github.com/cebe/markdown"
  223. },
  224. "time": "2018-03-26T11:24:36+00:00"
  225. },
  226. {
  227. "name": "doctrine/lexer",
  228. "version": "1.2.1",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/doctrine/lexer.git",
  232. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  237. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  238. "shasum": "",
  239. "mirrors": [
  240. {
  241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  242. "preferred": true
  243. }
  244. ]
  245. },
  246. "require": {
  247. "php": "^7.2 || ^8.0"
  248. },
  249. "require-dev": {
  250. "doctrine/coding-standard": "^6.0",
  251. "phpstan/phpstan": "^0.11.8",
  252. "phpunit/phpunit": "^8.2"
  253. },
  254. "type": "library",
  255. "extra": {
  256. "branch-alias": {
  257. "dev-master": "1.2.x-dev"
  258. }
  259. },
  260. "autoload": {
  261. "psr-4": {
  262. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  263. }
  264. },
  265. "notification-url": "https://packagist.org/downloads/",
  266. "license": [
  267. "MIT"
  268. ],
  269. "authors": [
  270. {
  271. "name": "Guilherme Blanco",
  272. "email": "guilhermeblanco@gmail.com"
  273. },
  274. {
  275. "name": "Roman Borschel",
  276. "email": "roman@code-factory.org"
  277. },
  278. {
  279. "name": "Johannes Schmitt",
  280. "email": "schmittjoh@gmail.com"
  281. }
  282. ],
  283. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  284. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  285. "keywords": [
  286. "annotations",
  287. "docblock",
  288. "lexer",
  289. "parser",
  290. "php"
  291. ],
  292. "support": {
  293. "issues": "https://github.com/doctrine/lexer/issues",
  294. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  295. },
  296. "funding": [
  297. {
  298. "url": "https://www.doctrine-project.org/sponsorship.html",
  299. "type": "custom"
  300. },
  301. {
  302. "url": "https://www.patreon.com/phpdoctrine",
  303. "type": "patreon"
  304. },
  305. {
  306. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  307. "type": "tidelift"
  308. }
  309. ],
  310. "time": "2020-05-25T17:44:05+00:00"
  311. },
  312. {
  313. "name": "egulias/email-validator",
  314. "version": "2.1.23",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/egulias/EmailValidator.git",
  318. "reference": "5fa792ad1853ae2bc60528dd3e5cbf4542d3c1df"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5fa792ad1853ae2bc60528dd3e5cbf4542d3c1df",
  323. "reference": "5fa792ad1853ae2bc60528dd3e5cbf4542d3c1df",
  324. "shasum": "",
  325. "mirrors": [
  326. {
  327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  328. "preferred": true
  329. }
  330. ]
  331. },
  332. "require": {
  333. "doctrine/lexer": "^1.0.1",
  334. "php": ">=5.5",
  335. "symfony/polyfill-intl-idn": "^1.10"
  336. },
  337. "require-dev": {
  338. "dominicsayers/isemail": "^3.0.7",
  339. "phpunit/phpunit": "^4.8.36|^7.5.15",
  340. "satooshi/php-coveralls": "^1.0.1"
  341. },
  342. "suggest": {
  343. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  344. },
  345. "type": "library",
  346. "extra": {
  347. "branch-alias": {
  348. "dev-master": "2.1.x-dev"
  349. }
  350. },
  351. "autoload": {
  352. "psr-4": {
  353. "Egulias\\EmailValidator\\": "src"
  354. }
  355. },
  356. "notification-url": "https://packagist.org/downloads/",
  357. "license": [
  358. "MIT"
  359. ],
  360. "authors": [
  361. {
  362. "name": "Eduardo Gulias Davis"
  363. }
  364. ],
  365. "description": "A library for validating emails against several RFCs",
  366. "homepage": "https://github.com/egulias/EmailValidator",
  367. "keywords": [
  368. "email",
  369. "emailvalidation",
  370. "emailvalidator",
  371. "validation",
  372. "validator"
  373. ],
  374. "support": {
  375. "issues": "https://github.com/egulias/EmailValidator/issues",
  376. "source": "https://github.com/egulias/EmailValidator/tree/2.1.23"
  377. },
  378. "time": "2020-10-31T20:37:35+00:00"
  379. },
  380. {
  381. "name": "ezyang/htmlpurifier",
  382. "version": "v4.13.0",
  383. "source": {
  384. "type": "git",
  385. "url": "https://github.com/ezyang/htmlpurifier.git",
  386. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  387. },
  388. "dist": {
  389. "type": "zip",
  390. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  391. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  392. "shasum": "",
  393. "mirrors": [
  394. {
  395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  396. "preferred": true
  397. }
  398. ]
  399. },
  400. "require": {
  401. "php": ">=5.2"
  402. },
  403. "require-dev": {
  404. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  405. },
  406. "type": "library",
  407. "autoload": {
  408. "psr-0": {
  409. "HTMLPurifier": "library/"
  410. },
  411. "files": [
  412. "library/HTMLPurifier.composer.php"
  413. ],
  414. "exclude-from-classmap": [
  415. "/library/HTMLPurifier/Language/"
  416. ]
  417. },
  418. "notification-url": "https://packagist.org/downloads/",
  419. "license": [
  420. "LGPL-2.1-or-later"
  421. ],
  422. "authors": [
  423. {
  424. "name": "Edward Z. Yang",
  425. "email": "admin@htmlpurifier.org",
  426. "homepage": "http://ezyang.com"
  427. }
  428. ],
  429. "description": "Standards compliant HTML filter written in PHP",
  430. "homepage": "http://htmlpurifier.org/",
  431. "keywords": [
  432. "html"
  433. ],
  434. "support": {
  435. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  436. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  437. },
  438. "time": "2020-06-29T00:56:53+00:00"
  439. },
  440. {
  441. "name": "feehi/yii2-cdn",
  442. "version": "0.0.4",
  443. "source": {
  444. "type": "git",
  445. "url": "https://github.com/liufee/yii2-cdn.git",
  446. "reference": "a4842573817bc3d2ed0ec64dc578350d71cf2848"
  447. },
  448. "dist": {
  449. "type": "zip",
  450. "url": "https://api.github.com/repos/liufee/yii2-cdn/zipball/a4842573817bc3d2ed0ec64dc578350d71cf2848",
  451. "reference": "a4842573817bc3d2ed0ec64dc578350d71cf2848",
  452. "shasum": "",
  453. "mirrors": [
  454. {
  455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  456. "preferred": true
  457. }
  458. ]
  459. },
  460. "require": {
  461. "aliyuncs/oss-sdk-php": "~2.0",
  462. "netease/nos-php-sdk": "1.0.0",
  463. "qcloud/cos-sdk-v5": ">=1.0",
  464. "qiniu/php-sdk": "^7.2"
  465. },
  466. "type": "library",
  467. "autoload": {
  468. "psr-4": {
  469. "feehi\\cdn\\": "src/"
  470. }
  471. },
  472. "notification-url": "https://packagist.org/downloads/",
  473. "license": [
  474. "MIT"
  475. ],
  476. "authors": [
  477. {
  478. "name": "liufee",
  479. "email": "job@feehi.com",
  480. "homepage": "http://blog.feehi.com",
  481. "role": "Developer"
  482. }
  483. ],
  484. "description": "yii2 cdn",
  485. "homepage": "http://blog.feehi.com",
  486. "keywords": [
  487. "oss",
  488. "qiniu",
  489. "yii2",
  490. "yii2-oss",
  491. "yii2-qiniu"
  492. ],
  493. "support": {
  494. "issues": "https://github.com/liufee/yii2-cdn/issues",
  495. "source": "https://github.com/liufee/yii2-cdn/tree/master"
  496. },
  497. "time": "2018-09-19T14:32:54+00:00"
  498. },
  499. {
  500. "name": "guzzlehttp/command",
  501. "version": "1.0.0",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/guzzle/command.git",
  505. "reference": "2aaa2521a8f8269d6f5dfc13fe2af12c76921034"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/guzzle/command/zipball/2aaa2521a8f8269d6f5dfc13fe2af12c76921034",
  510. "reference": "2aaa2521a8f8269d6f5dfc13fe2af12c76921034",
  511. "shasum": "",
  512. "mirrors": [
  513. {
  514. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  515. "preferred": true
  516. }
  517. ]
  518. },
  519. "require": {
  520. "guzzlehttp/guzzle": "^6.2",
  521. "guzzlehttp/promises": "~1.3",
  522. "guzzlehttp/psr7": "~1.0",
  523. "php": ">=5.5.0"
  524. },
  525. "require-dev": {
  526. "phpunit/phpunit": "~4.0|~5.0"
  527. },
  528. "type": "library",
  529. "extra": {
  530. "branch-alias": {
  531. "dev-master": "0.9-dev"
  532. }
  533. },
  534. "autoload": {
  535. "psr-4": {
  536. "GuzzleHttp\\Command\\": "src/"
  537. }
  538. },
  539. "notification-url": "https://packagist.org/downloads/",
  540. "license": [
  541. "MIT"
  542. ],
  543. "authors": [
  544. {
  545. "name": "Michael Dowling",
  546. "email": "mtdowling@gmail.com",
  547. "homepage": "https://github.com/mtdowling"
  548. },
  549. {
  550. "name": "Jeremy Lindblom",
  551. "email": "jeremeamia@gmail.com",
  552. "homepage": "https://github.com/jeremeamia"
  553. }
  554. ],
  555. "description": "Provides the foundation for building command-based web service clients",
  556. "support": {
  557. "issues": "https://github.com/guzzle/command/issues",
  558. "source": "https://github.com/guzzle/command/tree/1.0.0"
  559. },
  560. "time": "2016-11-24T13:34:15+00:00"
  561. },
  562. {
  563. "name": "guzzlehttp/guzzle",
  564. "version": "6.5.5",
  565. "source": {
  566. "type": "git",
  567. "url": "https://github.com/guzzle/guzzle.git",
  568. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  569. },
  570. "dist": {
  571. "type": "zip",
  572. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  573. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  574. "shasum": "",
  575. "mirrors": [
  576. {
  577. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  578. "preferred": true
  579. }
  580. ]
  581. },
  582. "require": {
  583. "ext-json": "*",
  584. "guzzlehttp/promises": "^1.0",
  585. "guzzlehttp/psr7": "^1.6.1",
  586. "php": ">=5.5",
  587. "symfony/polyfill-intl-idn": "^1.17.0"
  588. },
  589. "require-dev": {
  590. "ext-curl": "*",
  591. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  592. "psr/log": "^1.1"
  593. },
  594. "suggest": {
  595. "psr/log": "Required for using the Log middleware"
  596. },
  597. "type": "library",
  598. "extra": {
  599. "branch-alias": {
  600. "dev-master": "6.5-dev"
  601. }
  602. },
  603. "autoload": {
  604. "psr-4": {
  605. "GuzzleHttp\\": "src/"
  606. },
  607. "files": [
  608. "src/functions_include.php"
  609. ]
  610. },
  611. "notification-url": "https://packagist.org/downloads/",
  612. "license": [
  613. "MIT"
  614. ],
  615. "authors": [
  616. {
  617. "name": "Michael Dowling",
  618. "email": "mtdowling@gmail.com",
  619. "homepage": "https://github.com/mtdowling"
  620. }
  621. ],
  622. "description": "Guzzle is a PHP HTTP client library",
  623. "homepage": "http://guzzlephp.org/",
  624. "keywords": [
  625. "client",
  626. "curl",
  627. "framework",
  628. "http",
  629. "http client",
  630. "rest",
  631. "web service"
  632. ],
  633. "support": {
  634. "issues": "https://github.com/guzzle/guzzle/issues",
  635. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  636. },
  637. "time": "2020-06-16T21:01:06+00:00"
  638. },
  639. {
  640. "name": "guzzlehttp/guzzle-services",
  641. "version": "1.1.3",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/guzzle/guzzle-services.git",
  645. "reference": "9e3abf20161cbf662d616cbb995f2811771759f7"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/9e3abf20161cbf662d616cbb995f2811771759f7",
  650. "reference": "9e3abf20161cbf662d616cbb995f2811771759f7",
  651. "shasum": "",
  652. "mirrors": [
  653. {
  654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  655. "preferred": true
  656. }
  657. ]
  658. },
  659. "require": {
  660. "guzzlehttp/command": "~1.0",
  661. "guzzlehttp/guzzle": "^6.2",
  662. "php": ">=5.5"
  663. },
  664. "require-dev": {
  665. "phpunit/phpunit": "~4.0"
  666. },
  667. "suggest": {
  668. "gimler/guzzle-description-loader": "^0.0.4"
  669. },
  670. "type": "library",
  671. "extra": {
  672. "branch-alias": {
  673. "dev-master": "1.0.x-dev"
  674. }
  675. },
  676. "autoload": {
  677. "psr-4": {
  678. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  679. }
  680. },
  681. "notification-url": "https://packagist.org/downloads/",
  682. "license": [
  683. "MIT"
  684. ],
  685. "authors": [
  686. {
  687. "name": "Michael Dowling",
  688. "email": "mtdowling@gmail.com",
  689. "homepage": "https://github.com/mtdowling"
  690. },
  691. {
  692. "name": "Jeremy Lindblom",
  693. "email": "jeremeamia@gmail.com",
  694. "homepage": "https://github.com/jeremeamia"
  695. },
  696. {
  697. "name": "Stefano Kowalke",
  698. "email": "blueduck@mail.org",
  699. "homepage": "https://github.com/konafets"
  700. }
  701. ],
  702. "description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures.",
  703. "support": {
  704. "issues": "https://github.com/guzzle/guzzle-services/issues",
  705. "source": "https://github.com/guzzle/guzzle-services/tree/1.1.3"
  706. },
  707. "time": "2017-10-06T14:32:02+00:00"
  708. },
  709. {
  710. "name": "guzzlehttp/promises",
  711. "version": "1.4.0",
  712. "source": {
  713. "type": "git",
  714. "url": "https://github.com/guzzle/promises.git",
  715. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  716. },
  717. "dist": {
  718. "type": "zip",
  719. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  720. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  721. "shasum": "",
  722. "mirrors": [
  723. {
  724. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  725. "preferred": true
  726. }
  727. ]
  728. },
  729. "require": {
  730. "php": ">=5.5"
  731. },
  732. "require-dev": {
  733. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  734. },
  735. "type": "library",
  736. "extra": {
  737. "branch-alias": {
  738. "dev-master": "1.4-dev"
  739. }
  740. },
  741. "autoload": {
  742. "psr-4": {
  743. "GuzzleHttp\\Promise\\": "src/"
  744. },
  745. "files": [
  746. "src/functions_include.php"
  747. ]
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Michael Dowling",
  756. "email": "mtdowling@gmail.com",
  757. "homepage": "https://github.com/mtdowling"
  758. }
  759. ],
  760. "description": "Guzzle promises library",
  761. "keywords": [
  762. "promise"
  763. ],
  764. "support": {
  765. "issues": "https://github.com/guzzle/promises/issues",
  766. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  767. },
  768. "time": "2020-09-30T07:37:28+00:00"
  769. },
  770. {
  771. "name": "guzzlehttp/psr7",
  772. "version": "1.7.0",
  773. "source": {
  774. "type": "git",
  775. "url": "https://github.com/guzzle/psr7.git",
  776. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  777. },
  778. "dist": {
  779. "type": "zip",
  780. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  781. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  782. "shasum": "",
  783. "mirrors": [
  784. {
  785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  786. "preferred": true
  787. }
  788. ]
  789. },
  790. "require": {
  791. "php": ">=5.4.0",
  792. "psr/http-message": "~1.0",
  793. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  794. },
  795. "provide": {
  796. "psr/http-message-implementation": "1.0"
  797. },
  798. "require-dev": {
  799. "ext-zlib": "*",
  800. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  801. },
  802. "suggest": {
  803. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  804. },
  805. "type": "library",
  806. "extra": {
  807. "branch-alias": {
  808. "dev-master": "1.7-dev"
  809. }
  810. },
  811. "autoload": {
  812. "psr-4": {
  813. "GuzzleHttp\\Psr7\\": "src/"
  814. },
  815. "files": [
  816. "src/functions_include.php"
  817. ]
  818. },
  819. "notification-url": "https://packagist.org/downloads/",
  820. "license": [
  821. "MIT"
  822. ],
  823. "authors": [
  824. {
  825. "name": "Michael Dowling",
  826. "email": "mtdowling@gmail.com",
  827. "homepage": "https://github.com/mtdowling"
  828. },
  829. {
  830. "name": "Tobias Schultze",
  831. "homepage": "https://github.com/Tobion"
  832. }
  833. ],
  834. "description": "PSR-7 message implementation that also provides common utility methods",
  835. "keywords": [
  836. "http",
  837. "message",
  838. "psr-7",
  839. "request",
  840. "response",
  841. "stream",
  842. "uri",
  843. "url"
  844. ],
  845. "support": {
  846. "issues": "https://github.com/guzzle/psr7/issues",
  847. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  848. },
  849. "time": "2020-09-30T07:37:11+00:00"
  850. },
  851. {
  852. "name": "imagine/imagine",
  853. "version": "1.2.4",
  854. "source": {
  855. "type": "git",
  856. "url": "https://github.com/avalanche123/Imagine.git",
  857. "reference": "d2e18be6e930ca169e4f921ef73ebfc061bf55d8"
  858. },
  859. "dist": {
  860. "type": "zip",
  861. "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/d2e18be6e930ca169e4f921ef73ebfc061bf55d8",
  862. "reference": "d2e18be6e930ca169e4f921ef73ebfc061bf55d8",
  863. "shasum": "",
  864. "mirrors": [
  865. {
  866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  867. "preferred": true
  868. }
  869. ]
  870. },
  871. "require": {
  872. "php": ">=5.3.2"
  873. },
  874. "require-dev": {
  875. "friendsofphp/php-cs-fixer": "^2.2",
  876. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4 || ^9.3"
  877. },
  878. "suggest": {
  879. "ext-gd": "to use the GD implementation",
  880. "ext-gmagick": "to use the Gmagick implementation",
  881. "ext-imagick": "to use the Imagick implementation"
  882. },
  883. "type": "library",
  884. "extra": {
  885. "branch-alias": {
  886. "dev-develop": "0.7-dev"
  887. }
  888. },
  889. "autoload": {
  890. "psr-4": {
  891. "Imagine\\": "src/"
  892. }
  893. },
  894. "notification-url": "https://packagist.org/downloads/",
  895. "license": [
  896. "MIT"
  897. ],
  898. "authors": [
  899. {
  900. "name": "Bulat Shakirzyanov",
  901. "email": "mallluhuct@gmail.com",
  902. "homepage": "http://avalanche123.com"
  903. }
  904. ],
  905. "description": "Image processing for PHP 5.3",
  906. "homepage": "http://imagine.readthedocs.org/",
  907. "keywords": [
  908. "drawing",
  909. "graphics",
  910. "image manipulation",
  911. "image processing"
  912. ],
  913. "support": {
  914. "issues": "https://github.com/avalanche123/Imagine/issues",
  915. "source": "https://github.com/avalanche123/Imagine/tree/1.2.4"
  916. },
  917. "time": "2020-11-03T22:35:03+00:00"
  918. },
  919. {
  920. "name": "netease/nos-php-sdk",
  921. "version": "1.0.0",
  922. "source": {
  923. "type": "git",
  924. "url": "https://github.com/NetEase-Object-Storage/nos-php-sdk.git",
  925. "reference": "cfff001bb09fd9345f38bafd267437bb4cf12018"
  926. },
  927. "dist": {
  928. "type": "zip",
  929. "url": "https://api.github.com/repos/NetEase-Object-Storage/nos-php-sdk/zipball/cfff001bb09fd9345f38bafd267437bb4cf12018",
  930. "reference": "cfff001bb09fd9345f38bafd267437bb4cf12018",
  931. "shasum": "",
  932. "mirrors": [
  933. {
  934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  935. "preferred": true
  936. }
  937. ]
  938. },
  939. "require": {
  940. "php": ">=5.3"
  941. },
  942. "require-dev": {
  943. "phpunit/phpunit": "~4.0",
  944. "satooshi/php-coveralls": "~1.0"
  945. },
  946. "type": "library",
  947. "autoload": {
  948. "psr-4": {
  949. "NOS\\": "src/NOS"
  950. }
  951. },
  952. "notification-url": "https://packagist.org/downloads/",
  953. "license": [
  954. "MIT"
  955. ],
  956. "authors": [
  957. {
  958. "name": "netease",
  959. "homepage": "https://c.163.com/product/nos"
  960. }
  961. ],
  962. "description": "netease NOS SDK for PHP",
  963. "homepage": "https://c.163.com/product/nos",
  964. "support": {
  965. "issues": "https://github.com/NetEase-Object-Storage/nos-php-sdk/issues",
  966. "source": "https://github.com/NetEase-Object-Storage/nos-php-sdk/tree/v1.0.0"
  967. },
  968. "time": "2016-08-11T12:24:47+00:00"
  969. },
  970. {
  971. "name": "psr/http-message",
  972. "version": "1.0.1",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/php-fig/http-message.git",
  976. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  981. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  982. "shasum": "",
  983. "mirrors": [
  984. {
  985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  986. "preferred": true
  987. }
  988. ]
  989. },
  990. "require": {
  991. "php": ">=5.3.0"
  992. },
  993. "type": "library",
  994. "extra": {
  995. "branch-alias": {
  996. "dev-master": "1.0.x-dev"
  997. }
  998. },
  999. "autoload": {
  1000. "psr-4": {
  1001. "Psr\\Http\\Message\\": "src/"
  1002. }
  1003. },
  1004. "notification-url": "https://packagist.org/downloads/",
  1005. "license": [
  1006. "MIT"
  1007. ],
  1008. "authors": [
  1009. {
  1010. "name": "PHP-FIG",
  1011. "homepage": "http://www.php-fig.org/"
  1012. }
  1013. ],
  1014. "description": "Common interface for HTTP messages",
  1015. "homepage": "https://github.com/php-fig/http-message",
  1016. "keywords": [
  1017. "http",
  1018. "http-message",
  1019. "psr",
  1020. "psr-7",
  1021. "request",
  1022. "response"
  1023. ],
  1024. "support": {
  1025. "source": "https://github.com/php-fig/http-message/tree/master"
  1026. },
  1027. "time": "2016-08-06T14:39:51+00:00"
  1028. },
  1029. {
  1030. "name": "qcloud/cos-sdk-v5",
  1031. "version": "v2.1.1",
  1032. "source": {
  1033. "type": "git",
  1034. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  1035. "reference": "8dab76e9898f862c2cdc074b8411cbd77ca291f3"
  1036. },
  1037. "dist": {
  1038. "type": "zip",
  1039. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/8dab76e9898f862c2cdc074b8411cbd77ca291f3",
  1040. "reference": "8dab76e9898f862c2cdc074b8411cbd77ca291f3",
  1041. "shasum": "",
  1042. "mirrors": [
  1043. {
  1044. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1045. "preferred": true
  1046. }
  1047. ]
  1048. },
  1049. "require": {
  1050. "guzzlehttp/guzzle": "~6.3",
  1051. "guzzlehttp/guzzle-services": "~1.1",
  1052. "php": ">=5.3.0"
  1053. },
  1054. "type": "library",
  1055. "autoload": {
  1056. "psr-0": {
  1057. "Qcloud\\Cos\\": "src/"
  1058. }
  1059. },
  1060. "notification-url": "https://packagist.org/downloads/",
  1061. "license": [
  1062. "MIT"
  1063. ],
  1064. "authors": [
  1065. {
  1066. "name": "yaozongyou",
  1067. "email": "yaozongyou@vip.qq.com"
  1068. },
  1069. {
  1070. "name": "lewzylu",
  1071. "email": "327874225@qq.com"
  1072. }
  1073. ],
  1074. "description": "PHP SDK for QCloud COS",
  1075. "keywords": [
  1076. "cos",
  1077. "php",
  1078. "qcloud"
  1079. ],
  1080. "support": {
  1081. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  1082. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.1.1"
  1083. },
  1084. "time": "2020-09-27T03:57:55+00:00"
  1085. },
  1086. {
  1087. "name": "qiniu/php-sdk",
  1088. "version": "v7.3.0",
  1089. "source": {
  1090. "type": "git",
  1091. "url": "https://github.com/qiniu/php-sdk.git",
  1092. "reference": "0a461e13b09545b23df361843c6a65fdd3a26426"
  1093. },
  1094. "dist": {
  1095. "type": "zip",
  1096. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/0a461e13b09545b23df361843c6a65fdd3a26426",
  1097. "reference": "0a461e13b09545b23df361843c6a65fdd3a26426",
  1098. "shasum": "",
  1099. "mirrors": [
  1100. {
  1101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1102. "preferred": true
  1103. }
  1104. ]
  1105. },
  1106. "require": {
  1107. "php": ">=5.3.3"
  1108. },
  1109. "require-dev": {
  1110. "phpunit/phpunit": "~4.0",
  1111. "squizlabs/php_codesniffer": "~2.3"
  1112. },
  1113. "type": "library",
  1114. "autoload": {
  1115. "psr-4": {
  1116. "Qiniu\\": "src/Qiniu"
  1117. },
  1118. "files": [
  1119. "src/Qiniu/functions.php"
  1120. ]
  1121. },
  1122. "notification-url": "https://packagist.org/downloads/",
  1123. "license": [
  1124. "MIT"
  1125. ],
  1126. "authors": [
  1127. {
  1128. "name": "Qiniu",
  1129. "email": "sdk@qiniu.com",
  1130. "homepage": "http://www.qiniu.com"
  1131. }
  1132. ],
  1133. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  1134. "homepage": "http://developer.qiniu.com/",
  1135. "keywords": [
  1136. "cloud",
  1137. "qiniu",
  1138. "sdk",
  1139. "storage"
  1140. ],
  1141. "support": {
  1142. "issues": "https://github.com/qiniu/php-sdk/issues",
  1143. "source": "https://github.com/qiniu/php-sdk/tree/v7.3.0"
  1144. },
  1145. "time": "2020-09-24T07:31:29+00:00"
  1146. },
  1147. {
  1148. "name": "ralouphie/getallheaders",
  1149. "version": "3.0.3",
  1150. "source": {
  1151. "type": "git",
  1152. "url": "https://github.com/ralouphie/getallheaders.git",
  1153. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1154. },
  1155. "dist": {
  1156. "type": "zip",
  1157. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1158. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1159. "shasum": "",
  1160. "mirrors": [
  1161. {
  1162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1163. "preferred": true
  1164. }
  1165. ]
  1166. },
  1167. "require": {
  1168. "php": ">=5.6"
  1169. },
  1170. "require-dev": {
  1171. "php-coveralls/php-coveralls": "^2.1",
  1172. "phpunit/phpunit": "^5 || ^6.5"
  1173. },
  1174. "type": "library",
  1175. "autoload": {
  1176. "files": [
  1177. "src/getallheaders.php"
  1178. ]
  1179. },
  1180. "notification-url": "https://packagist.org/downloads/",
  1181. "license": [
  1182. "MIT"
  1183. ],
  1184. "authors": [
  1185. {
  1186. "name": "Ralph Khattar",
  1187. "email": "ralph.khattar@gmail.com"
  1188. }
  1189. ],
  1190. "description": "A polyfill for getallheaders.",
  1191. "support": {
  1192. "issues": "https://github.com/ralouphie/getallheaders/issues",
  1193. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  1194. },
  1195. "time": "2019-03-08T08:55:37+00:00"
  1196. },
  1197. {
  1198. "name": "swiftmailer/swiftmailer",
  1199. "version": "v6.2.3",
  1200. "source": {
  1201. "type": "git",
  1202. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1203. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  1204. },
  1205. "dist": {
  1206. "type": "zip",
  1207. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  1208. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  1209. "shasum": "",
  1210. "mirrors": [
  1211. {
  1212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1213. "preferred": true
  1214. }
  1215. ]
  1216. },
  1217. "require": {
  1218. "egulias/email-validator": "~2.0",
  1219. "php": ">=7.0.0",
  1220. "symfony/polyfill-iconv": "^1.0",
  1221. "symfony/polyfill-intl-idn": "^1.10",
  1222. "symfony/polyfill-mbstring": "^1.0"
  1223. },
  1224. "require-dev": {
  1225. "mockery/mockery": "~0.9.1",
  1226. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  1227. },
  1228. "suggest": {
  1229. "ext-intl": "Needed to support internationalized email addresses",
  1230. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  1231. },
  1232. "type": "library",
  1233. "extra": {
  1234. "branch-alias": {
  1235. "dev-master": "6.2-dev"
  1236. }
  1237. },
  1238. "autoload": {
  1239. "files": [
  1240. "lib/swift_required.php"
  1241. ]
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "MIT"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Chris Corbyn"
  1250. },
  1251. {
  1252. "name": "Fabien Potencier",
  1253. "email": "fabien@symfony.com"
  1254. }
  1255. ],
  1256. "description": "Swiftmailer, free feature-rich PHP mailer",
  1257. "homepage": "https://swiftmailer.symfony.com",
  1258. "keywords": [
  1259. "email",
  1260. "mail",
  1261. "mailer"
  1262. ],
  1263. "support": {
  1264. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  1265. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.3"
  1266. },
  1267. "time": "2019-11-12T09:31:26+00:00"
  1268. },
  1269. {
  1270. "name": "symfony/polyfill-iconv",
  1271. "version": "v1.20.0",
  1272. "source": {
  1273. "type": "git",
  1274. "url": "https://github.com/symfony/polyfill-iconv.git",
  1275. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  1276. },
  1277. "dist": {
  1278. "type": "zip",
  1279. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  1280. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  1281. "shasum": "",
  1282. "mirrors": [
  1283. {
  1284. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1285. "preferred": true
  1286. }
  1287. ]
  1288. },
  1289. "require": {
  1290. "php": ">=7.1"
  1291. },
  1292. "suggest": {
  1293. "ext-iconv": "For best performance"
  1294. },
  1295. "type": "library",
  1296. "extra": {
  1297. "branch-alias": {
  1298. "dev-main": "1.20-dev"
  1299. },
  1300. "thanks": {
  1301. "name": "symfony/polyfill",
  1302. "url": "https://github.com/symfony/polyfill"
  1303. }
  1304. },
  1305. "autoload": {
  1306. "psr-4": {
  1307. "Symfony\\Polyfill\\Iconv\\": ""
  1308. },
  1309. "files": [
  1310. "bootstrap.php"
  1311. ]
  1312. },
  1313. "notification-url": "https://packagist.org/downloads/",
  1314. "license": [
  1315. "MIT"
  1316. ],
  1317. "authors": [
  1318. {
  1319. "name": "Nicolas Grekas",
  1320. "email": "p@tchwork.com"
  1321. },
  1322. {
  1323. "name": "Symfony Community",
  1324. "homepage": "https://symfony.com/contributors"
  1325. }
  1326. ],
  1327. "description": "Symfony polyfill for the Iconv extension",
  1328. "homepage": "https://symfony.com",
  1329. "keywords": [
  1330. "compatibility",
  1331. "iconv",
  1332. "polyfill",
  1333. "portable",
  1334. "shim"
  1335. ],
  1336. "support": {
  1337. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  1338. },
  1339. "funding": [
  1340. {
  1341. "url": "https://symfony.com/sponsor",
  1342. "type": "custom"
  1343. },
  1344. {
  1345. "url": "https://github.com/fabpot",
  1346. "type": "github"
  1347. },
  1348. {
  1349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1350. "type": "tidelift"
  1351. }
  1352. ],
  1353. "time": "2020-10-23T14:02:19+00:00"
  1354. },
  1355. {
  1356. "name": "symfony/polyfill-intl-idn",
  1357. "version": "v1.20.0",
  1358. "source": {
  1359. "type": "git",
  1360. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  1361. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  1362. },
  1363. "dist": {
  1364. "type": "zip",
  1365. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  1366. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  1367. "shasum": "",
  1368. "mirrors": [
  1369. {
  1370. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1371. "preferred": true
  1372. }
  1373. ]
  1374. },
  1375. "require": {
  1376. "php": ">=7.1",
  1377. "symfony/polyfill-intl-normalizer": "^1.10",
  1378. "symfony/polyfill-php72": "^1.10"
  1379. },
  1380. "suggest": {
  1381. "ext-intl": "For best performance"
  1382. },
  1383. "type": "library",
  1384. "extra": {
  1385. "branch-alias": {
  1386. "dev-main": "1.20-dev"
  1387. },
  1388. "thanks": {
  1389. "name": "symfony/polyfill",
  1390. "url": "https://github.com/symfony/polyfill"
  1391. }
  1392. },
  1393. "autoload": {
  1394. "psr-4": {
  1395. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  1396. },
  1397. "files": [
  1398. "bootstrap.php"
  1399. ]
  1400. },
  1401. "notification-url": "https://packagist.org/downloads/",
  1402. "license": [
  1403. "MIT"
  1404. ],
  1405. "authors": [
  1406. {
  1407. "name": "Laurent Bassin",
  1408. "email": "laurent@bassin.info"
  1409. },
  1410. {
  1411. "name": "Trevor Rowbotham",
  1412. "email": "trevor.rowbotham@pm.me"
  1413. },
  1414. {
  1415. "name": "Symfony Community",
  1416. "homepage": "https://symfony.com/contributors"
  1417. }
  1418. ],
  1419. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  1420. "homepage": "https://symfony.com",
  1421. "keywords": [
  1422. "compatibility",
  1423. "idn",
  1424. "intl",
  1425. "polyfill",
  1426. "portable",
  1427. "shim"
  1428. ],
  1429. "support": {
  1430. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  1431. },
  1432. "funding": [
  1433. {
  1434. "url": "https://symfony.com/sponsor",
  1435. "type": "custom"
  1436. },
  1437. {
  1438. "url": "https://github.com/fabpot",
  1439. "type": "github"
  1440. },
  1441. {
  1442. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1443. "type": "tidelift"
  1444. }
  1445. ],
  1446. "time": "2020-10-23T14:02:19+00:00"
  1447. },
  1448. {
  1449. "name": "symfony/polyfill-intl-normalizer",
  1450. "version": "v1.20.0",
  1451. "source": {
  1452. "type": "git",
  1453. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1454. "reference": "727d1096295d807c309fb01a851577302394c897"
  1455. },
  1456. "dist": {
  1457. "type": "zip",
  1458. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  1459. "reference": "727d1096295d807c309fb01a851577302394c897",
  1460. "shasum": "",
  1461. "mirrors": [
  1462. {
  1463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1464. "preferred": true
  1465. }
  1466. ]
  1467. },
  1468. "require": {
  1469. "php": ">=7.1"
  1470. },
  1471. "suggest": {
  1472. "ext-intl": "For best performance"
  1473. },
  1474. "type": "library",
  1475. "extra": {
  1476. "branch-alias": {
  1477. "dev-main": "1.20-dev"
  1478. },
  1479. "thanks": {
  1480. "name": "symfony/polyfill",
  1481. "url": "https://github.com/symfony/polyfill"
  1482. }
  1483. },
  1484. "autoload": {
  1485. "psr-4": {
  1486. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1487. },
  1488. "files": [
  1489. "bootstrap.php"
  1490. ],
  1491. "classmap": [
  1492. "Resources/stubs"
  1493. ]
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "Nicolas Grekas",
  1502. "email": "p@tchwork.com"
  1503. },
  1504. {
  1505. "name": "Symfony Community",
  1506. "homepage": "https://symfony.com/contributors"
  1507. }
  1508. ],
  1509. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1510. "homepage": "https://symfony.com",
  1511. "keywords": [
  1512. "compatibility",
  1513. "intl",
  1514. "normalizer",
  1515. "polyfill",
  1516. "portable",
  1517. "shim"
  1518. ],
  1519. "support": {
  1520. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  1521. },
  1522. "funding": [
  1523. {
  1524. "url": "https://symfony.com/sponsor",
  1525. "type": "custom"
  1526. },
  1527. {
  1528. "url": "https://github.com/fabpot",
  1529. "type": "github"
  1530. },
  1531. {
  1532. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1533. "type": "tidelift"
  1534. }
  1535. ],
  1536. "time": "2020-10-23T14:02:19+00:00"
  1537. },
  1538. {
  1539. "name": "symfony/polyfill-mbstring",
  1540. "version": "v1.20.0",
  1541. "source": {
  1542. "type": "git",
  1543. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1544. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  1545. },
  1546. "dist": {
  1547. "type": "zip",
  1548. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  1549. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  1550. "shasum": "",
  1551. "mirrors": [
  1552. {
  1553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1554. "preferred": true
  1555. }
  1556. ]
  1557. },
  1558. "require": {
  1559. "php": ">=7.1"
  1560. },
  1561. "suggest": {
  1562. "ext-mbstring": "For best performance"
  1563. },
  1564. "type": "library",
  1565. "extra": {
  1566. "branch-alias": {
  1567. "dev-main": "1.20-dev"
  1568. },
  1569. "thanks": {
  1570. "name": "symfony/polyfill",
  1571. "url": "https://github.com/symfony/polyfill"
  1572. }
  1573. },
  1574. "autoload": {
  1575. "psr-4": {
  1576. "Symfony\\Polyfill\\Mbstring\\": ""
  1577. },
  1578. "files": [
  1579. "bootstrap.php"
  1580. ]
  1581. },
  1582. "notification-url": "https://packagist.org/downloads/",
  1583. "license": [
  1584. "MIT"
  1585. ],
  1586. "authors": [
  1587. {
  1588. "name": "Nicolas Grekas",
  1589. "email": "p@tchwork.com"
  1590. },
  1591. {
  1592. "name": "Symfony Community",
  1593. "homepage": "https://symfony.com/contributors"
  1594. }
  1595. ],
  1596. "description": "Symfony polyfill for the Mbstring extension",
  1597. "homepage": "https://symfony.com",
  1598. "keywords": [
  1599. "compatibility",
  1600. "mbstring",
  1601. "polyfill",
  1602. "portable",
  1603. "shim"
  1604. ],
  1605. "support": {
  1606. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  1607. },
  1608. "funding": [
  1609. {
  1610. "url": "https://symfony.com/sponsor",
  1611. "type": "custom"
  1612. },
  1613. {
  1614. "url": "https://github.com/fabpot",
  1615. "type": "github"
  1616. },
  1617. {
  1618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1619. "type": "tidelift"
  1620. }
  1621. ],
  1622. "time": "2020-10-23T14:02:19+00:00"
  1623. },
  1624. {
  1625. "name": "symfony/polyfill-php72",
  1626. "version": "v1.20.0",
  1627. "source": {
  1628. "type": "git",
  1629. "url": "https://github.com/symfony/polyfill-php72.git",
  1630. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  1631. },
  1632. "dist": {
  1633. "type": "zip",
  1634. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  1635. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  1636. "shasum": "",
  1637. "mirrors": [
  1638. {
  1639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1640. "preferred": true
  1641. }
  1642. ]
  1643. },
  1644. "require": {
  1645. "php": ">=7.1"
  1646. },
  1647. "type": "library",
  1648. "extra": {
  1649. "branch-alias": {
  1650. "dev-main": "1.20-dev"
  1651. },
  1652. "thanks": {
  1653. "name": "symfony/polyfill",
  1654. "url": "https://github.com/symfony/polyfill"
  1655. }
  1656. },
  1657. "autoload": {
  1658. "psr-4": {
  1659. "Symfony\\Polyfill\\Php72\\": ""
  1660. },
  1661. "files": [
  1662. "bootstrap.php"
  1663. ]
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "Nicolas Grekas",
  1672. "email": "p@tchwork.com"
  1673. },
  1674. {
  1675. "name": "Symfony Community",
  1676. "homepage": "https://symfony.com/contributors"
  1677. }
  1678. ],
  1679. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1680. "homepage": "https://symfony.com",
  1681. "keywords": [
  1682. "compatibility",
  1683. "polyfill",
  1684. "portable",
  1685. "shim"
  1686. ],
  1687. "support": {
  1688. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  1689. },
  1690. "funding": [
  1691. {
  1692. "url": "https://symfony.com/sponsor",
  1693. "type": "custom"
  1694. },
  1695. {
  1696. "url": "https://github.com/fabpot",
  1697. "type": "github"
  1698. },
  1699. {
  1700. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1701. "type": "tidelift"
  1702. }
  1703. ],
  1704. "time": "2020-10-23T14:02:19+00:00"
  1705. },
  1706. {
  1707. "name": "yiisoft/yii2",
  1708. "version": "2.0.38",
  1709. "source": {
  1710. "type": "git",
  1711. "url": "https://github.com/yiisoft/yii2-framework.git",
  1712. "reference": "fd01e747cc66a049ec105048f0ab8dfbdf60bf4b"
  1713. },
  1714. "dist": {
  1715. "type": "zip",
  1716. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/fd01e747cc66a049ec105048f0ab8dfbdf60bf4b",
  1717. "reference": "fd01e747cc66a049ec105048f0ab8dfbdf60bf4b",
  1718. "shasum": "",
  1719. "mirrors": [
  1720. {
  1721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1722. "preferred": true
  1723. }
  1724. ]
  1725. },
  1726. "require": {
  1727. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  1728. "bower-asset/jquery": "3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  1729. "bower-asset/punycode": "1.3.*",
  1730. "bower-asset/yii2-pjax": "~2.0.1",
  1731. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  1732. "ext-ctype": "*",
  1733. "ext-mbstring": "*",
  1734. "ezyang/htmlpurifier": "~4.6",
  1735. "lib-pcre": "*",
  1736. "php": ">=5.4.0",
  1737. "yiisoft/yii2-composer": "~2.0.4"
  1738. },
  1739. "bin": [
  1740. "yii"
  1741. ],
  1742. "type": "library",
  1743. "extra": {
  1744. "branch-alias": {
  1745. "dev-master": "2.0.x-dev"
  1746. }
  1747. },
  1748. "autoload": {
  1749. "psr-4": {
  1750. "yii\\": ""
  1751. }
  1752. },
  1753. "notification-url": "https://packagist.org/downloads/",
  1754. "license": [
  1755. "BSD-3-Clause"
  1756. ],
  1757. "authors": [
  1758. {
  1759. "name": "Qiang Xue",
  1760. "email": "qiang.xue@gmail.com",
  1761. "homepage": "http://www.yiiframework.com/",
  1762. "role": "Founder and project lead"
  1763. },
  1764. {
  1765. "name": "Alexander Makarov",
  1766. "email": "sam@rmcreative.ru",
  1767. "homepage": "http://rmcreative.ru/",
  1768. "role": "Core framework development"
  1769. },
  1770. {
  1771. "name": "Maurizio Domba",
  1772. "homepage": "http://mdomba.info/",
  1773. "role": "Core framework development"
  1774. },
  1775. {
  1776. "name": "Carsten Brandt",
  1777. "email": "mail@cebe.cc",
  1778. "homepage": "http://cebe.cc/",
  1779. "role": "Core framework development"
  1780. },
  1781. {
  1782. "name": "Timur Ruziev",
  1783. "email": "resurtm@gmail.com",
  1784. "homepage": "http://resurtm.com/",
  1785. "role": "Core framework development"
  1786. },
  1787. {
  1788. "name": "Paul Klimov",
  1789. "email": "klimov.paul@gmail.com",
  1790. "role": "Core framework development"
  1791. },
  1792. {
  1793. "name": "Dmitry Naumenko",
  1794. "email": "d.naumenko.a@gmail.com",
  1795. "role": "Core framework development"
  1796. },
  1797. {
  1798. "name": "Boudewijn Vahrmeijer",
  1799. "email": "info@dynasource.eu",
  1800. "homepage": "http://dynasource.eu",
  1801. "role": "Core framework development"
  1802. }
  1803. ],
  1804. "description": "Yii PHP Framework Version 2",
  1805. "homepage": "http://www.yiiframework.com/",
  1806. "keywords": [
  1807. "framework",
  1808. "yii2"
  1809. ],
  1810. "support": {
  1811. "forum": "http://www.yiiframework.com/forum/",
  1812. "irc": "irc://irc.freenode.net/yii",
  1813. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  1814. "source": "https://github.com/yiisoft/yii2",
  1815. "wiki": "http://www.yiiframework.com/wiki/"
  1816. },
  1817. "funding": [
  1818. {
  1819. "url": "https://github.com/yiisoft",
  1820. "type": "github"
  1821. },
  1822. {
  1823. "url": "https://opencollective.com/yiisoft",
  1824. "type": "open_collective"
  1825. },
  1826. {
  1827. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2",
  1828. "type": "tidelift"
  1829. }
  1830. ],
  1831. "time": "2020-09-14T21:52:10+00:00"
  1832. },
  1833. {
  1834. "name": "yiisoft/yii2-bootstrap",
  1835. "version": "2.0.10",
  1836. "source": {
  1837. "type": "git",
  1838. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  1839. "reference": "073c9ab0a4eb71f2485d84c96a1967130300d8fc"
  1840. },
  1841. "dist": {
  1842. "type": "zip",
  1843. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/073c9ab0a4eb71f2485d84c96a1967130300d8fc",
  1844. "reference": "073c9ab0a4eb71f2485d84c96a1967130300d8fc",
  1845. "shasum": "",
  1846. "mirrors": [
  1847. {
  1848. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1849. "preferred": true
  1850. }
  1851. ]
  1852. },
  1853. "require": {
  1854. "bower-asset/bootstrap": "3.4.* | 3.3.* | 3.2.* | 3.1.*",
  1855. "yiisoft/yii2": "~2.0.6"
  1856. },
  1857. "require-dev": {
  1858. "phpunit/phpunit": "<7"
  1859. },
  1860. "type": "yii2-extension",
  1861. "extra": {
  1862. "branch-alias": {
  1863. "dev-master": "2.0.x-dev"
  1864. }
  1865. },
  1866. "autoload": {
  1867. "psr-4": {
  1868. "yii\\bootstrap\\": "src"
  1869. }
  1870. },
  1871. "notification-url": "https://packagist.org/downloads/",
  1872. "license": [
  1873. "BSD-3-Clause"
  1874. ],
  1875. "authors": [
  1876. {
  1877. "name": "Paul Klimov",
  1878. "email": "klimov.paul@gmail.com"
  1879. },
  1880. {
  1881. "name": "Alexander Makarov",
  1882. "email": "sam@rmcreative.ru",
  1883. "homepage": "http://rmcreative.ru/"
  1884. },
  1885. {
  1886. "name": "Antonio Ramirez",
  1887. "email": "amigo.cobos@gmail.com"
  1888. },
  1889. {
  1890. "name": "Qiang Xue",
  1891. "email": "qiang.xue@gmail.com",
  1892. "homepage": "http://www.yiiframework.com/"
  1893. }
  1894. ],
  1895. "description": "The Twitter Bootstrap extension for the Yii framework",
  1896. "keywords": [
  1897. "bootstrap",
  1898. "yii2"
  1899. ],
  1900. "support": {
  1901. "forum": "http://www.yiiframework.com/forum/",
  1902. "irc": "irc://irc.freenode.net/yii",
  1903. "issues": "https://github.com/yiisoft/yii2-bootstrap/issues",
  1904. "source": "https://github.com/yiisoft/yii2-bootstrap",
  1905. "wiki": "http://www.yiiframework.com/wiki/"
  1906. },
  1907. "time": "2019-04-23T13:18:43+00:00"
  1908. },
  1909. {
  1910. "name": "yiisoft/yii2-composer",
  1911. "version": "2.0.10",
  1912. "source": {
  1913. "type": "git",
  1914. "url": "https://github.com/yiisoft/yii2-composer.git",
  1915. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510"
  1916. },
  1917. "dist": {
  1918. "type": "zip",
  1919. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/94bb3f66e779e2774f8776d6e1bdeab402940510",
  1920. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510",
  1921. "shasum": "",
  1922. "mirrors": [
  1923. {
  1924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1925. "preferred": true
  1926. }
  1927. ]
  1928. },
  1929. "require": {
  1930. "composer-plugin-api": "^1.0 | ^2.0"
  1931. },
  1932. "require-dev": {
  1933. "composer/composer": "^1.0 | ^2.0@dev",
  1934. "phpunit/phpunit": "<7"
  1935. },
  1936. "type": "composer-plugin",
  1937. "extra": {
  1938. "class": "yii\\composer\\Plugin",
  1939. "branch-alias": {
  1940. "dev-master": "2.0.x-dev"
  1941. }
  1942. },
  1943. "autoload": {
  1944. "psr-4": {
  1945. "yii\\composer\\": ""
  1946. }
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "BSD-3-Clause"
  1951. ],
  1952. "authors": [
  1953. {
  1954. "name": "Qiang Xue",
  1955. "email": "qiang.xue@gmail.com"
  1956. },
  1957. {
  1958. "name": "Carsten Brandt",
  1959. "email": "mail@cebe.cc"
  1960. }
  1961. ],
  1962. "description": "The composer plugin for Yii extension installer",
  1963. "keywords": [
  1964. "composer",
  1965. "extension installer",
  1966. "yii2"
  1967. ],
  1968. "support": {
  1969. "forum": "http://www.yiiframework.com/forum/",
  1970. "irc": "irc://irc.freenode.net/yii",
  1971. "issues": "https://github.com/yiisoft/yii2-composer/issues",
  1972. "source": "https://github.com/yiisoft/yii2-composer",
  1973. "wiki": "http://www.yiiframework.com/wiki/"
  1974. },
  1975. "funding": [
  1976. {
  1977. "url": "https://github.com/yiisoft",
  1978. "type": "github"
  1979. },
  1980. {
  1981. "url": "https://opencollective.com/yiisoft",
  1982. "type": "open_collective"
  1983. },
  1984. {
  1985. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-composer",
  1986. "type": "tidelift"
  1987. }
  1988. ],
  1989. "time": "2020-06-24T00:04:01+00:00"
  1990. },
  1991. {
  1992. "name": "yiisoft/yii2-imagine",
  1993. "version": "2.2.0",
  1994. "source": {
  1995. "type": "git",
  1996. "url": "https://github.com/yiisoft/yii2-imagine.git",
  1997. "reference": "8637f63ee2eb81b7fe1f4c0e16cc8cc474a68bae"
  1998. },
  1999. "dist": {
  2000. "type": "zip",
  2001. "url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/8637f63ee2eb81b7fe1f4c0e16cc8cc474a68bae",
  2002. "reference": "8637f63ee2eb81b7fe1f4c0e16cc8cc474a68bae",
  2003. "shasum": "",
  2004. "mirrors": [
  2005. {
  2006. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2007. "preferred": true
  2008. }
  2009. ]
  2010. },
  2011. "require": {
  2012. "imagine/imagine": "^0.6 | ^0.7 | ^1.0",
  2013. "yiisoft/yii2": "~2.0.0"
  2014. },
  2015. "require-dev": {
  2016. "phpunit/phpunit": "<7"
  2017. },
  2018. "type": "yii2-extension",
  2019. "extra": {
  2020. "branch-alias": {
  2021. "dev-master": "2.0.x-dev"
  2022. }
  2023. },
  2024. "autoload": {
  2025. "psr-4": {
  2026. "yii\\imagine\\": "src"
  2027. }
  2028. },
  2029. "notification-url": "https://packagist.org/downloads/",
  2030. "license": [
  2031. "BSD-3-Clause"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "Antonio Ramirez",
  2036. "email": "amigo.cobos@gmail.com"
  2037. }
  2038. ],
  2039. "description": "The Imagine integration for the Yii framework",
  2040. "keywords": [
  2041. "helper",
  2042. "image",
  2043. "imagine",
  2044. "yii2"
  2045. ],
  2046. "support": {
  2047. "forum": "http://www.yiiframework.com/forum/",
  2048. "irc": "irc://irc.freenode.net/yii",
  2049. "issues": "https://github.com/yiisoft/yii2-imagine/issues",
  2050. "source": "https://github.com/yiisoft/yii2-imagine",
  2051. "wiki": "http://www.yiiframework.com/wiki/"
  2052. },
  2053. "time": "2019-06-04T12:38:50+00:00"
  2054. },
  2055. {
  2056. "name": "yiisoft/yii2-swiftmailer",
  2057. "version": "2.1.2",
  2058. "source": {
  2059. "type": "git",
  2060. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  2061. "reference": "09659a55959f9e64b8178d842b64a9ffae42b994"
  2062. },
  2063. "dist": {
  2064. "type": "zip",
  2065. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/09659a55959f9e64b8178d842b64a9ffae42b994",
  2066. "reference": "09659a55959f9e64b8178d842b64a9ffae42b994",
  2067. "shasum": "",
  2068. "mirrors": [
  2069. {
  2070. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2071. "preferred": true
  2072. }
  2073. ]
  2074. },
  2075. "require": {
  2076. "swiftmailer/swiftmailer": "~6.0",
  2077. "yiisoft/yii2": ">=2.0.4"
  2078. },
  2079. "type": "yii2-extension",
  2080. "extra": {
  2081. "branch-alias": {
  2082. "dev-master": "2.1.x-dev"
  2083. }
  2084. },
  2085. "autoload": {
  2086. "psr-4": {
  2087. "yii\\swiftmailer\\": "src"
  2088. }
  2089. },
  2090. "notification-url": "https://packagist.org/downloads/",
  2091. "license": [
  2092. "BSD-3-Clause"
  2093. ],
  2094. "authors": [
  2095. {
  2096. "name": "Paul Klimov",
  2097. "email": "klimov.paul@gmail.com"
  2098. }
  2099. ],
  2100. "description": "The SwiftMailer integration for the Yii framework",
  2101. "keywords": [
  2102. "email",
  2103. "mail",
  2104. "mailer",
  2105. "swift",
  2106. "swiftmailer",
  2107. "yii2"
  2108. ],
  2109. "support": {
  2110. "forum": "http://www.yiiframework.com/forum/",
  2111. "irc": "irc://irc.freenode.net/yii",
  2112. "issues": "https://github.com/yiisoft/yii2-swiftmailer/issues",
  2113. "source": "https://github.com/yiisoft/yii2-swiftmailer",
  2114. "wiki": "http://www.yiiframework.com/wiki/"
  2115. },
  2116. "time": "2018-09-23T22:00:47+00:00"
  2117. }
  2118. ],
  2119. "packages-dev": [
  2120. {
  2121. "name": "behat/gherkin",
  2122. "version": "v4.6.2",
  2123. "source": {
  2124. "type": "git",
  2125. "url": "https://github.com/Behat/Gherkin.git",
  2126. "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31"
  2127. },
  2128. "dist": {
  2129. "type": "zip",
  2130. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/51ac4500c4dc30cbaaabcd2f25694299df666a31",
  2131. "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31",
  2132. "shasum": "",
  2133. "mirrors": [
  2134. {
  2135. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2136. "preferred": true
  2137. }
  2138. ]
  2139. },
  2140. "require": {
  2141. "php": ">=5.3.1"
  2142. },
  2143. "require-dev": {
  2144. "phpunit/phpunit": "~4.5|~5",
  2145. "symfony/phpunit-bridge": "~2.7|~3|~4",
  2146. "symfony/yaml": "~2.3|~3|~4"
  2147. },
  2148. "suggest": {
  2149. "symfony/yaml": "If you want to parse features, represented in YAML files"
  2150. },
  2151. "type": "library",
  2152. "extra": {
  2153. "branch-alias": {
  2154. "dev-master": "4.4-dev"
  2155. }
  2156. },
  2157. "autoload": {
  2158. "psr-0": {
  2159. "Behat\\Gherkin": "src/"
  2160. }
  2161. },
  2162. "notification-url": "https://packagist.org/downloads/",
  2163. "license": [
  2164. "MIT"
  2165. ],
  2166. "authors": [
  2167. {
  2168. "name": "Konstantin Kudryashov",
  2169. "email": "ever.zet@gmail.com",
  2170. "homepage": "http://everzet.com"
  2171. }
  2172. ],
  2173. "description": "Gherkin DSL parser for PHP 5.3",
  2174. "homepage": "http://behat.org/",
  2175. "keywords": [
  2176. "BDD",
  2177. "Behat",
  2178. "Cucumber",
  2179. "DSL",
  2180. "gherkin",
  2181. "parser"
  2182. ],
  2183. "support": {
  2184. "issues": "https://github.com/Behat/Gherkin/issues",
  2185. "source": "https://github.com/Behat/Gherkin/tree/master"
  2186. },
  2187. "time": "2020-03-17T14:03:26+00:00"
  2188. },
  2189. {
  2190. "name": "bower-asset/typeahead.js",
  2191. "version": "v0.11.1",
  2192. "source": {
  2193. "type": "git",
  2194. "url": "git@github.com:twitter/typeahead.js.git",
  2195. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  2196. },
  2197. "dist": {
  2198. "type": "zip",
  2199. "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
  2200. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  2201. },
  2202. "require": {
  2203. "bower-asset/jquery": ">=1.7"
  2204. },
  2205. "type": "bower-asset"
  2206. },
  2207. {
  2208. "name": "codeception/base",
  2209. "version": "2.5.6",
  2210. "source": {
  2211. "type": "git",
  2212. "url": "https://github.com/Codeception/base.git",
  2213. "reference": "aace5bab5593c93d8473b620f70754135a1eb4f0"
  2214. },
  2215. "dist": {
  2216. "type": "zip",
  2217. "url": "https://api.github.com/repos/Codeception/base/zipball/aace5bab5593c93d8473b620f70754135a1eb4f0",
  2218. "reference": "aace5bab5593c93d8473b620f70754135a1eb4f0",
  2219. "shasum": "",
  2220. "mirrors": [
  2221. {
  2222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2223. "preferred": true
  2224. }
  2225. ]
  2226. },
  2227. "require": {
  2228. "behat/gherkin": "^4.4.0",
  2229. "codeception/phpunit-wrapper": "^6.0.9|^7.0.6",
  2230. "codeception/stub": "^2.0",
  2231. "ext-curl": "*",
  2232. "ext-json": "*",
  2233. "ext-mbstring": "*",
  2234. "guzzlehttp/psr7": "~1.0",
  2235. "php": ">=5.6.0 <8.0",
  2236. "symfony/browser-kit": ">=2.7 <5.0",
  2237. "symfony/console": ">=2.7 <5.0",
  2238. "symfony/css-selector": ">=2.7 <5.0",
  2239. "symfony/dom-crawler": ">=2.7 <5.0",
  2240. "symfony/event-dispatcher": ">=2.7 <5.0",
  2241. "symfony/finder": ">=2.7 <5.0",
  2242. "symfony/yaml": ">=2.7 <5.0"
  2243. },
  2244. "require-dev": {
  2245. "codeception/specify": "~0.3",
  2246. "facebook/graph-sdk": "~5.3",
  2247. "flow/jsonpath": "~0.2",
  2248. "monolog/monolog": "~1.8",
  2249. "pda/pheanstalk": "~3.0",
  2250. "php-amqplib/php-amqplib": "~2.4",
  2251. "predis/predis": "^1.0",
  2252. "squizlabs/php_codesniffer": "~2.0",
  2253. "symfony/process": ">=2.7 <5.0",
  2254. "vlucas/phpdotenv": "^3.0"
  2255. },
  2256. "suggest": {
  2257. "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
  2258. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
  2259. "codeception/specify": "BDD-style code blocks",
  2260. "codeception/verify": "BDD-style assertions",
  2261. "flow/jsonpath": "For using JSONPath in REST module",
  2262. "league/factory-muffin": "For DataFactory module",
  2263. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  2264. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  2265. "stecman/symfony-console-completion": "For BASH autocompletion",
  2266. "symfony/phpunit-bridge": "For phpunit-bridge support"
  2267. },
  2268. "bin": [
  2269. "codecept"
  2270. ],
  2271. "type": "library",
  2272. "extra": {
  2273. "branch-alias": []
  2274. },
  2275. "autoload": {
  2276. "psr-4": {
  2277. "Codeception\\": "src/Codeception",
  2278. "Codeception\\Extension\\": "ext"
  2279. }
  2280. },
  2281. "notification-url": "https://packagist.org/downloads/",
  2282. "license": [
  2283. "MIT"
  2284. ],
  2285. "authors": [
  2286. {
  2287. "name": "Michael Bodnarchuk",
  2288. "email": "davert@mail.ua",
  2289. "homepage": "http://codegyre.com"
  2290. }
  2291. ],
  2292. "description": "BDD-style testing framework",
  2293. "homepage": "http://codeception.com/",
  2294. "keywords": [
  2295. "BDD",
  2296. "TDD",
  2297. "acceptance testing",
  2298. "functional testing",
  2299. "unit testing"
  2300. ],
  2301. "support": {
  2302. "source": "https://github.com/Codeception/base/tree/2.5.6"
  2303. },
  2304. "abandoned": true,
  2305. "time": "2019-04-24T11:36:34+00:00"
  2306. },
  2307. {
  2308. "name": "codeception/phpunit-wrapper",
  2309. "version": "7.8.1",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  2313. "reference": "bc6f37d770ec00c4c7c78a1cac2b8ac0f9c9eec5"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/bc6f37d770ec00c4c7c78a1cac2b8ac0f9c9eec5",
  2318. "reference": "bc6f37d770ec00c4c7c78a1cac2b8ac0f9c9eec5",
  2319. "shasum": "",
  2320. "mirrors": [
  2321. {
  2322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2323. "preferred": true
  2324. }
  2325. ]
  2326. },
  2327. "require": {
  2328. "phpunit/php-code-coverage": "^6.0",
  2329. "phpunit/phpunit": "7.5.*",
  2330. "sebastian/comparator": "^3.0",
  2331. "sebastian/diff": "^3.0"
  2332. },
  2333. "require-dev": {
  2334. "codeception/specify": "*",
  2335. "vlucas/phpdotenv": "^3.0"
  2336. },
  2337. "type": "library",
  2338. "autoload": {
  2339. "psr-4": {
  2340. "Codeception\\PHPUnit\\": "src/"
  2341. }
  2342. },
  2343. "notification-url": "https://packagist.org/downloads/",
  2344. "license": [
  2345. "MIT"
  2346. ],
  2347. "authors": [
  2348. {
  2349. "name": "Davert",
  2350. "email": "davert.php@resend.cc"
  2351. }
  2352. ],
  2353. "description": "PHPUnit classes used by Codeception",
  2354. "support": {
  2355. "issues": "https://github.com/Codeception/phpunit-wrapper/issues",
  2356. "source": "https://github.com/Codeception/phpunit-wrapper/tree/7.8.1"
  2357. },
  2358. "time": "2020-10-11T18:23:48+00:00"
  2359. },
  2360. {
  2361. "name": "codeception/stub",
  2362. "version": "2.1.0",
  2363. "source": {
  2364. "type": "git",
  2365. "url": "https://github.com/Codeception/Stub.git",
  2366. "reference": "853657f988942f7afb69becf3fd0059f192c705a"
  2367. },
  2368. "dist": {
  2369. "type": "zip",
  2370. "url": "https://api.github.com/repos/Codeception/Stub/zipball/853657f988942f7afb69becf3fd0059f192c705a",
  2371. "reference": "853657f988942f7afb69becf3fd0059f192c705a",
  2372. "shasum": "",
  2373. "mirrors": [
  2374. {
  2375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2376. "preferred": true
  2377. }
  2378. ]
  2379. },
  2380. "require": {
  2381. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3"
  2382. },
  2383. "type": "library",
  2384. "autoload": {
  2385. "psr-4": {
  2386. "Codeception\\": "src/"
  2387. }
  2388. },
  2389. "notification-url": "https://packagist.org/downloads/",
  2390. "license": [
  2391. "MIT"
  2392. ],
  2393. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  2394. "support": {
  2395. "issues": "https://github.com/Codeception/Stub/issues",
  2396. "source": "https://github.com/Codeception/Stub/tree/master"
  2397. },
  2398. "time": "2019-03-02T15:35:10+00:00"
  2399. },
  2400. {
  2401. "name": "codeception/verify",
  2402. "version": "0.3.3",
  2403. "source": {
  2404. "type": "git",
  2405. "url": "https://github.com/Codeception/Verify.git",
  2406. "reference": "5d649dda453cd814dadc4bb053060cd2c6bb4b4c"
  2407. },
  2408. "dist": {
  2409. "type": "zip",
  2410. "url": "https://api.github.com/repos/Codeception/Verify/zipball/5d649dda453cd814dadc4bb053060cd2c6bb4b4c",
  2411. "reference": "5d649dda453cd814dadc4bb053060cd2c6bb4b4c",
  2412. "shasum": "",
  2413. "mirrors": [
  2414. {
  2415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2416. "preferred": true
  2417. }
  2418. ]
  2419. },
  2420. "require-dev": {
  2421. "phpunit/phpunit": "~4.0"
  2422. },
  2423. "type": "library",
  2424. "autoload": {
  2425. "files": [
  2426. "src/Codeception/function.php"
  2427. ]
  2428. },
  2429. "notification-url": "https://packagist.org/downloads/",
  2430. "license": [
  2431. "MIT"
  2432. ],
  2433. "authors": [
  2434. {
  2435. "name": "Michael Bodnarchuk",
  2436. "email": "davert.php@mailican.com"
  2437. }
  2438. ],
  2439. "description": "BDD assertion library for PHPUnit",
  2440. "support": {
  2441. "issues": "https://github.com/Codeception/Verify/issues",
  2442. "source": "https://github.com/Codeception/Verify/tree/master"
  2443. },
  2444. "time": "2017-01-09T10:58:51+00:00"
  2445. },
  2446. {
  2447. "name": "doctrine/instantiator",
  2448. "version": "1.3.1",
  2449. "source": {
  2450. "type": "git",
  2451. "url": "https://github.com/doctrine/instantiator.git",
  2452. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  2453. },
  2454. "dist": {
  2455. "type": "zip",
  2456. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  2457. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  2458. "shasum": "",
  2459. "mirrors": [
  2460. {
  2461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2462. "preferred": true
  2463. }
  2464. ]
  2465. },
  2466. "require": {
  2467. "php": "^7.1 || ^8.0"
  2468. },
  2469. "require-dev": {
  2470. "doctrine/coding-standard": "^6.0",
  2471. "ext-pdo": "*",
  2472. "ext-phar": "*",
  2473. "phpbench/phpbench": "^0.13",
  2474. "phpstan/phpstan-phpunit": "^0.11",
  2475. "phpstan/phpstan-shim": "^0.11",
  2476. "phpunit/phpunit": "^7.0"
  2477. },
  2478. "type": "library",
  2479. "extra": {
  2480. "branch-alias": {
  2481. "dev-master": "1.2.x-dev"
  2482. }
  2483. },
  2484. "autoload": {
  2485. "psr-4": {
  2486. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2487. }
  2488. },
  2489. "notification-url": "https://packagist.org/downloads/",
  2490. "license": [
  2491. "MIT"
  2492. ],
  2493. "authors": [
  2494. {
  2495. "name": "Marco Pivetta",
  2496. "email": "ocramius@gmail.com",
  2497. "homepage": "http://ocramius.github.com/"
  2498. }
  2499. ],
  2500. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2501. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  2502. "keywords": [
  2503. "constructor",
  2504. "instantiate"
  2505. ],
  2506. "support": {
  2507. "issues": "https://github.com/doctrine/instantiator/issues",
  2508. "source": "https://github.com/doctrine/instantiator/tree/1.3.x"
  2509. },
  2510. "funding": [
  2511. {
  2512. "url": "https://www.doctrine-project.org/sponsorship.html",
  2513. "type": "custom"
  2514. },
  2515. {
  2516. "url": "https://www.patreon.com/phpdoctrine",
  2517. "type": "patreon"
  2518. },
  2519. {
  2520. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  2521. "type": "tidelift"
  2522. }
  2523. ],
  2524. "time": "2020-05-29T17:27:14+00:00"
  2525. },
  2526. {
  2527. "name": "fzaninotto/faker",
  2528. "version": "v1.9.1",
  2529. "source": {
  2530. "type": "git",
  2531. "url": "https://github.com/fzaninotto/Faker.git",
  2532. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  2533. },
  2534. "dist": {
  2535. "type": "zip",
  2536. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  2537. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  2538. "shasum": "",
  2539. "mirrors": [
  2540. {
  2541. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2542. "preferred": true
  2543. }
  2544. ]
  2545. },
  2546. "require": {
  2547. "php": "^5.3.3 || ^7.0"
  2548. },
  2549. "require-dev": {
  2550. "ext-intl": "*",
  2551. "phpunit/phpunit": "^4.8.35 || ^5.7",
  2552. "squizlabs/php_codesniffer": "^2.9.2"
  2553. },
  2554. "type": "library",
  2555. "extra": {
  2556. "branch-alias": {
  2557. "dev-master": "1.9-dev"
  2558. }
  2559. },
  2560. "autoload": {
  2561. "psr-4": {
  2562. "Faker\\": "src/Faker/"
  2563. }
  2564. },
  2565. "notification-url": "https://packagist.org/downloads/",
  2566. "license": [
  2567. "MIT"
  2568. ],
  2569. "authors": [
  2570. {
  2571. "name": "François Zaninotto"
  2572. }
  2573. ],
  2574. "description": "Faker is a PHP library that generates fake data for you.",
  2575. "keywords": [
  2576. "data",
  2577. "faker",
  2578. "fixtures"
  2579. ],
  2580. "support": {
  2581. "issues": "https://github.com/fzaninotto/Faker/issues",
  2582. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.1"
  2583. },
  2584. "abandoned": true,
  2585. "time": "2019-12-12T13:22:17+00:00"
  2586. },
  2587. {
  2588. "name": "myclabs/deep-copy",
  2589. "version": "1.10.1",
  2590. "source": {
  2591. "type": "git",
  2592. "url": "https://github.com/myclabs/DeepCopy.git",
  2593. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  2594. },
  2595. "dist": {
  2596. "type": "zip",
  2597. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  2598. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  2599. "shasum": "",
  2600. "mirrors": [
  2601. {
  2602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2603. "preferred": true
  2604. }
  2605. ]
  2606. },
  2607. "require": {
  2608. "php": "^7.1 || ^8.0"
  2609. },
  2610. "replace": {
  2611. "myclabs/deep-copy": "self.version"
  2612. },
  2613. "require-dev": {
  2614. "doctrine/collections": "^1.0",
  2615. "doctrine/common": "^2.6",
  2616. "phpunit/phpunit": "^7.1"
  2617. },
  2618. "type": "library",
  2619. "autoload": {
  2620. "psr-4": {
  2621. "DeepCopy\\": "src/DeepCopy/"
  2622. },
  2623. "files": [
  2624. "src/DeepCopy/deep_copy.php"
  2625. ]
  2626. },
  2627. "notification-url": "https://packagist.org/downloads/",
  2628. "license": [
  2629. "MIT"
  2630. ],
  2631. "description": "Create deep copies (clones) of your objects",
  2632. "keywords": [
  2633. "clone",
  2634. "copy",
  2635. "duplicate",
  2636. "object",
  2637. "object graph"
  2638. ],
  2639. "support": {
  2640. "issues": "https://github.com/myclabs/DeepCopy/issues",
  2641. "source": "https://github.com/myclabs/DeepCopy/tree/1.x"
  2642. },
  2643. "funding": [
  2644. {
  2645. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  2646. "type": "tidelift"
  2647. }
  2648. ],
  2649. "time": "2020-06-29T13:22:24+00:00"
  2650. },
  2651. {
  2652. "name": "phar-io/manifest",
  2653. "version": "1.0.3",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://github.com/phar-io/manifest.git",
  2657. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  2662. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  2663. "shasum": "",
  2664. "mirrors": [
  2665. {
  2666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2667. "preferred": true
  2668. }
  2669. ]
  2670. },
  2671. "require": {
  2672. "ext-dom": "*",
  2673. "ext-phar": "*",
  2674. "phar-io/version": "^2.0",
  2675. "php": "^5.6 || ^7.0"
  2676. },
  2677. "type": "library",
  2678. "extra": {
  2679. "branch-alias": {
  2680. "dev-master": "1.0.x-dev"
  2681. }
  2682. },
  2683. "autoload": {
  2684. "classmap": [
  2685. "src/"
  2686. ]
  2687. },
  2688. "notification-url": "https://packagist.org/downloads/",
  2689. "license": [
  2690. "BSD-3-Clause"
  2691. ],
  2692. "authors": [
  2693. {
  2694. "name": "Arne Blankerts",
  2695. "email": "arne@blankerts.de",
  2696. "role": "Developer"
  2697. },
  2698. {
  2699. "name": "Sebastian Heuer",
  2700. "email": "sebastian@phpeople.de",
  2701. "role": "Developer"
  2702. },
  2703. {
  2704. "name": "Sebastian Bergmann",
  2705. "email": "sebastian@phpunit.de",
  2706. "role": "Developer"
  2707. }
  2708. ],
  2709. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2710. "support": {
  2711. "issues": "https://github.com/phar-io/manifest/issues",
  2712. "source": "https://github.com/phar-io/manifest/tree/master"
  2713. },
  2714. "time": "2018-07-08T19:23:20+00:00"
  2715. },
  2716. {
  2717. "name": "phar-io/version",
  2718. "version": "2.0.1",
  2719. "source": {
  2720. "type": "git",
  2721. "url": "https://github.com/phar-io/version.git",
  2722. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  2723. },
  2724. "dist": {
  2725. "type": "zip",
  2726. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  2727. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  2728. "shasum": "",
  2729. "mirrors": [
  2730. {
  2731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2732. "preferred": true
  2733. }
  2734. ]
  2735. },
  2736. "require": {
  2737. "php": "^5.6 || ^7.0"
  2738. },
  2739. "type": "library",
  2740. "autoload": {
  2741. "classmap": [
  2742. "src/"
  2743. ]
  2744. },
  2745. "notification-url": "https://packagist.org/downloads/",
  2746. "license": [
  2747. "BSD-3-Clause"
  2748. ],
  2749. "authors": [
  2750. {
  2751. "name": "Arne Blankerts",
  2752. "email": "arne@blankerts.de",
  2753. "role": "Developer"
  2754. },
  2755. {
  2756. "name": "Sebastian Heuer",
  2757. "email": "sebastian@phpeople.de",
  2758. "role": "Developer"
  2759. },
  2760. {
  2761. "name": "Sebastian Bergmann",
  2762. "email": "sebastian@phpunit.de",
  2763. "role": "Developer"
  2764. }
  2765. ],
  2766. "description": "Library for handling version information and constraints",
  2767. "support": {
  2768. "issues": "https://github.com/phar-io/version/issues",
  2769. "source": "https://github.com/phar-io/version/tree/master"
  2770. },
  2771. "time": "2018-07-08T19:19:57+00:00"
  2772. },
  2773. {
  2774. "name": "phpdocumentor/reflection-common",
  2775. "version": "2.2.0",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2779. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2780. },
  2781. "dist": {
  2782. "type": "zip",
  2783. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2784. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2785. "shasum": "",
  2786. "mirrors": [
  2787. {
  2788. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2789. "preferred": true
  2790. }
  2791. ]
  2792. },
  2793. "require": {
  2794. "php": "^7.2 || ^8.0"
  2795. },
  2796. "type": "library",
  2797. "extra": {
  2798. "branch-alias": {
  2799. "dev-2.x": "2.x-dev"
  2800. }
  2801. },
  2802. "autoload": {
  2803. "psr-4": {
  2804. "phpDocumentor\\Reflection\\": "src/"
  2805. }
  2806. },
  2807. "notification-url": "https://packagist.org/downloads/",
  2808. "license": [
  2809. "MIT"
  2810. ],
  2811. "authors": [
  2812. {
  2813. "name": "Jaap van Otterdijk",
  2814. "email": "opensource@ijaap.nl"
  2815. }
  2816. ],
  2817. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2818. "homepage": "http://www.phpdoc.org",
  2819. "keywords": [
  2820. "FQSEN",
  2821. "phpDocumentor",
  2822. "phpdoc",
  2823. "reflection",
  2824. "static analysis"
  2825. ],
  2826. "support": {
  2827. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2828. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2829. },
  2830. "time": "2020-06-27T09:03:43+00:00"
  2831. },
  2832. {
  2833. "name": "phpdocumentor/reflection-docblock",
  2834. "version": "5.2.2",
  2835. "source": {
  2836. "type": "git",
  2837. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2838. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  2839. },
  2840. "dist": {
  2841. "type": "zip",
  2842. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  2843. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  2844. "shasum": "",
  2845. "mirrors": [
  2846. {
  2847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2848. "preferred": true
  2849. }
  2850. ]
  2851. },
  2852. "require": {
  2853. "ext-filter": "*",
  2854. "php": "^7.2 || ^8.0",
  2855. "phpdocumentor/reflection-common": "^2.2",
  2856. "phpdocumentor/type-resolver": "^1.3",
  2857. "webmozart/assert": "^1.9.1"
  2858. },
  2859. "require-dev": {
  2860. "mockery/mockery": "~1.3.2"
  2861. },
  2862. "type": "library",
  2863. "extra": {
  2864. "branch-alias": {
  2865. "dev-master": "5.x-dev"
  2866. }
  2867. },
  2868. "autoload": {
  2869. "psr-4": {
  2870. "phpDocumentor\\Reflection\\": "src"
  2871. }
  2872. },
  2873. "notification-url": "https://packagist.org/downloads/",
  2874. "license": [
  2875. "MIT"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Mike van Riel",
  2880. "email": "me@mikevanriel.com"
  2881. },
  2882. {
  2883. "name": "Jaap van Otterdijk",
  2884. "email": "account@ijaap.nl"
  2885. }
  2886. ],
  2887. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2888. "support": {
  2889. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2890. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  2891. },
  2892. "time": "2020-09-03T19:13:55+00:00"
  2893. },
  2894. {
  2895. "name": "phpdocumentor/type-resolver",
  2896. "version": "1.4.0",
  2897. "source": {
  2898. "type": "git",
  2899. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2900. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  2901. },
  2902. "dist": {
  2903. "type": "zip",
  2904. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  2905. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  2906. "shasum": "",
  2907. "mirrors": [
  2908. {
  2909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2910. "preferred": true
  2911. }
  2912. ]
  2913. },
  2914. "require": {
  2915. "php": "^7.2 || ^8.0",
  2916. "phpdocumentor/reflection-common": "^2.0"
  2917. },
  2918. "require-dev": {
  2919. "ext-tokenizer": "*"
  2920. },
  2921. "type": "library",
  2922. "extra": {
  2923. "branch-alias": {
  2924. "dev-1.x": "1.x-dev"
  2925. }
  2926. },
  2927. "autoload": {
  2928. "psr-4": {
  2929. "phpDocumentor\\Reflection\\": "src"
  2930. }
  2931. },
  2932. "notification-url": "https://packagist.org/downloads/",
  2933. "license": [
  2934. "MIT"
  2935. ],
  2936. "authors": [
  2937. {
  2938. "name": "Mike van Riel",
  2939. "email": "me@mikevanriel.com"
  2940. }
  2941. ],
  2942. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2943. "support": {
  2944. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2945. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  2946. },
  2947. "time": "2020-09-17T18:55:26+00:00"
  2948. },
  2949. {
  2950. "name": "phpspec/php-diff",
  2951. "version": "v1.1.3",
  2952. "source": {
  2953. "type": "git",
  2954. "url": "https://github.com/phpspec/php-diff.git",
  2955. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9"
  2956. },
  2957. "dist": {
  2958. "type": "zip",
  2959. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  2960. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  2961. "shasum": "",
  2962. "mirrors": [
  2963. {
  2964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2965. "preferred": true
  2966. }
  2967. ]
  2968. },
  2969. "type": "library",
  2970. "extra": {
  2971. "branch-alias": {
  2972. "dev-master": "1.0.x-dev"
  2973. }
  2974. },
  2975. "autoload": {
  2976. "psr-0": {
  2977. "Diff": "lib/"
  2978. }
  2979. },
  2980. "notification-url": "https://packagist.org/downloads/",
  2981. "license": [
  2982. "BSD-3-Clause"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "Chris Boulton",
  2987. "homepage": "http://github.com/chrisboulton"
  2988. }
  2989. ],
  2990. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  2991. "support": {
  2992. "source": "https://github.com/phpspec/php-diff/tree/v1.1.3"
  2993. },
  2994. "time": "2020-09-18T13:47:07+00:00"
  2995. },
  2996. {
  2997. "name": "phpspec/prophecy",
  2998. "version": "1.12.1",
  2999. "source": {
  3000. "type": "git",
  3001. "url": "https://github.com/phpspec/prophecy.git",
  3002. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  3003. },
  3004. "dist": {
  3005. "type": "zip",
  3006. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  3007. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  3008. "shasum": "",
  3009. "mirrors": [
  3010. {
  3011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3012. "preferred": true
  3013. }
  3014. ]
  3015. },
  3016. "require": {
  3017. "doctrine/instantiator": "^1.2",
  3018. "php": "^7.2 || ~8.0, <8.1",
  3019. "phpdocumentor/reflection-docblock": "^5.2",
  3020. "sebastian/comparator": "^3.0 || ^4.0",
  3021. "sebastian/recursion-context": "^3.0 || ^4.0"
  3022. },
  3023. "require-dev": {
  3024. "phpspec/phpspec": "^6.0",
  3025. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  3026. },
  3027. "type": "library",
  3028. "extra": {
  3029. "branch-alias": {
  3030. "dev-master": "1.11.x-dev"
  3031. }
  3032. },
  3033. "autoload": {
  3034. "psr-4": {
  3035. "Prophecy\\": "src/Prophecy"
  3036. }
  3037. },
  3038. "notification-url": "https://packagist.org/downloads/",
  3039. "license": [
  3040. "MIT"
  3041. ],
  3042. "authors": [
  3043. {
  3044. "name": "Konstantin Kudryashov",
  3045. "email": "ever.zet@gmail.com",
  3046. "homepage": "http://everzet.com"
  3047. },
  3048. {
  3049. "name": "Marcello Duarte",
  3050. "email": "marcello.duarte@gmail.com"
  3051. }
  3052. ],
  3053. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3054. "homepage": "https://github.com/phpspec/prophecy",
  3055. "keywords": [
  3056. "Double",
  3057. "Dummy",
  3058. "fake",
  3059. "mock",
  3060. "spy",
  3061. "stub"
  3062. ],
  3063. "support": {
  3064. "issues": "https://github.com/phpspec/prophecy/issues",
  3065. "source": "https://github.com/phpspec/prophecy/tree/1.12.1"
  3066. },
  3067. "time": "2020-09-29T09:10:42+00:00"
  3068. },
  3069. {
  3070. "name": "phpunit/php-code-coverage",
  3071. "version": "6.1.4",
  3072. "source": {
  3073. "type": "git",
  3074. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3075. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  3076. },
  3077. "dist": {
  3078. "type": "zip",
  3079. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  3080. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  3081. "shasum": "",
  3082. "mirrors": [
  3083. {
  3084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3085. "preferred": true
  3086. }
  3087. ]
  3088. },
  3089. "require": {
  3090. "ext-dom": "*",
  3091. "ext-xmlwriter": "*",
  3092. "php": "^7.1",
  3093. "phpunit/php-file-iterator": "^2.0",
  3094. "phpunit/php-text-template": "^1.2.1",
  3095. "phpunit/php-token-stream": "^3.0",
  3096. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  3097. "sebastian/environment": "^3.1 || ^4.0",
  3098. "sebastian/version": "^2.0.1",
  3099. "theseer/tokenizer": "^1.1"
  3100. },
  3101. "require-dev": {
  3102. "phpunit/phpunit": "^7.0"
  3103. },
  3104. "suggest": {
  3105. "ext-xdebug": "^2.6.0"
  3106. },
  3107. "type": "library",
  3108. "extra": {
  3109. "branch-alias": {
  3110. "dev-master": "6.1-dev"
  3111. }
  3112. },
  3113. "autoload": {
  3114. "classmap": [
  3115. "src/"
  3116. ]
  3117. },
  3118. "notification-url": "https://packagist.org/downloads/",
  3119. "license": [
  3120. "BSD-3-Clause"
  3121. ],
  3122. "authors": [
  3123. {
  3124. "name": "Sebastian Bergmann",
  3125. "email": "sebastian@phpunit.de",
  3126. "role": "lead"
  3127. }
  3128. ],
  3129. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3130. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3131. "keywords": [
  3132. "coverage",
  3133. "testing",
  3134. "xunit"
  3135. ],
  3136. "support": {
  3137. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  3138. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/master"
  3139. },
  3140. "time": "2018-10-31T16:06:48+00:00"
  3141. },
  3142. {
  3143. "name": "phpunit/php-file-iterator",
  3144. "version": "2.0.2",
  3145. "source": {
  3146. "type": "git",
  3147. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3148. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  3149. },
  3150. "dist": {
  3151. "type": "zip",
  3152. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  3153. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  3154. "shasum": "",
  3155. "mirrors": [
  3156. {
  3157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3158. "preferred": true
  3159. }
  3160. ]
  3161. },
  3162. "require": {
  3163. "php": "^7.1"
  3164. },
  3165. "require-dev": {
  3166. "phpunit/phpunit": "^7.1"
  3167. },
  3168. "type": "library",
  3169. "extra": {
  3170. "branch-alias": {
  3171. "dev-master": "2.0.x-dev"
  3172. }
  3173. },
  3174. "autoload": {
  3175. "classmap": [
  3176. "src/"
  3177. ]
  3178. },
  3179. "notification-url": "https://packagist.org/downloads/",
  3180. "license": [
  3181. "BSD-3-Clause"
  3182. ],
  3183. "authors": [
  3184. {
  3185. "name": "Sebastian Bergmann",
  3186. "email": "sebastian@phpunit.de",
  3187. "role": "lead"
  3188. }
  3189. ],
  3190. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3191. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3192. "keywords": [
  3193. "filesystem",
  3194. "iterator"
  3195. ],
  3196. "support": {
  3197. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  3198. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.2"
  3199. },
  3200. "time": "2018-09-13T20:33:42+00:00"
  3201. },
  3202. {
  3203. "name": "phpunit/php-text-template",
  3204. "version": "1.2.1",
  3205. "source": {
  3206. "type": "git",
  3207. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3208. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3209. },
  3210. "dist": {
  3211. "type": "zip",
  3212. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3213. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3214. "shasum": "",
  3215. "mirrors": [
  3216. {
  3217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3218. "preferred": true
  3219. }
  3220. ]
  3221. },
  3222. "require": {
  3223. "php": ">=5.3.3"
  3224. },
  3225. "type": "library",
  3226. "autoload": {
  3227. "classmap": [
  3228. "src/"
  3229. ]
  3230. },
  3231. "notification-url": "https://packagist.org/downloads/",
  3232. "license": [
  3233. "BSD-3-Clause"
  3234. ],
  3235. "authors": [
  3236. {
  3237. "name": "Sebastian Bergmann",
  3238. "email": "sebastian@phpunit.de",
  3239. "role": "lead"
  3240. }
  3241. ],
  3242. "description": "Simple template engine.",
  3243. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3244. "keywords": [
  3245. "template"
  3246. ],
  3247. "support": {
  3248. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  3249. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  3250. },
  3251. "time": "2015-06-21T13:50:34+00:00"
  3252. },
  3253. {
  3254. "name": "phpunit/php-timer",
  3255. "version": "2.1.2",
  3256. "source": {
  3257. "type": "git",
  3258. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3259. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  3260. },
  3261. "dist": {
  3262. "type": "zip",
  3263. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  3264. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  3265. "shasum": "",
  3266. "mirrors": [
  3267. {
  3268. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3269. "preferred": true
  3270. }
  3271. ]
  3272. },
  3273. "require": {
  3274. "php": "^7.1"
  3275. },
  3276. "require-dev": {
  3277. "phpunit/phpunit": "^7.0"
  3278. },
  3279. "type": "library",
  3280. "extra": {
  3281. "branch-alias": {
  3282. "dev-master": "2.1-dev"
  3283. }
  3284. },
  3285. "autoload": {
  3286. "classmap": [
  3287. "src/"
  3288. ]
  3289. },
  3290. "notification-url": "https://packagist.org/downloads/",
  3291. "license": [
  3292. "BSD-3-Clause"
  3293. ],
  3294. "authors": [
  3295. {
  3296. "name": "Sebastian Bergmann",
  3297. "email": "sebastian@phpunit.de",
  3298. "role": "lead"
  3299. }
  3300. ],
  3301. "description": "Utility class for timing",
  3302. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3303. "keywords": [
  3304. "timer"
  3305. ],
  3306. "support": {
  3307. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  3308. "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
  3309. },
  3310. "time": "2019-06-07T04:22:29+00:00"
  3311. },
  3312. {
  3313. "name": "phpunit/php-token-stream",
  3314. "version": "3.1.1",
  3315. "source": {
  3316. "type": "git",
  3317. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3318. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  3319. },
  3320. "dist": {
  3321. "type": "zip",
  3322. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  3323. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  3324. "shasum": "",
  3325. "mirrors": [
  3326. {
  3327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3328. "preferred": true
  3329. }
  3330. ]
  3331. },
  3332. "require": {
  3333. "ext-tokenizer": "*",
  3334. "php": "^7.1"
  3335. },
  3336. "require-dev": {
  3337. "phpunit/phpunit": "^7.0"
  3338. },
  3339. "type": "library",
  3340. "extra": {
  3341. "branch-alias": {
  3342. "dev-master": "3.1-dev"
  3343. }
  3344. },
  3345. "autoload": {
  3346. "classmap": [
  3347. "src/"
  3348. ]
  3349. },
  3350. "notification-url": "https://packagist.org/downloads/",
  3351. "license": [
  3352. "BSD-3-Clause"
  3353. ],
  3354. "authors": [
  3355. {
  3356. "name": "Sebastian Bergmann",
  3357. "email": "sebastian@phpunit.de"
  3358. }
  3359. ],
  3360. "description": "Wrapper around PHP's tokenizer extension.",
  3361. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3362. "keywords": [
  3363. "tokenizer"
  3364. ],
  3365. "support": {
  3366. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  3367. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.1"
  3368. },
  3369. "abandoned": true,
  3370. "time": "2019-09-17T06:23:10+00:00"
  3371. },
  3372. {
  3373. "name": "phpunit/phpunit",
  3374. "version": "7.5.20",
  3375. "source": {
  3376. "type": "git",
  3377. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3378. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  3379. },
  3380. "dist": {
  3381. "type": "zip",
  3382. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  3383. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  3384. "shasum": "",
  3385. "mirrors": [
  3386. {
  3387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3388. "preferred": true
  3389. }
  3390. ]
  3391. },
  3392. "require": {
  3393. "doctrine/instantiator": "^1.1",
  3394. "ext-dom": "*",
  3395. "ext-json": "*",
  3396. "ext-libxml": "*",
  3397. "ext-mbstring": "*",
  3398. "ext-xml": "*",
  3399. "myclabs/deep-copy": "^1.7",
  3400. "phar-io/manifest": "^1.0.2",
  3401. "phar-io/version": "^2.0",
  3402. "php": "^7.1",
  3403. "phpspec/prophecy": "^1.7",
  3404. "phpunit/php-code-coverage": "^6.0.7",
  3405. "phpunit/php-file-iterator": "^2.0.1",
  3406. "phpunit/php-text-template": "^1.2.1",
  3407. "phpunit/php-timer": "^2.1",
  3408. "sebastian/comparator": "^3.0",
  3409. "sebastian/diff": "^3.0",
  3410. "sebastian/environment": "^4.0",
  3411. "sebastian/exporter": "^3.1",
  3412. "sebastian/global-state": "^2.0",
  3413. "sebastian/object-enumerator": "^3.0.3",
  3414. "sebastian/resource-operations": "^2.0",
  3415. "sebastian/version": "^2.0.1"
  3416. },
  3417. "conflict": {
  3418. "phpunit/phpunit-mock-objects": "*"
  3419. },
  3420. "require-dev": {
  3421. "ext-pdo": "*"
  3422. },
  3423. "suggest": {
  3424. "ext-soap": "*",
  3425. "ext-xdebug": "*",
  3426. "phpunit/php-invoker": "^2.0"
  3427. },
  3428. "bin": [
  3429. "phpunit"
  3430. ],
  3431. "type": "library",
  3432. "extra": {
  3433. "branch-alias": {
  3434. "dev-master": "7.5-dev"
  3435. }
  3436. },
  3437. "autoload": {
  3438. "classmap": [
  3439. "src/"
  3440. ]
  3441. },
  3442. "notification-url": "https://packagist.org/downloads/",
  3443. "license": [
  3444. "BSD-3-Clause"
  3445. ],
  3446. "authors": [
  3447. {
  3448. "name": "Sebastian Bergmann",
  3449. "email": "sebastian@phpunit.de",
  3450. "role": "lead"
  3451. }
  3452. ],
  3453. "description": "The PHP Unit Testing framework.",
  3454. "homepage": "https://phpunit.de/",
  3455. "keywords": [
  3456. "phpunit",
  3457. "testing",
  3458. "xunit"
  3459. ],
  3460. "support": {
  3461. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  3462. "source": "https://github.com/sebastianbergmann/phpunit/tree/7.5.20"
  3463. },
  3464. "time": "2020-01-08T08:45:45+00:00"
  3465. },
  3466. {
  3467. "name": "psr/container",
  3468. "version": "1.0.0",
  3469. "source": {
  3470. "type": "git",
  3471. "url": "https://github.com/php-fig/container.git",
  3472. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3473. },
  3474. "dist": {
  3475. "type": "zip",
  3476. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3477. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3478. "shasum": "",
  3479. "mirrors": [
  3480. {
  3481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3482. "preferred": true
  3483. }
  3484. ]
  3485. },
  3486. "require": {
  3487. "php": ">=5.3.0"
  3488. },
  3489. "type": "library",
  3490. "extra": {
  3491. "branch-alias": {
  3492. "dev-master": "1.0.x-dev"
  3493. }
  3494. },
  3495. "autoload": {
  3496. "psr-4": {
  3497. "Psr\\Container\\": "src/"
  3498. }
  3499. },
  3500. "notification-url": "https://packagist.org/downloads/",
  3501. "license": [
  3502. "MIT"
  3503. ],
  3504. "authors": [
  3505. {
  3506. "name": "PHP-FIG",
  3507. "homepage": "http://www.php-fig.org/"
  3508. }
  3509. ],
  3510. "description": "Common Container Interface (PHP FIG PSR-11)",
  3511. "homepage": "https://github.com/php-fig/container",
  3512. "keywords": [
  3513. "PSR-11",
  3514. "container",
  3515. "container-interface",
  3516. "container-interop",
  3517. "psr"
  3518. ],
  3519. "support": {
  3520. "issues": "https://github.com/php-fig/container/issues",
  3521. "source": "https://github.com/php-fig/container/tree/master"
  3522. },
  3523. "time": "2017-02-14T16:28:37+00:00"
  3524. },
  3525. {
  3526. "name": "sebastian/code-unit-reverse-lookup",
  3527. "version": "1.0.1",
  3528. "source": {
  3529. "type": "git",
  3530. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3531. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  3532. },
  3533. "dist": {
  3534. "type": "zip",
  3535. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3536. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3537. "shasum": "",
  3538. "mirrors": [
  3539. {
  3540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3541. "preferred": true
  3542. }
  3543. ]
  3544. },
  3545. "require": {
  3546. "php": "^5.6 || ^7.0"
  3547. },
  3548. "require-dev": {
  3549. "phpunit/phpunit": "^5.7 || ^6.0"
  3550. },
  3551. "type": "library",
  3552. "extra": {
  3553. "branch-alias": {
  3554. "dev-master": "1.0.x-dev"
  3555. }
  3556. },
  3557. "autoload": {
  3558. "classmap": [
  3559. "src/"
  3560. ]
  3561. },
  3562. "notification-url": "https://packagist.org/downloads/",
  3563. "license": [
  3564. "BSD-3-Clause"
  3565. ],
  3566. "authors": [
  3567. {
  3568. "name": "Sebastian Bergmann",
  3569. "email": "sebastian@phpunit.de"
  3570. }
  3571. ],
  3572. "description": "Looks up which function or method a line of code belongs to",
  3573. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3574. "support": {
  3575. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  3576. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/master"
  3577. },
  3578. "time": "2017-03-04T06:30:41+00:00"
  3579. },
  3580. {
  3581. "name": "sebastian/comparator",
  3582. "version": "3.0.2",
  3583. "source": {
  3584. "type": "git",
  3585. "url": "https://github.com/sebastianbergmann/comparator.git",
  3586. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  3587. },
  3588. "dist": {
  3589. "type": "zip",
  3590. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  3591. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  3592. "shasum": "",
  3593. "mirrors": [
  3594. {
  3595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3596. "preferred": true
  3597. }
  3598. ]
  3599. },
  3600. "require": {
  3601. "php": "^7.1",
  3602. "sebastian/diff": "^3.0",
  3603. "sebastian/exporter": "^3.1"
  3604. },
  3605. "require-dev": {
  3606. "phpunit/phpunit": "^7.1"
  3607. },
  3608. "type": "library",
  3609. "extra": {
  3610. "branch-alias": {
  3611. "dev-master": "3.0-dev"
  3612. }
  3613. },
  3614. "autoload": {
  3615. "classmap": [
  3616. "src/"
  3617. ]
  3618. },
  3619. "notification-url": "https://packagist.org/downloads/",
  3620. "license": [
  3621. "BSD-3-Clause"
  3622. ],
  3623. "authors": [
  3624. {
  3625. "name": "Jeff Welch",
  3626. "email": "whatthejeff@gmail.com"
  3627. },
  3628. {
  3629. "name": "Volker Dusch",
  3630. "email": "github@wallbash.com"
  3631. },
  3632. {
  3633. "name": "Bernhard Schussek",
  3634. "email": "bschussek@2bepublished.at"
  3635. },
  3636. {
  3637. "name": "Sebastian Bergmann",
  3638. "email": "sebastian@phpunit.de"
  3639. }
  3640. ],
  3641. "description": "Provides the functionality to compare PHP values for equality",
  3642. "homepage": "https://github.com/sebastianbergmann/comparator",
  3643. "keywords": [
  3644. "comparator",
  3645. "compare",
  3646. "equality"
  3647. ],
  3648. "support": {
  3649. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  3650. "source": "https://github.com/sebastianbergmann/comparator/tree/master"
  3651. },
  3652. "time": "2018-07-12T15:12:46+00:00"
  3653. },
  3654. {
  3655. "name": "sebastian/diff",
  3656. "version": "3.0.2",
  3657. "source": {
  3658. "type": "git",
  3659. "url": "https://github.com/sebastianbergmann/diff.git",
  3660. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  3661. },
  3662. "dist": {
  3663. "type": "zip",
  3664. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  3665. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  3666. "shasum": "",
  3667. "mirrors": [
  3668. {
  3669. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3670. "preferred": true
  3671. }
  3672. ]
  3673. },
  3674. "require": {
  3675. "php": "^7.1"
  3676. },
  3677. "require-dev": {
  3678. "phpunit/phpunit": "^7.5 || ^8.0",
  3679. "symfony/process": "^2 || ^3.3 || ^4"
  3680. },
  3681. "type": "library",
  3682. "extra": {
  3683. "branch-alias": {
  3684. "dev-master": "3.0-dev"
  3685. }
  3686. },
  3687. "autoload": {
  3688. "classmap": [
  3689. "src/"
  3690. ]
  3691. },
  3692. "notification-url": "https://packagist.org/downloads/",
  3693. "license": [
  3694. "BSD-3-Clause"
  3695. ],
  3696. "authors": [
  3697. {
  3698. "name": "Kore Nordmann",
  3699. "email": "mail@kore-nordmann.de"
  3700. },
  3701. {
  3702. "name": "Sebastian Bergmann",
  3703. "email": "sebastian@phpunit.de"
  3704. }
  3705. ],
  3706. "description": "Diff implementation",
  3707. "homepage": "https://github.com/sebastianbergmann/diff",
  3708. "keywords": [
  3709. "diff",
  3710. "udiff",
  3711. "unidiff",
  3712. "unified diff"
  3713. ],
  3714. "support": {
  3715. "issues": "https://github.com/sebastianbergmann/diff/issues",
  3716. "source": "https://github.com/sebastianbergmann/diff/tree/master"
  3717. },
  3718. "time": "2019-02-04T06:01:07+00:00"
  3719. },
  3720. {
  3721. "name": "sebastian/environment",
  3722. "version": "4.2.3",
  3723. "source": {
  3724. "type": "git",
  3725. "url": "https://github.com/sebastianbergmann/environment.git",
  3726. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  3727. },
  3728. "dist": {
  3729. "type": "zip",
  3730. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  3731. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  3732. "shasum": "",
  3733. "mirrors": [
  3734. {
  3735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3736. "preferred": true
  3737. }
  3738. ]
  3739. },
  3740. "require": {
  3741. "php": "^7.1"
  3742. },
  3743. "require-dev": {
  3744. "phpunit/phpunit": "^7.5"
  3745. },
  3746. "suggest": {
  3747. "ext-posix": "*"
  3748. },
  3749. "type": "library",
  3750. "extra": {
  3751. "branch-alias": {
  3752. "dev-master": "4.2-dev"
  3753. }
  3754. },
  3755. "autoload": {
  3756. "classmap": [
  3757. "src/"
  3758. ]
  3759. },
  3760. "notification-url": "https://packagist.org/downloads/",
  3761. "license": [
  3762. "BSD-3-Clause"
  3763. ],
  3764. "authors": [
  3765. {
  3766. "name": "Sebastian Bergmann",
  3767. "email": "sebastian@phpunit.de"
  3768. }
  3769. ],
  3770. "description": "Provides functionality to handle HHVM/PHP environments",
  3771. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3772. "keywords": [
  3773. "Xdebug",
  3774. "environment",
  3775. "hhvm"
  3776. ],
  3777. "support": {
  3778. "issues": "https://github.com/sebastianbergmann/environment/issues",
  3779. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.3"
  3780. },
  3781. "time": "2019-11-20T08:46:58+00:00"
  3782. },
  3783. {
  3784. "name": "sebastian/exporter",
  3785. "version": "3.1.2",
  3786. "source": {
  3787. "type": "git",
  3788. "url": "https://github.com/sebastianbergmann/exporter.git",
  3789. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  3790. },
  3791. "dist": {
  3792. "type": "zip",
  3793. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  3794. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  3795. "shasum": "",
  3796. "mirrors": [
  3797. {
  3798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3799. "preferred": true
  3800. }
  3801. ]
  3802. },
  3803. "require": {
  3804. "php": "^7.0",
  3805. "sebastian/recursion-context": "^3.0"
  3806. },
  3807. "require-dev": {
  3808. "ext-mbstring": "*",
  3809. "phpunit/phpunit": "^6.0"
  3810. },
  3811. "type": "library",
  3812. "extra": {
  3813. "branch-alias": {
  3814. "dev-master": "3.1.x-dev"
  3815. }
  3816. },
  3817. "autoload": {
  3818. "classmap": [
  3819. "src/"
  3820. ]
  3821. },
  3822. "notification-url": "https://packagist.org/downloads/",
  3823. "license": [
  3824. "BSD-3-Clause"
  3825. ],
  3826. "authors": [
  3827. {
  3828. "name": "Sebastian Bergmann",
  3829. "email": "sebastian@phpunit.de"
  3830. },
  3831. {
  3832. "name": "Jeff Welch",
  3833. "email": "whatthejeff@gmail.com"
  3834. },
  3835. {
  3836. "name": "Volker Dusch",
  3837. "email": "github@wallbash.com"
  3838. },
  3839. {
  3840. "name": "Adam Harvey",
  3841. "email": "aharvey@php.net"
  3842. },
  3843. {
  3844. "name": "Bernhard Schussek",
  3845. "email": "bschussek@gmail.com"
  3846. }
  3847. ],
  3848. "description": "Provides the functionality to export PHP variables for visualization",
  3849. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3850. "keywords": [
  3851. "export",
  3852. "exporter"
  3853. ],
  3854. "support": {
  3855. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  3856. "source": "https://github.com/sebastianbergmann/exporter/tree/master"
  3857. },
  3858. "time": "2019-09-14T09:02:43+00:00"
  3859. },
  3860. {
  3861. "name": "sebastian/global-state",
  3862. "version": "2.0.0",
  3863. "source": {
  3864. "type": "git",
  3865. "url": "https://github.com/sebastianbergmann/global-state.git",
  3866. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  3867. },
  3868. "dist": {
  3869. "type": "zip",
  3870. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3871. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3872. "shasum": "",
  3873. "mirrors": [
  3874. {
  3875. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3876. "preferred": true
  3877. }
  3878. ]
  3879. },
  3880. "require": {
  3881. "php": "^7.0"
  3882. },
  3883. "require-dev": {
  3884. "phpunit/phpunit": "^6.0"
  3885. },
  3886. "suggest": {
  3887. "ext-uopz": "*"
  3888. },
  3889. "type": "library",
  3890. "extra": {
  3891. "branch-alias": {
  3892. "dev-master": "2.0-dev"
  3893. }
  3894. },
  3895. "autoload": {
  3896. "classmap": [
  3897. "src/"
  3898. ]
  3899. },
  3900. "notification-url": "https://packagist.org/downloads/",
  3901. "license": [
  3902. "BSD-3-Clause"
  3903. ],
  3904. "authors": [
  3905. {
  3906. "name": "Sebastian Bergmann",
  3907. "email": "sebastian@phpunit.de"
  3908. }
  3909. ],
  3910. "description": "Snapshotting of global state",
  3911. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3912. "keywords": [
  3913. "global state"
  3914. ],
  3915. "support": {
  3916. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  3917. "source": "https://github.com/sebastianbergmann/global-state/tree/2.0.0"
  3918. },
  3919. "time": "2017-04-27T15:39:26+00:00"
  3920. },
  3921. {
  3922. "name": "sebastian/object-enumerator",
  3923. "version": "3.0.3",
  3924. "source": {
  3925. "type": "git",
  3926. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3927. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  3928. },
  3929. "dist": {
  3930. "type": "zip",
  3931. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3932. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3933. "shasum": "",
  3934. "mirrors": [
  3935. {
  3936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3937. "preferred": true
  3938. }
  3939. ]
  3940. },
  3941. "require": {
  3942. "php": "^7.0",
  3943. "sebastian/object-reflector": "^1.1.1",
  3944. "sebastian/recursion-context": "^3.0"
  3945. },
  3946. "require-dev": {
  3947. "phpunit/phpunit": "^6.0"
  3948. },
  3949. "type": "library",
  3950. "extra": {
  3951. "branch-alias": {
  3952. "dev-master": "3.0.x-dev"
  3953. }
  3954. },
  3955. "autoload": {
  3956. "classmap": [
  3957. "src/"
  3958. ]
  3959. },
  3960. "notification-url": "https://packagist.org/downloads/",
  3961. "license": [
  3962. "BSD-3-Clause"
  3963. ],
  3964. "authors": [
  3965. {
  3966. "name": "Sebastian Bergmann",
  3967. "email": "sebastian@phpunit.de"
  3968. }
  3969. ],
  3970. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3971. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3972. "support": {
  3973. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  3974. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/master"
  3975. },
  3976. "time": "2017-08-03T12:35:26+00:00"
  3977. },
  3978. {
  3979. "name": "sebastian/object-reflector",
  3980. "version": "1.1.1",
  3981. "source": {
  3982. "type": "git",
  3983. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  3984. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  3985. },
  3986. "dist": {
  3987. "type": "zip",
  3988. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  3989. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  3990. "shasum": "",
  3991. "mirrors": [
  3992. {
  3993. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3994. "preferred": true
  3995. }
  3996. ]
  3997. },
  3998. "require": {
  3999. "php": "^7.0"
  4000. },
  4001. "require-dev": {
  4002. "phpunit/phpunit": "^6.0"
  4003. },
  4004. "type": "library",
  4005. "extra": {
  4006. "branch-alias": {
  4007. "dev-master": "1.1-dev"
  4008. }
  4009. },
  4010. "autoload": {
  4011. "classmap": [
  4012. "src/"
  4013. ]
  4014. },
  4015. "notification-url": "https://packagist.org/downloads/",
  4016. "license": [
  4017. "BSD-3-Clause"
  4018. ],
  4019. "authors": [
  4020. {
  4021. "name": "Sebastian Bergmann",
  4022. "email": "sebastian@phpunit.de"
  4023. }
  4024. ],
  4025. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  4026. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  4027. "support": {
  4028. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  4029. "source": "https://github.com/sebastianbergmann/object-reflector/tree/master"
  4030. },
  4031. "time": "2017-03-29T09:07:27+00:00"
  4032. },
  4033. {
  4034. "name": "sebastian/recursion-context",
  4035. "version": "3.0.0",
  4036. "source": {
  4037. "type": "git",
  4038. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  4039. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  4040. },
  4041. "dist": {
  4042. "type": "zip",
  4043. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  4044. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  4045. "shasum": "",
  4046. "mirrors": [
  4047. {
  4048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4049. "preferred": true
  4050. }
  4051. ]
  4052. },
  4053. "require": {
  4054. "php": "^7.0"
  4055. },
  4056. "require-dev": {
  4057. "phpunit/phpunit": "^6.0"
  4058. },
  4059. "type": "library",
  4060. "extra": {
  4061. "branch-alias": {
  4062. "dev-master": "3.0.x-dev"
  4063. }
  4064. },
  4065. "autoload": {
  4066. "classmap": [
  4067. "src/"
  4068. ]
  4069. },
  4070. "notification-url": "https://packagist.org/downloads/",
  4071. "license": [
  4072. "BSD-3-Clause"
  4073. ],
  4074. "authors": [
  4075. {
  4076. "name": "Jeff Welch",
  4077. "email": "whatthejeff@gmail.com"
  4078. },
  4079. {
  4080. "name": "Sebastian Bergmann",
  4081. "email": "sebastian@phpunit.de"
  4082. },
  4083. {
  4084. "name": "Adam Harvey",
  4085. "email": "aharvey@php.net"
  4086. }
  4087. ],
  4088. "description": "Provides functionality to recursively process PHP variables",
  4089. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  4090. "support": {
  4091. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  4092. "source": "https://github.com/sebastianbergmann/recursion-context/tree/master"
  4093. },
  4094. "time": "2017-03-03T06:23:57+00:00"
  4095. },
  4096. {
  4097. "name": "sebastian/resource-operations",
  4098. "version": "2.0.1",
  4099. "source": {
  4100. "type": "git",
  4101. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4102. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  4103. },
  4104. "dist": {
  4105. "type": "zip",
  4106. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  4107. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  4108. "shasum": "",
  4109. "mirrors": [
  4110. {
  4111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4112. "preferred": true
  4113. }
  4114. ]
  4115. },
  4116. "require": {
  4117. "php": "^7.1"
  4118. },
  4119. "type": "library",
  4120. "extra": {
  4121. "branch-alias": {
  4122. "dev-master": "2.0-dev"
  4123. }
  4124. },
  4125. "autoload": {
  4126. "classmap": [
  4127. "src/"
  4128. ]
  4129. },
  4130. "notification-url": "https://packagist.org/downloads/",
  4131. "license": [
  4132. "BSD-3-Clause"
  4133. ],
  4134. "authors": [
  4135. {
  4136. "name": "Sebastian Bergmann",
  4137. "email": "sebastian@phpunit.de"
  4138. }
  4139. ],
  4140. "description": "Provides a list of PHP built-in functions that operate on resources",
  4141. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  4142. "support": {
  4143. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  4144. "source": "https://github.com/sebastianbergmann/resource-operations/tree/master"
  4145. },
  4146. "time": "2018-10-04T04:07:39+00:00"
  4147. },
  4148. {
  4149. "name": "sebastian/version",
  4150. "version": "2.0.1",
  4151. "source": {
  4152. "type": "git",
  4153. "url": "https://github.com/sebastianbergmann/version.git",
  4154. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  4155. },
  4156. "dist": {
  4157. "type": "zip",
  4158. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  4159. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  4160. "shasum": "",
  4161. "mirrors": [
  4162. {
  4163. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4164. "preferred": true
  4165. }
  4166. ]
  4167. },
  4168. "require": {
  4169. "php": ">=5.6"
  4170. },
  4171. "type": "library",
  4172. "extra": {
  4173. "branch-alias": {
  4174. "dev-master": "2.0.x-dev"
  4175. }
  4176. },
  4177. "autoload": {
  4178. "classmap": [
  4179. "src/"
  4180. ]
  4181. },
  4182. "notification-url": "https://packagist.org/downloads/",
  4183. "license": [
  4184. "BSD-3-Clause"
  4185. ],
  4186. "authors": [
  4187. {
  4188. "name": "Sebastian Bergmann",
  4189. "email": "sebastian@phpunit.de",
  4190. "role": "lead"
  4191. }
  4192. ],
  4193. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  4194. "homepage": "https://github.com/sebastianbergmann/version",
  4195. "support": {
  4196. "issues": "https://github.com/sebastianbergmann/version/issues",
  4197. "source": "https://github.com/sebastianbergmann/version/tree/master"
  4198. },
  4199. "time": "2016-10-03T07:35:21+00:00"
  4200. },
  4201. {
  4202. "name": "symfony/browser-kit",
  4203. "version": "v4.4.16",
  4204. "source": {
  4205. "type": "git",
  4206. "url": "https://github.com/symfony/browser-kit.git",
  4207. "reference": "99b640fd5d06877e3242ba0393b40a7877dfe534"
  4208. },
  4209. "dist": {
  4210. "type": "zip",
  4211. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/99b640fd5d06877e3242ba0393b40a7877dfe534",
  4212. "reference": "99b640fd5d06877e3242ba0393b40a7877dfe534",
  4213. "shasum": "",
  4214. "mirrors": [
  4215. {
  4216. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4217. "preferred": true
  4218. }
  4219. ]
  4220. },
  4221. "require": {
  4222. "php": ">=7.1.3",
  4223. "symfony/dom-crawler": "^3.4|^4.0|^5.0"
  4224. },
  4225. "require-dev": {
  4226. "symfony/css-selector": "^3.4|^4.0|^5.0",
  4227. "symfony/http-client": "^4.3|^5.0",
  4228. "symfony/mime": "^4.3|^5.0",
  4229. "symfony/process": "^3.4|^4.0|^5.0"
  4230. },
  4231. "suggest": {
  4232. "symfony/process": ""
  4233. },
  4234. "type": "library",
  4235. "autoload": {
  4236. "psr-4": {
  4237. "Symfony\\Component\\BrowserKit\\": ""
  4238. },
  4239. "exclude-from-classmap": [
  4240. "/Tests/"
  4241. ]
  4242. },
  4243. "notification-url": "https://packagist.org/downloads/",
  4244. "license": [
  4245. "MIT"
  4246. ],
  4247. "authors": [
  4248. {
  4249. "name": "Fabien Potencier",
  4250. "email": "fabien@symfony.com"
  4251. },
  4252. {
  4253. "name": "Symfony Community",
  4254. "homepage": "https://symfony.com/contributors"
  4255. }
  4256. ],
  4257. "description": "Symfony BrowserKit Component",
  4258. "homepage": "https://symfony.com",
  4259. "support": {
  4260. "source": "https://github.com/symfony/browser-kit/tree/v4.4.16"
  4261. },
  4262. "funding": [
  4263. {
  4264. "url": "https://symfony.com/sponsor",
  4265. "type": "custom"
  4266. },
  4267. {
  4268. "url": "https://github.com/fabpot",
  4269. "type": "github"
  4270. },
  4271. {
  4272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4273. "type": "tidelift"
  4274. }
  4275. ],
  4276. "time": "2020-10-24T11:50:19+00:00"
  4277. },
  4278. {
  4279. "name": "symfony/console",
  4280. "version": "v4.4.16",
  4281. "source": {
  4282. "type": "git",
  4283. "url": "https://github.com/symfony/console.git",
  4284. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5"
  4285. },
  4286. "dist": {
  4287. "type": "zip",
  4288. "url": "https://api.github.com/repos/symfony/console/zipball/20f73dd143a5815d475e0838ff867bce1eebd9d5",
  4289. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5",
  4290. "shasum": "",
  4291. "mirrors": [
  4292. {
  4293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4294. "preferred": true
  4295. }
  4296. ]
  4297. },
  4298. "require": {
  4299. "php": ">=7.1.3",
  4300. "symfony/polyfill-mbstring": "~1.0",
  4301. "symfony/polyfill-php73": "^1.8",
  4302. "symfony/polyfill-php80": "^1.15",
  4303. "symfony/service-contracts": "^1.1|^2"
  4304. },
  4305. "conflict": {
  4306. "symfony/dependency-injection": "<3.4",
  4307. "symfony/event-dispatcher": "<4.3|>=5",
  4308. "symfony/lock": "<4.4",
  4309. "symfony/process": "<3.3"
  4310. },
  4311. "provide": {
  4312. "psr/log-implementation": "1.0"
  4313. },
  4314. "require-dev": {
  4315. "psr/log": "~1.0",
  4316. "symfony/config": "^3.4|^4.0|^5.0",
  4317. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4318. "symfony/event-dispatcher": "^4.3",
  4319. "symfony/lock": "^4.4|^5.0",
  4320. "symfony/process": "^3.4|^4.0|^5.0",
  4321. "symfony/var-dumper": "^4.3|^5.0"
  4322. },
  4323. "suggest": {
  4324. "psr/log": "For using the console logger",
  4325. "symfony/event-dispatcher": "",
  4326. "symfony/lock": "",
  4327. "symfony/process": ""
  4328. },
  4329. "type": "library",
  4330. "autoload": {
  4331. "psr-4": {
  4332. "Symfony\\Component\\Console\\": ""
  4333. },
  4334. "exclude-from-classmap": [
  4335. "/Tests/"
  4336. ]
  4337. },
  4338. "notification-url": "https://packagist.org/downloads/",
  4339. "license": [
  4340. "MIT"
  4341. ],
  4342. "authors": [
  4343. {
  4344. "name": "Fabien Potencier",
  4345. "email": "fabien@symfony.com"
  4346. },
  4347. {
  4348. "name": "Symfony Community",
  4349. "homepage": "https://symfony.com/contributors"
  4350. }
  4351. ],
  4352. "description": "Symfony Console Component",
  4353. "homepage": "https://symfony.com",
  4354. "support": {
  4355. "source": "https://github.com/symfony/console/tree/v4.4.16"
  4356. },
  4357. "funding": [
  4358. {
  4359. "url": "https://symfony.com/sponsor",
  4360. "type": "custom"
  4361. },
  4362. {
  4363. "url": "https://github.com/fabpot",
  4364. "type": "github"
  4365. },
  4366. {
  4367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4368. "type": "tidelift"
  4369. }
  4370. ],
  4371. "time": "2020-10-24T11:50:19+00:00"
  4372. },
  4373. {
  4374. "name": "symfony/css-selector",
  4375. "version": "v4.4.16",
  4376. "source": {
  4377. "type": "git",
  4378. "url": "https://github.com/symfony/css-selector.git",
  4379. "reference": "719506cffda9dba80c75d94ac50f1a2561520e4f"
  4380. },
  4381. "dist": {
  4382. "type": "zip",
  4383. "url": "https://api.github.com/repos/symfony/css-selector/zipball/719506cffda9dba80c75d94ac50f1a2561520e4f",
  4384. "reference": "719506cffda9dba80c75d94ac50f1a2561520e4f",
  4385. "shasum": "",
  4386. "mirrors": [
  4387. {
  4388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4389. "preferred": true
  4390. }
  4391. ]
  4392. },
  4393. "require": {
  4394. "php": ">=7.1.3"
  4395. },
  4396. "type": "library",
  4397. "autoload": {
  4398. "psr-4": {
  4399. "Symfony\\Component\\CssSelector\\": ""
  4400. },
  4401. "exclude-from-classmap": [
  4402. "/Tests/"
  4403. ]
  4404. },
  4405. "notification-url": "https://packagist.org/downloads/",
  4406. "license": [
  4407. "MIT"
  4408. ],
  4409. "authors": [
  4410. {
  4411. "name": "Fabien Potencier",
  4412. "email": "fabien@symfony.com"
  4413. },
  4414. {
  4415. "name": "Jean-François Simon",
  4416. "email": "jeanfrancois.simon@sensiolabs.com"
  4417. },
  4418. {
  4419. "name": "Symfony Community",
  4420. "homepage": "https://symfony.com/contributors"
  4421. }
  4422. ],
  4423. "description": "Symfony CssSelector Component",
  4424. "homepage": "https://symfony.com",
  4425. "support": {
  4426. "source": "https://github.com/symfony/css-selector/tree/v4.4.16"
  4427. },
  4428. "funding": [
  4429. {
  4430. "url": "https://symfony.com/sponsor",
  4431. "type": "custom"
  4432. },
  4433. {
  4434. "url": "https://github.com/fabpot",
  4435. "type": "github"
  4436. },
  4437. {
  4438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4439. "type": "tidelift"
  4440. }
  4441. ],
  4442. "time": "2020-10-24T11:50:19+00:00"
  4443. },
  4444. {
  4445. "name": "symfony/dom-crawler",
  4446. "version": "v4.4.16",
  4447. "source": {
  4448. "type": "git",
  4449. "url": "https://github.com/symfony/dom-crawler.git",
  4450. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e"
  4451. },
  4452. "dist": {
  4453. "type": "zip",
  4454. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  4455. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  4456. "shasum": "",
  4457. "mirrors": [
  4458. {
  4459. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4460. "preferred": true
  4461. }
  4462. ]
  4463. },
  4464. "require": {
  4465. "php": ">=7.1.3",
  4466. "symfony/polyfill-ctype": "~1.8",
  4467. "symfony/polyfill-mbstring": "~1.0"
  4468. },
  4469. "conflict": {
  4470. "masterminds/html5": "<2.6"
  4471. },
  4472. "require-dev": {
  4473. "masterminds/html5": "^2.6",
  4474. "symfony/css-selector": "^3.4|^4.0|^5.0"
  4475. },
  4476. "suggest": {
  4477. "symfony/css-selector": ""
  4478. },
  4479. "type": "library",
  4480. "autoload": {
  4481. "psr-4": {
  4482. "Symfony\\Component\\DomCrawler\\": ""
  4483. },
  4484. "exclude-from-classmap": [
  4485. "/Tests/"
  4486. ]
  4487. },
  4488. "notification-url": "https://packagist.org/downloads/",
  4489. "license": [
  4490. "MIT"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "Fabien Potencier",
  4495. "email": "fabien@symfony.com"
  4496. },
  4497. {
  4498. "name": "Symfony Community",
  4499. "homepage": "https://symfony.com/contributors"
  4500. }
  4501. ],
  4502. "description": "Symfony DomCrawler Component",
  4503. "homepage": "https://symfony.com",
  4504. "support": {
  4505. "source": "https://github.com/symfony/dom-crawler/tree/v4.4.16"
  4506. },
  4507. "funding": [
  4508. {
  4509. "url": "https://symfony.com/sponsor",
  4510. "type": "custom"
  4511. },
  4512. {
  4513. "url": "https://github.com/fabpot",
  4514. "type": "github"
  4515. },
  4516. {
  4517. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4518. "type": "tidelift"
  4519. }
  4520. ],
  4521. "time": "2020-10-24T11:50:19+00:00"
  4522. },
  4523. {
  4524. "name": "symfony/event-dispatcher",
  4525. "version": "v4.4.16",
  4526. "source": {
  4527. "type": "git",
  4528. "url": "https://github.com/symfony/event-dispatcher.git",
  4529. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98"
  4530. },
  4531. "dist": {
  4532. "type": "zip",
  4533. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  4534. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  4535. "shasum": "",
  4536. "mirrors": [
  4537. {
  4538. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4539. "preferred": true
  4540. }
  4541. ]
  4542. },
  4543. "require": {
  4544. "php": ">=7.1.3",
  4545. "symfony/event-dispatcher-contracts": "^1.1"
  4546. },
  4547. "conflict": {
  4548. "symfony/dependency-injection": "<3.4"
  4549. },
  4550. "provide": {
  4551. "psr/event-dispatcher-implementation": "1.0",
  4552. "symfony/event-dispatcher-implementation": "1.1"
  4553. },
  4554. "require-dev": {
  4555. "psr/log": "~1.0",
  4556. "symfony/config": "^3.4|^4.0|^5.0",
  4557. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4558. "symfony/error-handler": "~3.4|~4.4",
  4559. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4560. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  4561. "symfony/service-contracts": "^1.1|^2",
  4562. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  4563. },
  4564. "suggest": {
  4565. "symfony/dependency-injection": "",
  4566. "symfony/http-kernel": ""
  4567. },
  4568. "type": "library",
  4569. "autoload": {
  4570. "psr-4": {
  4571. "Symfony\\Component\\EventDispatcher\\": ""
  4572. },
  4573. "exclude-from-classmap": [
  4574. "/Tests/"
  4575. ]
  4576. },
  4577. "notification-url": "https://packagist.org/downloads/",
  4578. "license": [
  4579. "MIT"
  4580. ],
  4581. "authors": [
  4582. {
  4583. "name": "Fabien Potencier",
  4584. "email": "fabien@symfony.com"
  4585. },
  4586. {
  4587. "name": "Symfony Community",
  4588. "homepage": "https://symfony.com/contributors"
  4589. }
  4590. ],
  4591. "description": "Symfony EventDispatcher Component",
  4592. "homepage": "https://symfony.com",
  4593. "support": {
  4594. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.16"
  4595. },
  4596. "funding": [
  4597. {
  4598. "url": "https://symfony.com/sponsor",
  4599. "type": "custom"
  4600. },
  4601. {
  4602. "url": "https://github.com/fabpot",
  4603. "type": "github"
  4604. },
  4605. {
  4606. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4607. "type": "tidelift"
  4608. }
  4609. ],
  4610. "time": "2020-10-24T11:50:19+00:00"
  4611. },
  4612. {
  4613. "name": "symfony/event-dispatcher-contracts",
  4614. "version": "v1.1.9",
  4615. "source": {
  4616. "type": "git",
  4617. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4618. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  4619. },
  4620. "dist": {
  4621. "type": "zip",
  4622. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  4623. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  4624. "shasum": "",
  4625. "mirrors": [
  4626. {
  4627. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4628. "preferred": true
  4629. }
  4630. ]
  4631. },
  4632. "require": {
  4633. "php": ">=7.1.3"
  4634. },
  4635. "suggest": {
  4636. "psr/event-dispatcher": "",
  4637. "symfony/event-dispatcher-implementation": ""
  4638. },
  4639. "type": "library",
  4640. "extra": {
  4641. "branch-alias": {
  4642. "dev-master": "1.1-dev"
  4643. },
  4644. "thanks": {
  4645. "name": "symfony/contracts",
  4646. "url": "https://github.com/symfony/contracts"
  4647. }
  4648. },
  4649. "autoload": {
  4650. "psr-4": {
  4651. "Symfony\\Contracts\\EventDispatcher\\": ""
  4652. }
  4653. },
  4654. "notification-url": "https://packagist.org/downloads/",
  4655. "license": [
  4656. "MIT"
  4657. ],
  4658. "authors": [
  4659. {
  4660. "name": "Nicolas Grekas",
  4661. "email": "p@tchwork.com"
  4662. },
  4663. {
  4664. "name": "Symfony Community",
  4665. "homepage": "https://symfony.com/contributors"
  4666. }
  4667. ],
  4668. "description": "Generic abstractions related to dispatching event",
  4669. "homepage": "https://symfony.com",
  4670. "keywords": [
  4671. "abstractions",
  4672. "contracts",
  4673. "decoupling",
  4674. "interfaces",
  4675. "interoperability",
  4676. "standards"
  4677. ],
  4678. "support": {
  4679. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9"
  4680. },
  4681. "funding": [
  4682. {
  4683. "url": "https://symfony.com/sponsor",
  4684. "type": "custom"
  4685. },
  4686. {
  4687. "url": "https://github.com/fabpot",
  4688. "type": "github"
  4689. },
  4690. {
  4691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4692. "type": "tidelift"
  4693. }
  4694. ],
  4695. "time": "2020-07-06T13:19:58+00:00"
  4696. },
  4697. {
  4698. "name": "symfony/finder",
  4699. "version": "v4.4.16",
  4700. "source": {
  4701. "type": "git",
  4702. "url": "https://github.com/symfony/finder.git",
  4703. "reference": "26f63b8d4e92f2eecd90f6791a563ebb001abe31"
  4704. },
  4705. "dist": {
  4706. "type": "zip",
  4707. "url": "https://api.github.com/repos/symfony/finder/zipball/26f63b8d4e92f2eecd90f6791a563ebb001abe31",
  4708. "reference": "26f63b8d4e92f2eecd90f6791a563ebb001abe31",
  4709. "shasum": "",
  4710. "mirrors": [
  4711. {
  4712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4713. "preferred": true
  4714. }
  4715. ]
  4716. },
  4717. "require": {
  4718. "php": ">=7.1.3"
  4719. },
  4720. "type": "library",
  4721. "autoload": {
  4722. "psr-4": {
  4723. "Symfony\\Component\\Finder\\": ""
  4724. },
  4725. "exclude-from-classmap": [
  4726. "/Tests/"
  4727. ]
  4728. },
  4729. "notification-url": "https://packagist.org/downloads/",
  4730. "license": [
  4731. "MIT"
  4732. ],
  4733. "authors": [
  4734. {
  4735. "name": "Fabien Potencier",
  4736. "email": "fabien@symfony.com"
  4737. },
  4738. {
  4739. "name": "Symfony Community",
  4740. "homepage": "https://symfony.com/contributors"
  4741. }
  4742. ],
  4743. "description": "Symfony Finder Component",
  4744. "homepage": "https://symfony.com",
  4745. "support": {
  4746. "source": "https://github.com/symfony/finder/tree/v4.4.16"
  4747. },
  4748. "funding": [
  4749. {
  4750. "url": "https://symfony.com/sponsor",
  4751. "type": "custom"
  4752. },
  4753. {
  4754. "url": "https://github.com/fabpot",
  4755. "type": "github"
  4756. },
  4757. {
  4758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4759. "type": "tidelift"
  4760. }
  4761. ],
  4762. "time": "2020-10-24T11:50:19+00:00"
  4763. },
  4764. {
  4765. "name": "symfony/polyfill-ctype",
  4766. "version": "v1.20.0",
  4767. "source": {
  4768. "type": "git",
  4769. "url": "https://github.com/symfony/polyfill-ctype.git",
  4770. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  4771. },
  4772. "dist": {
  4773. "type": "zip",
  4774. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  4775. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  4776. "shasum": "",
  4777. "mirrors": [
  4778. {
  4779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4780. "preferred": true
  4781. }
  4782. ]
  4783. },
  4784. "require": {
  4785. "php": ">=7.1"
  4786. },
  4787. "suggest": {
  4788. "ext-ctype": "For best performance"
  4789. },
  4790. "type": "library",
  4791. "extra": {
  4792. "branch-alias": {
  4793. "dev-main": "1.20-dev"
  4794. },
  4795. "thanks": {
  4796. "name": "symfony/polyfill",
  4797. "url": "https://github.com/symfony/polyfill"
  4798. }
  4799. },
  4800. "autoload": {
  4801. "psr-4": {
  4802. "Symfony\\Polyfill\\Ctype\\": ""
  4803. },
  4804. "files": [
  4805. "bootstrap.php"
  4806. ]
  4807. },
  4808. "notification-url": "https://packagist.org/downloads/",
  4809. "license": [
  4810. "MIT"
  4811. ],
  4812. "authors": [
  4813. {
  4814. "name": "Gert de Pagter",
  4815. "email": "BackEndTea@gmail.com"
  4816. },
  4817. {
  4818. "name": "Symfony Community",
  4819. "homepage": "https://symfony.com/contributors"
  4820. }
  4821. ],
  4822. "description": "Symfony polyfill for ctype functions",
  4823. "homepage": "https://symfony.com",
  4824. "keywords": [
  4825. "compatibility",
  4826. "ctype",
  4827. "polyfill",
  4828. "portable"
  4829. ],
  4830. "support": {
  4831. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  4832. },
  4833. "funding": [
  4834. {
  4835. "url": "https://symfony.com/sponsor",
  4836. "type": "custom"
  4837. },
  4838. {
  4839. "url": "https://github.com/fabpot",
  4840. "type": "github"
  4841. },
  4842. {
  4843. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4844. "type": "tidelift"
  4845. }
  4846. ],
  4847. "time": "2020-10-23T14:02:19+00:00"
  4848. },
  4849. {
  4850. "name": "symfony/polyfill-php73",
  4851. "version": "v1.20.0",
  4852. "source": {
  4853. "type": "git",
  4854. "url": "https://github.com/symfony/polyfill-php73.git",
  4855. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  4856. },
  4857. "dist": {
  4858. "type": "zip",
  4859. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  4860. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  4861. "shasum": "",
  4862. "mirrors": [
  4863. {
  4864. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4865. "preferred": true
  4866. }
  4867. ]
  4868. },
  4869. "require": {
  4870. "php": ">=7.1"
  4871. },
  4872. "type": "library",
  4873. "extra": {
  4874. "branch-alias": {
  4875. "dev-main": "1.20-dev"
  4876. },
  4877. "thanks": {
  4878. "name": "symfony/polyfill",
  4879. "url": "https://github.com/symfony/polyfill"
  4880. }
  4881. },
  4882. "autoload": {
  4883. "psr-4": {
  4884. "Symfony\\Polyfill\\Php73\\": ""
  4885. },
  4886. "files": [
  4887. "bootstrap.php"
  4888. ],
  4889. "classmap": [
  4890. "Resources/stubs"
  4891. ]
  4892. },
  4893. "notification-url": "https://packagist.org/downloads/",
  4894. "license": [
  4895. "MIT"
  4896. ],
  4897. "authors": [
  4898. {
  4899. "name": "Nicolas Grekas",
  4900. "email": "p@tchwork.com"
  4901. },
  4902. {
  4903. "name": "Symfony Community",
  4904. "homepage": "https://symfony.com/contributors"
  4905. }
  4906. ],
  4907. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4908. "homepage": "https://symfony.com",
  4909. "keywords": [
  4910. "compatibility",
  4911. "polyfill",
  4912. "portable",
  4913. "shim"
  4914. ],
  4915. "support": {
  4916. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  4917. },
  4918. "funding": [
  4919. {
  4920. "url": "https://symfony.com/sponsor",
  4921. "type": "custom"
  4922. },
  4923. {
  4924. "url": "https://github.com/fabpot",
  4925. "type": "github"
  4926. },
  4927. {
  4928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4929. "type": "tidelift"
  4930. }
  4931. ],
  4932. "time": "2020-10-23T14:02:19+00:00"
  4933. },
  4934. {
  4935. "name": "symfony/polyfill-php80",
  4936. "version": "v1.20.0",
  4937. "source": {
  4938. "type": "git",
  4939. "url": "https://github.com/symfony/polyfill-php80.git",
  4940. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  4941. },
  4942. "dist": {
  4943. "type": "zip",
  4944. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  4945. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  4946. "shasum": "",
  4947. "mirrors": [
  4948. {
  4949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4950. "preferred": true
  4951. }
  4952. ]
  4953. },
  4954. "require": {
  4955. "php": ">=7.1"
  4956. },
  4957. "type": "library",
  4958. "extra": {
  4959. "branch-alias": {
  4960. "dev-main": "1.20-dev"
  4961. },
  4962. "thanks": {
  4963. "name": "symfony/polyfill",
  4964. "url": "https://github.com/symfony/polyfill"
  4965. }
  4966. },
  4967. "autoload": {
  4968. "psr-4": {
  4969. "Symfony\\Polyfill\\Php80\\": ""
  4970. },
  4971. "files": [
  4972. "bootstrap.php"
  4973. ],
  4974. "classmap": [
  4975. "Resources/stubs"
  4976. ]
  4977. },
  4978. "notification-url": "https://packagist.org/downloads/",
  4979. "license": [
  4980. "MIT"
  4981. ],
  4982. "authors": [
  4983. {
  4984. "name": "Ion Bazan",
  4985. "email": "ion.bazan@gmail.com"
  4986. },
  4987. {
  4988. "name": "Nicolas Grekas",
  4989. "email": "p@tchwork.com"
  4990. },
  4991. {
  4992. "name": "Symfony Community",
  4993. "homepage": "https://symfony.com/contributors"
  4994. }
  4995. ],
  4996. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4997. "homepage": "https://symfony.com",
  4998. "keywords": [
  4999. "compatibility",
  5000. "polyfill",
  5001. "portable",
  5002. "shim"
  5003. ],
  5004. "support": {
  5005. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  5006. },
  5007. "funding": [
  5008. {
  5009. "url": "https://symfony.com/sponsor",
  5010. "type": "custom"
  5011. },
  5012. {
  5013. "url": "https://github.com/fabpot",
  5014. "type": "github"
  5015. },
  5016. {
  5017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5018. "type": "tidelift"
  5019. }
  5020. ],
  5021. "time": "2020-10-23T14:02:19+00:00"
  5022. },
  5023. {
  5024. "name": "symfony/service-contracts",
  5025. "version": "v2.2.0",
  5026. "source": {
  5027. "type": "git",
  5028. "url": "https://github.com/symfony/service-contracts.git",
  5029. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  5030. },
  5031. "dist": {
  5032. "type": "zip",
  5033. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5034. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5035. "shasum": "",
  5036. "mirrors": [
  5037. {
  5038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5039. "preferred": true
  5040. }
  5041. ]
  5042. },
  5043. "require": {
  5044. "php": ">=7.2.5",
  5045. "psr/container": "^1.0"
  5046. },
  5047. "suggest": {
  5048. "symfony/service-implementation": ""
  5049. },
  5050. "type": "library",
  5051. "extra": {
  5052. "branch-alias": {
  5053. "dev-master": "2.2-dev"
  5054. },
  5055. "thanks": {
  5056. "name": "symfony/contracts",
  5057. "url": "https://github.com/symfony/contracts"
  5058. }
  5059. },
  5060. "autoload": {
  5061. "psr-4": {
  5062. "Symfony\\Contracts\\Service\\": ""
  5063. }
  5064. },
  5065. "notification-url": "https://packagist.org/downloads/",
  5066. "license": [
  5067. "MIT"
  5068. ],
  5069. "authors": [
  5070. {
  5071. "name": "Nicolas Grekas",
  5072. "email": "p@tchwork.com"
  5073. },
  5074. {
  5075. "name": "Symfony Community",
  5076. "homepage": "https://symfony.com/contributors"
  5077. }
  5078. ],
  5079. "description": "Generic abstractions related to writing services",
  5080. "homepage": "https://symfony.com",
  5081. "keywords": [
  5082. "abstractions",
  5083. "contracts",
  5084. "decoupling",
  5085. "interfaces",
  5086. "interoperability",
  5087. "standards"
  5088. ],
  5089. "support": {
  5090. "source": "https://github.com/symfony/service-contracts/tree/master"
  5091. },
  5092. "funding": [
  5093. {
  5094. "url": "https://symfony.com/sponsor",
  5095. "type": "custom"
  5096. },
  5097. {
  5098. "url": "https://github.com/fabpot",
  5099. "type": "github"
  5100. },
  5101. {
  5102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5103. "type": "tidelift"
  5104. }
  5105. ],
  5106. "time": "2020-09-07T11:33:47+00:00"
  5107. },
  5108. {
  5109. "name": "symfony/yaml",
  5110. "version": "v4.4.16",
  5111. "source": {
  5112. "type": "git",
  5113. "url": "https://github.com/symfony/yaml.git",
  5114. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2"
  5115. },
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://api.github.com/repos/symfony/yaml/zipball/543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  5119. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  5120. "shasum": "",
  5121. "mirrors": [
  5122. {
  5123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5124. "preferred": true
  5125. }
  5126. ]
  5127. },
  5128. "require": {
  5129. "php": ">=7.1.3",
  5130. "symfony/polyfill-ctype": "~1.8"
  5131. },
  5132. "conflict": {
  5133. "symfony/console": "<3.4"
  5134. },
  5135. "require-dev": {
  5136. "symfony/console": "^3.4|^4.0|^5.0"
  5137. },
  5138. "suggest": {
  5139. "symfony/console": "For validating YAML files using the lint command"
  5140. },
  5141. "type": "library",
  5142. "autoload": {
  5143. "psr-4": {
  5144. "Symfony\\Component\\Yaml\\": ""
  5145. },
  5146. "exclude-from-classmap": [
  5147. "/Tests/"
  5148. ]
  5149. },
  5150. "notification-url": "https://packagist.org/downloads/",
  5151. "license": [
  5152. "MIT"
  5153. ],
  5154. "authors": [
  5155. {
  5156. "name": "Fabien Potencier",
  5157. "email": "fabien@symfony.com"
  5158. },
  5159. {
  5160. "name": "Symfony Community",
  5161. "homepage": "https://symfony.com/contributors"
  5162. }
  5163. ],
  5164. "description": "Symfony Yaml Component",
  5165. "homepage": "https://symfony.com",
  5166. "support": {
  5167. "source": "https://github.com/symfony/yaml/tree/v4.4.16"
  5168. },
  5169. "funding": [
  5170. {
  5171. "url": "https://symfony.com/sponsor",
  5172. "type": "custom"
  5173. },
  5174. {
  5175. "url": "https://github.com/fabpot",
  5176. "type": "github"
  5177. },
  5178. {
  5179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5180. "type": "tidelift"
  5181. }
  5182. ],
  5183. "time": "2020-10-24T11:50:19+00:00"
  5184. },
  5185. {
  5186. "name": "theseer/tokenizer",
  5187. "version": "1.2.0",
  5188. "source": {
  5189. "type": "git",
  5190. "url": "https://github.com/theseer/tokenizer.git",
  5191. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  5192. },
  5193. "dist": {
  5194. "type": "zip",
  5195. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  5196. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  5197. "shasum": "",
  5198. "mirrors": [
  5199. {
  5200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5201. "preferred": true
  5202. }
  5203. ]
  5204. },
  5205. "require": {
  5206. "ext-dom": "*",
  5207. "ext-tokenizer": "*",
  5208. "ext-xmlwriter": "*",
  5209. "php": "^7.2 || ^8.0"
  5210. },
  5211. "type": "library",
  5212. "autoload": {
  5213. "classmap": [
  5214. "src/"
  5215. ]
  5216. },
  5217. "notification-url": "https://packagist.org/downloads/",
  5218. "license": [
  5219. "BSD-3-Clause"
  5220. ],
  5221. "authors": [
  5222. {
  5223. "name": "Arne Blankerts",
  5224. "email": "arne@blankerts.de",
  5225. "role": "Developer"
  5226. }
  5227. ],
  5228. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5229. "support": {
  5230. "issues": "https://github.com/theseer/tokenizer/issues",
  5231. "source": "https://github.com/theseer/tokenizer/tree/master"
  5232. },
  5233. "funding": [
  5234. {
  5235. "url": "https://github.com/theseer",
  5236. "type": "github"
  5237. }
  5238. ],
  5239. "time": "2020-07-12T23:59:07+00:00"
  5240. },
  5241. {
  5242. "name": "webmozart/assert",
  5243. "version": "1.9.1",
  5244. "source": {
  5245. "type": "git",
  5246. "url": "https://github.com/webmozart/assert.git",
  5247. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  5248. },
  5249. "dist": {
  5250. "type": "zip",
  5251. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  5252. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  5253. "shasum": "",
  5254. "mirrors": [
  5255. {
  5256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5257. "preferred": true
  5258. }
  5259. ]
  5260. },
  5261. "require": {
  5262. "php": "^5.3.3 || ^7.0 || ^8.0",
  5263. "symfony/polyfill-ctype": "^1.8"
  5264. },
  5265. "conflict": {
  5266. "phpstan/phpstan": "<0.12.20",
  5267. "vimeo/psalm": "<3.9.1"
  5268. },
  5269. "require-dev": {
  5270. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  5271. },
  5272. "type": "library",
  5273. "autoload": {
  5274. "psr-4": {
  5275. "Webmozart\\Assert\\": "src/"
  5276. }
  5277. },
  5278. "notification-url": "https://packagist.org/downloads/",
  5279. "license": [
  5280. "MIT"
  5281. ],
  5282. "authors": [
  5283. {
  5284. "name": "Bernhard Schussek",
  5285. "email": "bschussek@gmail.com"
  5286. }
  5287. ],
  5288. "description": "Assertions to validate method input/output with nice error messages.",
  5289. "keywords": [
  5290. "assert",
  5291. "check",
  5292. "validate"
  5293. ],
  5294. "support": {
  5295. "issues": "https://github.com/webmozart/assert/issues",
  5296. "source": "https://github.com/webmozart/assert/tree/master"
  5297. },
  5298. "time": "2020-07-08T17:02:28+00:00"
  5299. },
  5300. {
  5301. "name": "yiisoft/yii2-debug",
  5302. "version": "2.0.14",
  5303. "source": {
  5304. "type": "git",
  5305. "url": "https://github.com/yiisoft/yii2-debug.git",
  5306. "reference": "dc5a4a8529de1a41dbb037dbabf1f3f93002f21d"
  5307. },
  5308. "dist": {
  5309. "type": "zip",
  5310. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/dc5a4a8529de1a41dbb037dbabf1f3f93002f21d",
  5311. "reference": "dc5a4a8529de1a41dbb037dbabf1f3f93002f21d",
  5312. "shasum": "",
  5313. "mirrors": [
  5314. {
  5315. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5316. "preferred": true
  5317. }
  5318. ]
  5319. },
  5320. "require": {
  5321. "yiisoft/yii2": "~2.0.13",
  5322. "yiisoft/yii2-bootstrap": "~2.0.0"
  5323. },
  5324. "type": "yii2-extension",
  5325. "extra": {
  5326. "branch-alias": {
  5327. "dev-master": "2.0.x-dev"
  5328. }
  5329. },
  5330. "autoload": {
  5331. "psr-4": {
  5332. "yii\\debug\\": "src"
  5333. }
  5334. },
  5335. "notification-url": "https://packagist.org/downloads/",
  5336. "license": [
  5337. "BSD-3-Clause"
  5338. ],
  5339. "authors": [
  5340. {
  5341. "name": "Qiang Xue",
  5342. "email": "qiang.xue@gmail.com"
  5343. }
  5344. ],
  5345. "description": "The debugger extension for the Yii framework",
  5346. "keywords": [
  5347. "debug",
  5348. "debugger",
  5349. "yii2"
  5350. ],
  5351. "support": {
  5352. "forum": "http://www.yiiframework.com/forum/",
  5353. "irc": "irc://irc.freenode.net/yii",
  5354. "issues": "https://github.com/yiisoft/yii2-debug/issues",
  5355. "source": "https://github.com/yiisoft/yii2-debug",
  5356. "wiki": "http://www.yiiframework.com/wiki/"
  5357. },
  5358. "time": "2018-09-23T21:41:04+00:00"
  5359. },
  5360. {
  5361. "name": "yiisoft/yii2-faker",
  5362. "version": "2.0.4",
  5363. "source": {
  5364. "type": "git",
  5365. "url": "https://github.com/yiisoft/yii2-faker.git",
  5366. "reference": "3df62b1dcb272a8413f9c6e532c9d73f325ccde1"
  5367. },
  5368. "dist": {
  5369. "type": "zip",
  5370. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/3df62b1dcb272a8413f9c6e532c9d73f325ccde1",
  5371. "reference": "3df62b1dcb272a8413f9c6e532c9d73f325ccde1",
  5372. "shasum": "",
  5373. "mirrors": [
  5374. {
  5375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5376. "preferred": true
  5377. }
  5378. ]
  5379. },
  5380. "require": {
  5381. "fzaninotto/faker": "~1.4",
  5382. "yiisoft/yii2": "~2.0.0"
  5383. },
  5384. "type": "yii2-extension",
  5385. "extra": {
  5386. "branch-alias": {
  5387. "dev-master": "2.0.x-dev"
  5388. }
  5389. },
  5390. "autoload": {
  5391. "psr-4": {
  5392. "yii\\faker\\": ""
  5393. }
  5394. },
  5395. "notification-url": "https://packagist.org/downloads/",
  5396. "license": [
  5397. "BSD-3-Clause"
  5398. ],
  5399. "authors": [
  5400. {
  5401. "name": "Mark Jebri",
  5402. "email": "mark.github@yandex.ru"
  5403. }
  5404. ],
  5405. "description": "Fixture generator. The Faker integration for the Yii framework.",
  5406. "keywords": [
  5407. "Fixture",
  5408. "faker",
  5409. "yii2"
  5410. ],
  5411. "support": {
  5412. "forum": "http://www.yiiframework.com/forum/",
  5413. "irc": "irc://irc.freenode.net/yii",
  5414. "issues": "https://github.com/yiisoft/yii2-faker/issues",
  5415. "source": "https://github.com/yiisoft/yii2-faker",
  5416. "wiki": "http://www.yiiframework.com/wiki/"
  5417. },
  5418. "time": "2018-02-19T20:27:10+00:00"
  5419. },
  5420. {
  5421. "name": "yiisoft/yii2-gii",
  5422. "version": "2.0.8",
  5423. "source": {
  5424. "type": "git",
  5425. "url": "https://github.com/yiisoft/yii2-gii.git",
  5426. "reference": "c02adc552bcf3a0ef6f3694a9dcbf209f4885ab1"
  5427. },
  5428. "dist": {
  5429. "type": "zip",
  5430. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/c02adc552bcf3a0ef6f3694a9dcbf209f4885ab1",
  5431. "reference": "c02adc552bcf3a0ef6f3694a9dcbf209f4885ab1",
  5432. "shasum": "",
  5433. "mirrors": [
  5434. {
  5435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5436. "preferred": true
  5437. }
  5438. ]
  5439. },
  5440. "require": {
  5441. "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
  5442. "phpspec/php-diff": ">=1.0.2",
  5443. "yiisoft/yii2": "~2.0.14",
  5444. "yiisoft/yii2-bootstrap": "~2.0.0"
  5445. },
  5446. "type": "yii2-extension",
  5447. "extra": {
  5448. "branch-alias": {
  5449. "dev-master": "2.0.x-dev"
  5450. }
  5451. },
  5452. "autoload": {
  5453. "psr-4": {
  5454. "yii\\gii\\": "src"
  5455. }
  5456. },
  5457. "notification-url": "https://packagist.org/downloads/",
  5458. "license": [
  5459. "BSD-3-Clause"
  5460. ],
  5461. "authors": [
  5462. {
  5463. "name": "Qiang Xue",
  5464. "email": "qiang.xue@gmail.com"
  5465. }
  5466. ],
  5467. "description": "The Gii extension for the Yii framework",
  5468. "keywords": [
  5469. "code generator",
  5470. "gii",
  5471. "yii2"
  5472. ],
  5473. "support": {
  5474. "forum": "http://www.yiiframework.com/forum/",
  5475. "irc": "irc://irc.freenode.net/yii",
  5476. "issues": "https://github.com/yiisoft/yii2-gii/issues",
  5477. "source": "https://github.com/yiisoft/yii2-gii",
  5478. "wiki": "http://www.yiiframework.com/wiki/"
  5479. },
  5480. "time": "2018-12-08T10:07:49+00:00"
  5481. }
  5482. ],
  5483. "aliases": [],
  5484. "minimum-stability": "stable",
  5485. "stability-flags": [],
  5486. "prefer-stable": false,
  5487. "prefer-lowest": false,
  5488. "platform": {
  5489. "php": ">=5.4.0",
  5490. "ext-json": "*",
  5491. "ext-mbstring": "*"
  5492. },
  5493. "platform-dev": [],
  5494. "plugin-api-version": "2.0.0"
  5495. }