installed.json 151 KB

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