installed.json 137 KB

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