composer.lock 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "hash": "a7befa8ee039746425073d8946258e80",
  8. "content-hash": "09cf6664195ab89b0ab4159ac984513f",
  9. "packages": [
  10. {
  11. "name": "bower-asset/bootstrap",
  12. "version": "v3.3.7",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/twbs/bootstrap.git",
  16. "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/0b9c4a4007c44201dce9a6cc1a38407005c26c86",
  21. "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86",
  22. "shasum": null
  23. },
  24. "require": {
  25. "bower-asset/jquery": ">=1.9.1,<4.0"
  26. },
  27. "type": "bower-asset",
  28. "license": [
  29. "MIT"
  30. ]
  31. },
  32. {
  33. "name": "bower-asset/inputmask",
  34. "version": "3.3.11",
  35. "source": {
  36. "type": "git",
  37. "url": "https://github.com/RobinHerbots/Inputmask.git",
  38. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  39. },
  40. "dist": {
  41. "type": "zip",
  42. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  43. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b",
  44. "shasum": null
  45. },
  46. "require": {
  47. "bower-asset/jquery": ">=1.7"
  48. },
  49. "type": "bower-asset",
  50. "license": [
  51. "http://opensource.org/licenses/mit-license.php"
  52. ]
  53. },
  54. {
  55. "name": "bower-asset/jquery",
  56. "version": "3.2.1",
  57. "source": {
  58. "type": "git",
  59. "url": "https://github.com/jquery/jquery-dist.git",
  60. "reference": "77d2a51d0520d2ee44173afdf4e40a9201f5964e"
  61. },
  62. "dist": {
  63. "type": "zip",
  64. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/77d2a51d0520d2ee44173afdf4e40a9201f5964e",
  65. "reference": "77d2a51d0520d2ee44173afdf4e40a9201f5964e",
  66. "shasum": null
  67. },
  68. "type": "bower-asset",
  69. "license": [
  70. "MIT"
  71. ]
  72. },
  73. {
  74. "name": "bower-asset/punycode",
  75. "version": "v1.3.2",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/bestiejs/punycode.js.git",
  79. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  84. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  85. "shasum": null
  86. },
  87. "type": "bower-asset"
  88. },
  89. {
  90. "name": "bower-asset/yii2-pjax",
  91. "version": "2.0.7.1",
  92. "source": {
  93. "type": "git",
  94. "url": "https://github.com/yiisoft/jquery-pjax.git",
  95. "reference": "aef7b953107264f00234902a3880eb50dafc48be"
  96. },
  97. "dist": {
  98. "type": "zip",
  99. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/aef7b953107264f00234902a3880eb50dafc48be",
  100. "reference": "aef7b953107264f00234902a3880eb50dafc48be",
  101. "shasum": null
  102. },
  103. "require": {
  104. "bower-asset/jquery": ">=1.8"
  105. },
  106. "type": "bower-asset",
  107. "license": [
  108. "MIT"
  109. ]
  110. },
  111. {
  112. "name": "cebe/markdown",
  113. "version": "1.1.2",
  114. "source": {
  115. "type": "git",
  116. "url": "https://github.com/cebe/markdown.git",
  117. "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e"
  118. },
  119. "dist": {
  120. "type": "zip",
  121. "url": "https://files.phpcomposer.com/files/cebe/markdown/25b28bae8a6f185b5030673af77b32e1163d5c6e.zip",
  122. "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e",
  123. "shasum": ""
  124. },
  125. "require": {
  126. "lib-pcre": "*",
  127. "php": ">=5.4.0"
  128. },
  129. "require-dev": {
  130. "cebe/indent": "*",
  131. "facebook/xhprof": "*@dev",
  132. "phpunit/phpunit": "4.1.*"
  133. },
  134. "bin": [
  135. "bin/markdown"
  136. ],
  137. "type": "library",
  138. "extra": {
  139. "branch-alias": {
  140. "dev-master": "1.1.x-dev"
  141. }
  142. },
  143. "autoload": {
  144. "psr-4": {
  145. "cebe\\markdown\\": ""
  146. }
  147. },
  148. "notification-url": "https://packagist.org/downloads/",
  149. "license": [
  150. "MIT"
  151. ],
  152. "authors": [
  153. {
  154. "name": "Carsten Brandt",
  155. "email": "mail@cebe.cc",
  156. "homepage": "http://cebe.cc/",
  157. "role": "Creator"
  158. }
  159. ],
  160. "description": "A super fast, highly extensible markdown parser for PHP",
  161. "homepage": "https://github.com/cebe/markdown#readme",
  162. "keywords": [
  163. "extensible",
  164. "fast",
  165. "gfm",
  166. "markdown",
  167. "markdown-extra"
  168. ],
  169. "time": "2017-07-16 21:13:23"
  170. },
  171. {
  172. "name": "doctrine/lexer",
  173. "version": "v1.0.1",
  174. "source": {
  175. "type": "git",
  176. "url": "https://github.com/doctrine/lexer.git",
  177. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  178. },
  179. "dist": {
  180. "type": "zip",
  181. "url": "https://files.phpcomposer.com/files/doctrine/lexer/83893c552fd2045dd78aef794c31e694c37c0b8c.zip",
  182. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  183. "shasum": ""
  184. },
  185. "require": {
  186. "php": ">=5.3.2"
  187. },
  188. "type": "library",
  189. "extra": {
  190. "branch-alias": {
  191. "dev-master": "1.0.x-dev"
  192. }
  193. },
  194. "autoload": {
  195. "psr-0": {
  196. "Doctrine\\Common\\Lexer\\": "lib/"
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "MIT"
  202. ],
  203. "authors": [
  204. {
  205. "name": "Roman Borschel",
  206. "email": "roman@code-factory.org"
  207. },
  208. {
  209. "name": "Guilherme Blanco",
  210. "email": "guilhermeblanco@gmail.com"
  211. },
  212. {
  213. "name": "Johannes Schmitt",
  214. "email": "schmittjoh@gmail.com"
  215. }
  216. ],
  217. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  218. "homepage": "http://www.doctrine-project.org",
  219. "keywords": [
  220. "lexer",
  221. "parser"
  222. ],
  223. "time": "2014-09-09 13:34:57"
  224. },
  225. {
  226. "name": "egulias/email-validator",
  227. "version": "2.1.3",
  228. "source": {
  229. "type": "git",
  230. "url": "https://github.com/egulias/EmailValidator.git",
  231. "reference": "1bec00a10039b823cc94eef4eddd47dcd3b2ca04"
  232. },
  233. "dist": {
  234. "type": "zip",
  235. "url": "https://files.phpcomposer.com/files/egulias/EmailValidator/1bec00a10039b823cc94eef4eddd47dcd3b2ca04.zip",
  236. "reference": "1bec00a10039b823cc94eef4eddd47dcd3b2ca04",
  237. "shasum": ""
  238. },
  239. "require": {
  240. "doctrine/lexer": "^1.0.1",
  241. "php": ">= 5.5"
  242. },
  243. "require-dev": {
  244. "dominicsayers/isemail": "dev-master",
  245. "phpunit/phpunit": "^4.8.35",
  246. "satooshi/php-coveralls": "^1.0.1"
  247. },
  248. "suggest": {
  249. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  250. },
  251. "type": "library",
  252. "extra": {
  253. "branch-alias": {
  254. "dev-master": "2.0.x-dev"
  255. }
  256. },
  257. "autoload": {
  258. "psr-4": {
  259. "Egulias\\EmailValidator\\": "EmailValidator"
  260. }
  261. },
  262. "notification-url": "https://packagist.org/downloads/",
  263. "license": [
  264. "MIT"
  265. ],
  266. "authors": [
  267. {
  268. "name": "Eduardo Gulias Davis"
  269. }
  270. ],
  271. "description": "A library for validating emails against several RFCs",
  272. "homepage": "https://github.com/egulias/EmailValidator",
  273. "keywords": [
  274. "email",
  275. "emailvalidation",
  276. "emailvalidator",
  277. "validation",
  278. "validator"
  279. ],
  280. "time": "2017-11-15 23:40:40"
  281. },
  282. {
  283. "name": "ezyang/htmlpurifier",
  284. "version": "v4.9.3",
  285. "source": {
  286. "type": "git",
  287. "url": "https://github.com/ezyang/htmlpurifier.git",
  288. "reference": "95e1bae3182efc0f3422896a3236e991049dac69"
  289. },
  290. "dist": {
  291. "type": "zip",
  292. "url": "https://files.phpcomposer.com/files/ezyang/htmlpurifier/95e1bae3182efc0f3422896a3236e991049dac69.zip",
  293. "reference": "95e1bae3182efc0f3422896a3236e991049dac69",
  294. "shasum": ""
  295. },
  296. "require": {
  297. "php": ">=5.2"
  298. },
  299. "require-dev": {
  300. "simpletest/simpletest": "^1.1"
  301. },
  302. "type": "library",
  303. "autoload": {
  304. "psr-0": {
  305. "HTMLPurifier": "library/"
  306. },
  307. "files": [
  308. "library/HTMLPurifier.composer.php"
  309. ]
  310. },
  311. "notification-url": "https://packagist.org/downloads/",
  312. "license": [
  313. "LGPL"
  314. ],
  315. "authors": [
  316. {
  317. "name": "Edward Z. Yang",
  318. "email": "admin@htmlpurifier.org",
  319. "homepage": "http://ezyang.com"
  320. }
  321. ],
  322. "description": "Standards compliant HTML filter written in PHP",
  323. "homepage": "http://htmlpurifier.org/",
  324. "keywords": [
  325. "html"
  326. ],
  327. "time": "2017-06-03 02:28:16"
  328. },
  329. {
  330. "name": "php-amqplib/php-amqplib",
  331. "version": "v2.6.3",
  332. "source": {
  333. "type": "git",
  334. "url": "https://github.com/php-amqplib/php-amqplib.git",
  335. "reference": "fa2f0d4410a11008cb36b379177291be7ee9e4f6"
  336. },
  337. "dist": {
  338. "type": "zip",
  339. "url": "https://files.phpcomposer.com/files/php-amqplib/php-amqplib/fa2f0d4410a11008cb36b379177291be7ee9e4f6.zip",
  340. "reference": "fa2f0d4410a11008cb36b379177291be7ee9e4f6",
  341. "shasum": ""
  342. },
  343. "require": {
  344. "ext-bcmath": "*",
  345. "ext-mbstring": "*",
  346. "php": ">=5.3.0"
  347. },
  348. "replace": {
  349. "videlalvaro/php-amqplib": "self.version"
  350. },
  351. "require-dev": {
  352. "phpunit/phpunit": "^4.8",
  353. "scrutinizer/ocular": "^1.1",
  354. "squizlabs/php_codesniffer": "^2.5"
  355. },
  356. "suggest": {
  357. "ext-sockets": "Use AMQPSocketConnection"
  358. },
  359. "type": "library",
  360. "extra": {
  361. "branch-alias": {
  362. "dev-master": "2.7-dev"
  363. }
  364. },
  365. "autoload": {
  366. "psr-4": {
  367. "PhpAmqpLib\\": "PhpAmqpLib/"
  368. }
  369. },
  370. "notification-url": "https://packagist.org/downloads/",
  371. "license": [
  372. "LGPL-2.1"
  373. ],
  374. "authors": [
  375. {
  376. "name": "Alvaro Videla",
  377. "role": "Original Maintainer"
  378. },
  379. {
  380. "name": "John Kelly",
  381. "email": "johnmkelly86@gmail.com",
  382. "role": "Maintainer"
  383. },
  384. {
  385. "name": "Raúl Araya",
  386. "email": "nubeiro@gmail.com",
  387. "role": "Maintainer"
  388. }
  389. ],
  390. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  391. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  392. "keywords": [
  393. "message",
  394. "queue",
  395. "rabbitmq"
  396. ],
  397. "time": "2016-04-11 14:30:01"
  398. },
  399. {
  400. "name": "swiftmailer/swiftmailer",
  401. "version": "v6.0.2",
  402. "source": {
  403. "type": "git",
  404. "url": "https://github.com/swiftmailer/swiftmailer.git",
  405. "reference": "412333372fb6c8ffb65496a2bbd7321af75733fc"
  406. },
  407. "dist": {
  408. "type": "zip",
  409. "url": "https://files.phpcomposer.com/files/swiftmailer/swiftmailer/412333372fb6c8ffb65496a2bbd7321af75733fc.zip",
  410. "reference": "412333372fb6c8ffb65496a2bbd7321af75733fc",
  411. "shasum": ""
  412. },
  413. "require": {
  414. "egulias/email-validator": "~2.0",
  415. "php": ">=7.0.0"
  416. },
  417. "require-dev": {
  418. "mockery/mockery": "~0.9.1",
  419. "symfony/phpunit-bridge": "~3.3@dev"
  420. },
  421. "type": "library",
  422. "extra": {
  423. "branch-alias": {
  424. "dev-master": "6.0-dev"
  425. }
  426. },
  427. "autoload": {
  428. "files": [
  429. "lib/swift_required.php"
  430. ]
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "MIT"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Chris Corbyn"
  439. },
  440. {
  441. "name": "Fabien Potencier",
  442. "email": "fabien@symfony.com"
  443. }
  444. ],
  445. "description": "Swiftmailer, free feature-rich PHP mailer",
  446. "homepage": "http://swiftmailer.symfony.com",
  447. "keywords": [
  448. "email",
  449. "mail",
  450. "mailer"
  451. ],
  452. "time": "2017-09-30 22:39:41"
  453. },
  454. {
  455. "name": "yiisoft/yii2",
  456. "version": "2.0.13.1",
  457. "source": {
  458. "type": "git",
  459. "url": "https://github.com/yiisoft/yii2-framework.git",
  460. "reference": "7af96d8da5ea3e9a5dd05d0e734b21c5726a6ddf"
  461. },
  462. "dist": {
  463. "type": "zip",
  464. "url": "https://files.phpcomposer.com/files/yiisoft/yii2-framework/7af96d8da5ea3e9a5dd05d0e734b21c5726a6ddf.zip",
  465. "reference": "7af96d8da5ea3e9a5dd05d0e734b21c5726a6ddf",
  466. "shasum": ""
  467. },
  468. "require": {
  469. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  470. "bower-asset/jquery": "3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  471. "bower-asset/punycode": "1.3.*",
  472. "bower-asset/yii2-pjax": "~2.0.1",
  473. "cebe/markdown": "~1.0.0 | ~1.1.0",
  474. "ext-ctype": "*",
  475. "ext-mbstring": "*",
  476. "ezyang/htmlpurifier": "~4.6",
  477. "lib-pcre": "*",
  478. "php": ">=5.4.0",
  479. "yiisoft/yii2-composer": "~2.0.4"
  480. },
  481. "bin": [
  482. "yii"
  483. ],
  484. "type": "library",
  485. "extra": {
  486. "branch-alias": {
  487. "dev-master": "2.0.x-dev"
  488. }
  489. },
  490. "autoload": {
  491. "psr-4": {
  492. "yii\\": ""
  493. }
  494. },
  495. "notification-url": "https://packagist.org/downloads/",
  496. "license": [
  497. "BSD-3-Clause"
  498. ],
  499. "authors": [
  500. {
  501. "name": "Qiang Xue",
  502. "email": "qiang.xue@gmail.com",
  503. "homepage": "http://www.yiiframework.com/",
  504. "role": "Founder and project lead"
  505. },
  506. {
  507. "name": "Alexander Makarov",
  508. "email": "sam@rmcreative.ru",
  509. "homepage": "http://rmcreative.ru/",
  510. "role": "Core framework development"
  511. },
  512. {
  513. "name": "Maurizio Domba",
  514. "homepage": "http://mdomba.info/",
  515. "role": "Core framework development"
  516. },
  517. {
  518. "name": "Carsten Brandt",
  519. "email": "mail@cebe.cc",
  520. "homepage": "http://cebe.cc/",
  521. "role": "Core framework development"
  522. },
  523. {
  524. "name": "Timur Ruziev",
  525. "email": "resurtm@gmail.com",
  526. "homepage": "http://resurtm.com/",
  527. "role": "Core framework development"
  528. },
  529. {
  530. "name": "Paul Klimov",
  531. "email": "klimov.paul@gmail.com",
  532. "role": "Core framework development"
  533. },
  534. {
  535. "name": "Dmitry Naumenko",
  536. "email": "d.naumenko.a@gmail.com",
  537. "role": "Core framework development"
  538. },
  539. {
  540. "name": "Boudewijn Vahrmeijer",
  541. "email": "info@dynasource.eu",
  542. "homepage": "http://dynasource.eu",
  543. "role": "Core framework development"
  544. }
  545. ],
  546. "description": "Yii PHP Framework Version 2",
  547. "homepage": "http://www.yiiframework.com/",
  548. "keywords": [
  549. "framework",
  550. "yii2"
  551. ],
  552. "time": "2017-11-14 11:08:21"
  553. },
  554. {
  555. "name": "yiisoft/yii2-bootstrap",
  556. "version": "2.0.7",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  560. "reference": "02a54d868343ed11d02f0f0f8cbbecb590e0cb3f"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://files.phpcomposer.com/files/yiisoft/yii2-bootstrap/02a54d868343ed11d02f0f0f8cbbecb590e0cb3f.zip",
  565. "reference": "02a54d868343ed11d02f0f0f8cbbecb590e0cb3f",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "bower-asset/bootstrap": "3.3.* | 3.2.* | 3.1.*",
  570. "yiisoft/yii2": "~2.0.6"
  571. },
  572. "type": "yii2-extension",
  573. "extra": {
  574. "branch-alias": {
  575. "dev-master": "2.0.x-dev"
  576. }
  577. },
  578. "autoload": {
  579. "psr-4": {
  580. "yii\\bootstrap\\": ""
  581. }
  582. },
  583. "notification-url": "https://packagist.org/downloads/",
  584. "license": [
  585. "BSD-3-Clause"
  586. ],
  587. "authors": [
  588. {
  589. "name": "Qiang Xue",
  590. "email": "qiang.xue@gmail.com"
  591. }
  592. ],
  593. "description": "The Twitter Bootstrap extension for the Yii framework",
  594. "keywords": [
  595. "bootstrap",
  596. "yii2"
  597. ],
  598. "time": "2017-10-09 19:48:22"
  599. },
  600. {
  601. "name": "yiisoft/yii2-composer",
  602. "version": "2.0.5",
  603. "source": {
  604. "type": "git",
  605. "url": "https://github.com/yiisoft/yii2-composer.git",
  606. "reference": "3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2"
  607. },
  608. "dist": {
  609. "type": "zip",
  610. "url": "https://files.phpcomposer.com/files/yiisoft/yii2-composer/3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2.zip",
  611. "reference": "3f4923c2bde6caf3f5b88cc22fdd5770f52f8df2",
  612. "shasum": ""
  613. },
  614. "require": {
  615. "composer-plugin-api": "^1.0"
  616. },
  617. "require-dev": {
  618. "composer/composer": "^1.0"
  619. },
  620. "type": "composer-plugin",
  621. "extra": {
  622. "class": "yii\\composer\\Plugin",
  623. "branch-alias": {
  624. "dev-master": "2.0.x-dev"
  625. }
  626. },
  627. "autoload": {
  628. "psr-4": {
  629. "yii\\composer\\": ""
  630. }
  631. },
  632. "notification-url": "https://packagist.org/downloads/",
  633. "license": [
  634. "BSD-3-Clause"
  635. ],
  636. "authors": [
  637. {
  638. "name": "Qiang Xue",
  639. "email": "qiang.xue@gmail.com"
  640. }
  641. ],
  642. "description": "The composer plugin for Yii extension installer",
  643. "keywords": [
  644. "composer",
  645. "extension installer",
  646. "yii2"
  647. ],
  648. "time": "2016-12-20 13:26:02"
  649. },
  650. {
  651. "name": "yiisoft/yii2-swiftmailer",
  652. "version": "2.1.0",
  653. "source": {
  654. "type": "git",
  655. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  656. "reference": "563570c9aa19ca47c1b22e3032983229378e9274"
  657. },
  658. "dist": {
  659. "type": "zip",
  660. "url": "https://files.phpcomposer.com/files/yiisoft/yii2-swiftmailer/563570c9aa19ca47c1b22e3032983229378e9274.zip",
  661. "reference": "563570c9aa19ca47c1b22e3032983229378e9274",
  662. "shasum": ""
  663. },
  664. "require": {
  665. "swiftmailer/swiftmailer": "~6.0",
  666. "yiisoft/yii2": "~2.0.4"
  667. },
  668. "type": "yii2-extension",
  669. "extra": {
  670. "branch-alias": {
  671. "dev-master": "2.0.x-dev"
  672. }
  673. },
  674. "autoload": {
  675. "psr-4": {
  676. "yii\\swiftmailer\\": ""
  677. }
  678. },
  679. "notification-url": "https://packagist.org/downloads/",
  680. "license": [
  681. "BSD-3-Clause"
  682. ],
  683. "authors": [
  684. {
  685. "name": "Paul Klimov",
  686. "email": "klimov.paul@gmail.com"
  687. }
  688. ],
  689. "description": "The SwiftMailer integration for the Yii framework",
  690. "keywords": [
  691. "email",
  692. "mail",
  693. "mailer",
  694. "swift",
  695. "swiftmailer",
  696. "yii2"
  697. ],
  698. "time": "2017-08-04 10:48:17"
  699. }
  700. ],
  701. "packages-dev": [
  702. {
  703. "name": "behat/gherkin",
  704. "version": "v4.4.5",
  705. "source": {
  706. "type": "git",
  707. "url": "https://github.com/Behat/Gherkin.git",
  708. "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74"
  709. },
  710. "dist": {
  711. "type": "zip",
  712. "url": "https://files.phpcomposer.com/files/Behat/Gherkin/5c14cff4f955b17d20d088dec1bde61c0539ec74.zip",
  713. "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74",
  714. "shasum": ""
  715. },
  716. "require": {
  717. "php": ">=5.3.1"
  718. },
  719. "require-dev": {
  720. "phpunit/phpunit": "~4.5|~5",
  721. "symfony/phpunit-bridge": "~2.7|~3",
  722. "symfony/yaml": "~2.3|~3"
  723. },
  724. "suggest": {
  725. "symfony/yaml": "If you want to parse features, represented in YAML files"
  726. },
  727. "type": "library",
  728. "extra": {
  729. "branch-alias": {
  730. "dev-master": "4.4-dev"
  731. }
  732. },
  733. "autoload": {
  734. "psr-0": {
  735. "Behat\\Gherkin": "src/"
  736. }
  737. },
  738. "notification-url": "https://packagist.org/downloads/",
  739. "license": [
  740. "MIT"
  741. ],
  742. "authors": [
  743. {
  744. "name": "Konstantin Kudryashov",
  745. "email": "ever.zet@gmail.com",
  746. "homepage": "http://everzet.com"
  747. }
  748. ],
  749. "description": "Gherkin DSL parser for PHP 5.3",
  750. "homepage": "http://behat.org/",
  751. "keywords": [
  752. "BDD",
  753. "Behat",
  754. "Cucumber",
  755. "DSL",
  756. "gherkin",
  757. "parser"
  758. ],
  759. "time": "2016-10-30 11:50:56"
  760. },
  761. {
  762. "name": "bower-asset/typeahead.js",
  763. "version": "v0.11.1",
  764. "source": {
  765. "type": "git",
  766. "url": "git@github.com:twitter/typeahead.js.git",
  767. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  768. },
  769. "dist": {
  770. "type": "zip",
  771. "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
  772. "reference": "588440f66559714280628a4f9799f0c4eb880a4a",
  773. "shasum": null
  774. },
  775. "require": {
  776. "bower-asset/jquery": ">=1.7"
  777. },
  778. "type": "bower-asset"
  779. },
  780. {
  781. "name": "codeception/base",
  782. "version": "2.3.7",
  783. "source": {
  784. "type": "git",
  785. "url": "https://github.com/Codeception/base.git",
  786. "reference": "c3fcea61525e62361ecc45aea1837f225ba73b4f"
  787. },
  788. "dist": {
  789. "type": "zip",
  790. "url": "https://files.phpcomposer.com/files/Codeception/base/c3fcea61525e62361ecc45aea1837f225ba73b4f.zip",
  791. "reference": "c3fcea61525e62361ecc45aea1837f225ba73b4f",
  792. "shasum": ""
  793. },
  794. "require": {
  795. "behat/gherkin": "~4.4.0",
  796. "ext-json": "*",
  797. "ext-mbstring": "*",
  798. "guzzlehttp/psr7": "~1.0",
  799. "php": ">=5.4.0 <8.0",
  800. "phpunit/php-code-coverage": ">=2.2.4 <6.0",
  801. "phpunit/phpunit": ">=4.8.28 <5.0.0 || >=5.6.3 <7.0",
  802. "phpunit/phpunit-mock-objects": ">2.3 <5.0",
  803. "sebastian/comparator": ">1.1 <3.0",
  804. "sebastian/diff": ">=1.4 <3.0",
  805. "symfony/browser-kit": ">=2.7 <5.0",
  806. "symfony/console": ">=2.7 <5.0",
  807. "symfony/css-selector": ">=2.7 <5.0",
  808. "symfony/dom-crawler": ">=2.7 <5.0",
  809. "symfony/event-dispatcher": ">=2.7 <5.0",
  810. "symfony/finder": ">=2.7 <5.0",
  811. "symfony/yaml": ">=2.7 <5.0"
  812. },
  813. "require-dev": {
  814. "codeception/specify": "~0.3",
  815. "facebook/graph-sdk": "~5.3",
  816. "flow/jsonpath": "~0.2",
  817. "league/factory-muffin": "^3.0",
  818. "league/factory-muffin-faker": "^1.0",
  819. "monolog/monolog": "~1.8",
  820. "pda/pheanstalk": "~3.0",
  821. "php-amqplib/php-amqplib": "~2.4",
  822. "predis/predis": "^1.0",
  823. "squizlabs/php_codesniffer": "~2.0",
  824. "symfony/process": ">=2.7 <5.0",
  825. "vlucas/phpdotenv": "^2.4.0"
  826. },
  827. "suggest": {
  828. "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
  829. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
  830. "codeception/specify": "BDD-style code blocks",
  831. "codeception/verify": "BDD-style assertions",
  832. "flow/jsonpath": "For using JSONPath in REST module",
  833. "league/factory-muffin": "For DataFactory module",
  834. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  835. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  836. "stecman/symfony-console-completion": "For BASH autocompletion",
  837. "symfony/phpunit-bridge": "For phpunit-bridge support"
  838. },
  839. "bin": [
  840. "codecept"
  841. ],
  842. "type": "library",
  843. "extra": {
  844. "branch-alias": []
  845. },
  846. "autoload": {
  847. "psr-4": {
  848. "Codeception\\": "src\\Codeception",
  849. "Codeception\\Extension\\": "ext"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Michael Bodnarchuk",
  859. "email": "davert@mail.ua",
  860. "homepage": "http://codegyre.com"
  861. }
  862. ],
  863. "description": "BDD-style testing framework",
  864. "homepage": "http://codeception.com/",
  865. "keywords": [
  866. "BDD",
  867. "TDD",
  868. "acceptance testing",
  869. "functional testing",
  870. "unit testing"
  871. ],
  872. "time": "2017-12-12 04:54:15"
  873. },
  874. {
  875. "name": "codeception/verify",
  876. "version": "0.3.3",
  877. "source": {
  878. "type": "git",
  879. "url": "https://github.com/Codeception/Verify.git",
  880. "reference": "5d649dda453cd814dadc4bb053060cd2c6bb4b4c"
  881. },
  882. "dist": {
  883. "type": "zip",
  884. "url": "https://files.phpcomposer.com/files/Codeception/Verify/5d649dda453cd814dadc4bb053060cd2c6bb4b4c.zip",
  885. "reference": "5d649dda453cd814dadc4bb053060cd2c6bb4b4c",
  886. "shasum": ""
  887. },
  888. "require-dev": {
  889. "phpunit/phpunit": "~4.0"
  890. },
  891. "type": "library",
  892. "autoload": {
  893. "files": [
  894. "src/Codeception/function.php"
  895. ]
  896. },
  897. "notification-url": "https://packagist.org/downloads/",
  898. "license": [
  899. "MIT"
  900. ],
  901. "authors": [
  902. {
  903. "name": "Michael Bodnarchuk",
  904. "email": "davert.php@mailican.com"
  905. }
  906. ],
  907. "description": "BDD assertion library for PHPUnit",
  908. "time": "2017-01-09 10:58:51"
  909. },
  910. {
  911. "name": "doctrine/instantiator",
  912. "version": "1.0.5",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/doctrine/instantiator.git",
  916. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://files.phpcomposer.com/files/doctrine/instantiator/8e884e78f9f0eb1329e445619e04456e64d8051d.zip",
  921. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "php": ">=5.3,<8.0-DEV"
  926. },
  927. "require-dev": {
  928. "athletic/athletic": "~0.1.8",
  929. "ext-pdo": "*",
  930. "ext-phar": "*",
  931. "phpunit/phpunit": "~4.0",
  932. "squizlabs/php_codesniffer": "~2.0"
  933. },
  934. "type": "library",
  935. "extra": {
  936. "branch-alias": {
  937. "dev-master": "1.0.x-dev"
  938. }
  939. },
  940. "autoload": {
  941. "psr-4": {
  942. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  943. }
  944. },
  945. "notification-url": "https://packagist.org/downloads/",
  946. "license": [
  947. "MIT"
  948. ],
  949. "authors": [
  950. {
  951. "name": "Marco Pivetta",
  952. "email": "ocramius@gmail.com",
  953. "homepage": "http://ocramius.github.com/"
  954. }
  955. ],
  956. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  957. "homepage": "https://github.com/doctrine/instantiator",
  958. "keywords": [
  959. "constructor",
  960. "instantiate"
  961. ],
  962. "time": "2015-06-14 21:17:01"
  963. },
  964. {
  965. "name": "fzaninotto/faker",
  966. "version": "v1.7.1",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/fzaninotto/Faker.git",
  970. "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://files.phpcomposer.com/files/fzaninotto/Faker/d3ed4cc37051c1ca52d22d76b437d14809fc7e0d.zip",
  975. "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d",
  976. "shasum": ""
  977. },
  978. "require": {
  979. "php": "^5.3.3 || ^7.0"
  980. },
  981. "require-dev": {
  982. "ext-intl": "*",
  983. "phpunit/phpunit": "^4.0 || ^5.0",
  984. "squizlabs/php_codesniffer": "^1.5"
  985. },
  986. "type": "library",
  987. "extra": {
  988. "branch-alias": {
  989. "dev-master": "1.8-dev"
  990. }
  991. },
  992. "autoload": {
  993. "psr-4": {
  994. "Faker\\": "src/Faker/"
  995. }
  996. },
  997. "notification-url": "https://packagist.org/downloads/",
  998. "license": [
  999. "MIT"
  1000. ],
  1001. "authors": [
  1002. {
  1003. "name": "François Zaninotto"
  1004. }
  1005. ],
  1006. "description": "Faker is a PHP library that generates fake data for you.",
  1007. "keywords": [
  1008. "data",
  1009. "faker",
  1010. "fixtures"
  1011. ],
  1012. "time": "2017-08-15 16:48:10"
  1013. },
  1014. {
  1015. "name": "guzzlehttp/psr7",
  1016. "version": "1.4.2",
  1017. "source": {
  1018. "type": "git",
  1019. "url": "https://github.com/guzzle/psr7.git",
  1020. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  1021. },
  1022. "dist": {
  1023. "type": "zip",
  1024. "url": "https://files.phpcomposer.com/files/guzzle/psr7/f5b8a8512e2b58b0071a7280e39f14f72e05d87c.zip",
  1025. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1026. "shasum": ""
  1027. },
  1028. "require": {
  1029. "php": ">=5.4.0",
  1030. "psr/http-message": "~1.0"
  1031. },
  1032. "provide": {
  1033. "psr/http-message-implementation": "1.0"
  1034. },
  1035. "require-dev": {
  1036. "phpunit/phpunit": "~4.0"
  1037. },
  1038. "type": "library",
  1039. "extra": {
  1040. "branch-alias": {
  1041. "dev-master": "1.4-dev"
  1042. }
  1043. },
  1044. "autoload": {
  1045. "psr-4": {
  1046. "GuzzleHttp\\Psr7\\": "src/"
  1047. },
  1048. "files": [
  1049. "src/functions_include.php"
  1050. ]
  1051. },
  1052. "notification-url": "https://packagist.org/downloads/",
  1053. "license": [
  1054. "MIT"
  1055. ],
  1056. "authors": [
  1057. {
  1058. "name": "Michael Dowling",
  1059. "email": "mtdowling@gmail.com",
  1060. "homepage": "https://github.com/mtdowling"
  1061. },
  1062. {
  1063. "name": "Tobias Schultze",
  1064. "homepage": "https://github.com/Tobion"
  1065. }
  1066. ],
  1067. "description": "PSR-7 message implementation that also provides common utility methods",
  1068. "keywords": [
  1069. "http",
  1070. "message",
  1071. "request",
  1072. "response",
  1073. "stream",
  1074. "uri",
  1075. "url"
  1076. ],
  1077. "time": "2017-03-20 17:10:46"
  1078. },
  1079. {
  1080. "name": "myclabs/deep-copy",
  1081. "version": "1.7.0",
  1082. "source": {
  1083. "type": "git",
  1084. "url": "https://github.com/myclabs/DeepCopy.git",
  1085. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  1086. },
  1087. "dist": {
  1088. "type": "zip",
  1089. "url": "https://files.phpcomposer.com/files/myclabs/DeepCopy/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e.zip",
  1090. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  1091. "shasum": ""
  1092. },
  1093. "require": {
  1094. "php": "^5.6 || ^7.0"
  1095. },
  1096. "require-dev": {
  1097. "doctrine/collections": "^1.0",
  1098. "doctrine/common": "^2.6",
  1099. "phpunit/phpunit": "^4.1"
  1100. },
  1101. "type": "library",
  1102. "autoload": {
  1103. "psr-4": {
  1104. "DeepCopy\\": "src/DeepCopy/"
  1105. },
  1106. "files": [
  1107. "src/DeepCopy/deep_copy.php"
  1108. ]
  1109. },
  1110. "notification-url": "https://packagist.org/downloads/",
  1111. "license": [
  1112. "MIT"
  1113. ],
  1114. "description": "Create deep copies (clones) of your objects",
  1115. "keywords": [
  1116. "clone",
  1117. "copy",
  1118. "duplicate",
  1119. "object",
  1120. "object graph"
  1121. ],
  1122. "time": "2017-10-19 19:58:43"
  1123. },
  1124. {
  1125. "name": "phar-io/manifest",
  1126. "version": "1.0.1",
  1127. "source": {
  1128. "type": "git",
  1129. "url": "https://github.com/phar-io/manifest.git",
  1130. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  1131. },
  1132. "dist": {
  1133. "type": "zip",
  1134. "url": "https://files.phpcomposer.com/files/phar-io/manifest/2df402786ab5368a0169091f61a7c1e0eb6852d0.zip",
  1135. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  1136. "shasum": ""
  1137. },
  1138. "require": {
  1139. "ext-dom": "*",
  1140. "ext-phar": "*",
  1141. "phar-io/version": "^1.0.1",
  1142. "php": "^5.6 || ^7.0"
  1143. },
  1144. "type": "library",
  1145. "extra": {
  1146. "branch-alias": {
  1147. "dev-master": "1.0.x-dev"
  1148. }
  1149. },
  1150. "autoload": {
  1151. "classmap": [
  1152. "src/"
  1153. ]
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "BSD-3-Clause"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Arne Blankerts",
  1162. "email": "arne@blankerts.de",
  1163. "role": "Developer"
  1164. },
  1165. {
  1166. "name": "Sebastian Heuer",
  1167. "email": "sebastian@phpeople.de",
  1168. "role": "Developer"
  1169. },
  1170. {
  1171. "name": "Sebastian Bergmann",
  1172. "email": "sebastian@phpunit.de",
  1173. "role": "Developer"
  1174. }
  1175. ],
  1176. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  1177. "time": "2017-03-05 18:14:27"
  1178. },
  1179. {
  1180. "name": "phar-io/version",
  1181. "version": "1.0.1",
  1182. "source": {
  1183. "type": "git",
  1184. "url": "https://github.com/phar-io/version.git",
  1185. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  1186. },
  1187. "dist": {
  1188. "type": "zip",
  1189. "url": "https://files.phpcomposer.com/files/phar-io/version/a70c0ced4be299a63d32fa96d9281d03e94041df.zip",
  1190. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  1191. "shasum": ""
  1192. },
  1193. "require": {
  1194. "php": "^5.6 || ^7.0"
  1195. },
  1196. "type": "library",
  1197. "autoload": {
  1198. "classmap": [
  1199. "src/"
  1200. ]
  1201. },
  1202. "notification-url": "https://packagist.org/downloads/",
  1203. "license": [
  1204. "BSD-3-Clause"
  1205. ],
  1206. "authors": [
  1207. {
  1208. "name": "Arne Blankerts",
  1209. "email": "arne@blankerts.de",
  1210. "role": "Developer"
  1211. },
  1212. {
  1213. "name": "Sebastian Heuer",
  1214. "email": "sebastian@phpeople.de",
  1215. "role": "Developer"
  1216. },
  1217. {
  1218. "name": "Sebastian Bergmann",
  1219. "email": "sebastian@phpunit.de",
  1220. "role": "Developer"
  1221. }
  1222. ],
  1223. "description": "Library for handling version information and constraints",
  1224. "time": "2017-03-05 17:38:23"
  1225. },
  1226. {
  1227. "name": "phpdocumentor/reflection-common",
  1228. "version": "1.0.1",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1232. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://files.phpcomposer.com/files/phpDocumentor/ReflectionCommon/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6.zip",
  1237. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  1238. "shasum": ""
  1239. },
  1240. "require": {
  1241. "php": ">=5.5"
  1242. },
  1243. "require-dev": {
  1244. "phpunit/phpunit": "^4.6"
  1245. },
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-master": "1.0.x-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "psr-4": {
  1254. "phpDocumentor\\Reflection\\": [
  1255. "src"
  1256. ]
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Jaap van Otterdijk",
  1266. "email": "opensource@ijaap.nl"
  1267. }
  1268. ],
  1269. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1270. "homepage": "http://www.phpdoc.org",
  1271. "keywords": [
  1272. "FQSEN",
  1273. "phpDocumentor",
  1274. "phpdoc",
  1275. "reflection",
  1276. "static analysis"
  1277. ],
  1278. "time": "2017-09-11 18:02:19"
  1279. },
  1280. {
  1281. "name": "phpdocumentor/reflection-docblock",
  1282. "version": "4.2.0",
  1283. "source": {
  1284. "type": "git",
  1285. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1286. "reference": "66465776cfc249844bde6d117abff1d22e06c2da"
  1287. },
  1288. "dist": {
  1289. "type": "zip",
  1290. "url": "https://files.phpcomposer.com/files/phpDocumentor/ReflectionDocBlock/66465776cfc249844bde6d117abff1d22e06c2da.zip",
  1291. "reference": "66465776cfc249844bde6d117abff1d22e06c2da",
  1292. "shasum": ""
  1293. },
  1294. "require": {
  1295. "php": "^7.0",
  1296. "phpdocumentor/reflection-common": "^1.0.0",
  1297. "phpdocumentor/type-resolver": "^0.4.0",
  1298. "webmozart/assert": "^1.0"
  1299. },
  1300. "require-dev": {
  1301. "doctrine/instantiator": "~1.0.5",
  1302. "mockery/mockery": "^1.0",
  1303. "phpunit/phpunit": "^6.4"
  1304. },
  1305. "type": "library",
  1306. "extra": {
  1307. "branch-alias": {
  1308. "dev-master": "4.x-dev"
  1309. }
  1310. },
  1311. "autoload": {
  1312. "psr-4": {
  1313. "phpDocumentor\\Reflection\\": [
  1314. "src/"
  1315. ]
  1316. }
  1317. },
  1318. "notification-url": "https://packagist.org/downloads/",
  1319. "license": [
  1320. "MIT"
  1321. ],
  1322. "authors": [
  1323. {
  1324. "name": "Mike van Riel",
  1325. "email": "me@mikevanriel.com"
  1326. }
  1327. ],
  1328. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1329. "time": "2017-11-27 17:38:31"
  1330. },
  1331. {
  1332. "name": "phpdocumentor/type-resolver",
  1333. "version": "0.4.0",
  1334. "source": {
  1335. "type": "git",
  1336. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1337. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  1338. },
  1339. "dist": {
  1340. "type": "zip",
  1341. "url": "https://files.phpcomposer.com/files/phpDocumentor/TypeResolver/9c977708995954784726e25d0cd1dddf4e65b0f7.zip",
  1342. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  1343. "shasum": ""
  1344. },
  1345. "require": {
  1346. "php": "^5.5 || ^7.0",
  1347. "phpdocumentor/reflection-common": "^1.0"
  1348. },
  1349. "require-dev": {
  1350. "mockery/mockery": "^0.9.4",
  1351. "phpunit/phpunit": "^5.2||^4.8.24"
  1352. },
  1353. "type": "library",
  1354. "extra": {
  1355. "branch-alias": {
  1356. "dev-master": "1.0.x-dev"
  1357. }
  1358. },
  1359. "autoload": {
  1360. "psr-4": {
  1361. "phpDocumentor\\Reflection\\": [
  1362. "src/"
  1363. ]
  1364. }
  1365. },
  1366. "notification-url": "https://packagist.org/downloads/",
  1367. "license": [
  1368. "MIT"
  1369. ],
  1370. "authors": [
  1371. {
  1372. "name": "Mike van Riel",
  1373. "email": "me@mikevanriel.com"
  1374. }
  1375. ],
  1376. "time": "2017-07-14 14:27:02"
  1377. },
  1378. {
  1379. "name": "phpspec/php-diff",
  1380. "version": "v1.1.0",
  1381. "source": {
  1382. "type": "git",
  1383. "url": "https://github.com/phpspec/php-diff.git",
  1384. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"
  1385. },
  1386. "dist": {
  1387. "type": "zip",
  1388. "url": "https://files.phpcomposer.com/files/phpspec/php-diff/0464787bfa7cd13576c5a1e318709768798bec6a.zip",
  1389. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",
  1390. "shasum": ""
  1391. },
  1392. "type": "library",
  1393. "extra": {
  1394. "branch-alias": {
  1395. "dev-master": "1.0.x-dev"
  1396. }
  1397. },
  1398. "autoload": {
  1399. "psr-0": {
  1400. "Diff": "lib/"
  1401. }
  1402. },
  1403. "notification-url": "https://packagist.org/downloads/",
  1404. "license": [
  1405. "BSD-3-Clause"
  1406. ],
  1407. "authors": [
  1408. {
  1409. "name": "Chris Boulton",
  1410. "homepage": "http://github.com/chrisboulton"
  1411. }
  1412. ],
  1413. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  1414. "time": "2016-04-07 12:29:16"
  1415. },
  1416. {
  1417. "name": "phpspec/prophecy",
  1418. "version": "1.7.3",
  1419. "source": {
  1420. "type": "git",
  1421. "url": "https://github.com/phpspec/prophecy.git",
  1422. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf"
  1423. },
  1424. "dist": {
  1425. "type": "zip",
  1426. "url": "https://files.phpcomposer.com/files/phpspec/prophecy/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf.zip",
  1427. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  1428. "shasum": ""
  1429. },
  1430. "require": {
  1431. "doctrine/instantiator": "^1.0.2",
  1432. "php": "^5.3|^7.0",
  1433. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  1434. "sebastian/comparator": "^1.1|^2.0",
  1435. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  1436. },
  1437. "require-dev": {
  1438. "phpspec/phpspec": "^2.5|^3.2",
  1439. "phpunit/phpunit": "^4.8.35 || ^5.7"
  1440. },
  1441. "type": "library",
  1442. "extra": {
  1443. "branch-alias": {
  1444. "dev-master": "1.7.x-dev"
  1445. }
  1446. },
  1447. "autoload": {
  1448. "psr-0": {
  1449. "Prophecy\\": "src/"
  1450. }
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "Konstantin Kudryashov",
  1459. "email": "ever.zet@gmail.com",
  1460. "homepage": "http://everzet.com"
  1461. },
  1462. {
  1463. "name": "Marcello Duarte",
  1464. "email": "marcello.duarte@gmail.com"
  1465. }
  1466. ],
  1467. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1468. "homepage": "https://github.com/phpspec/prophecy",
  1469. "keywords": [
  1470. "Double",
  1471. "Dummy",
  1472. "fake",
  1473. "mock",
  1474. "spy",
  1475. "stub"
  1476. ],
  1477. "time": "2017-11-24 13:59:53"
  1478. },
  1479. {
  1480. "name": "phpunit/php-code-coverage",
  1481. "version": "5.3.0",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1485. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-code-coverage/661f34d0bd3f1a7225ef491a70a020ad23a057a1.zip",
  1490. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  1491. "shasum": ""
  1492. },
  1493. "require": {
  1494. "ext-dom": "*",
  1495. "ext-xmlwriter": "*",
  1496. "php": "^7.0",
  1497. "phpunit/php-file-iterator": "^1.4.2",
  1498. "phpunit/php-text-template": "^1.2.1",
  1499. "phpunit/php-token-stream": "^2.0.1",
  1500. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  1501. "sebastian/environment": "^3.0",
  1502. "sebastian/version": "^2.0.1",
  1503. "theseer/tokenizer": "^1.1"
  1504. },
  1505. "require-dev": {
  1506. "phpunit/phpunit": "^6.0"
  1507. },
  1508. "suggest": {
  1509. "ext-xdebug": "^2.5.5"
  1510. },
  1511. "type": "library",
  1512. "extra": {
  1513. "branch-alias": {
  1514. "dev-master": "5.3.x-dev"
  1515. }
  1516. },
  1517. "autoload": {
  1518. "classmap": [
  1519. "src/"
  1520. ]
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "BSD-3-Clause"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "Sebastian Bergmann",
  1529. "email": "sebastian@phpunit.de",
  1530. "role": "lead"
  1531. }
  1532. ],
  1533. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1534. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1535. "keywords": [
  1536. "coverage",
  1537. "testing",
  1538. "xunit"
  1539. ],
  1540. "time": "2017-12-06 09:29:45"
  1541. },
  1542. {
  1543. "name": "phpunit/php-file-iterator",
  1544. "version": "1.4.5",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1548. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-file-iterator/730b01bc3e867237eaac355e06a36b85dd93a8b4.zip",
  1553. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "php": ">=5.3.3"
  1558. },
  1559. "type": "library",
  1560. "extra": {
  1561. "branch-alias": {
  1562. "dev-master": "1.4.x-dev"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "classmap": [
  1567. "src/"
  1568. ]
  1569. },
  1570. "notification-url": "https://packagist.org/downloads/",
  1571. "license": [
  1572. "BSD-3-Clause"
  1573. ],
  1574. "authors": [
  1575. {
  1576. "name": "Sebastian Bergmann",
  1577. "email": "sb@sebastian-bergmann.de",
  1578. "role": "lead"
  1579. }
  1580. ],
  1581. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1582. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1583. "keywords": [
  1584. "filesystem",
  1585. "iterator"
  1586. ],
  1587. "time": "2017-11-27 13:52:08"
  1588. },
  1589. {
  1590. "name": "phpunit/php-text-template",
  1591. "version": "1.2.1",
  1592. "source": {
  1593. "type": "git",
  1594. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1595. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1596. },
  1597. "dist": {
  1598. "type": "zip",
  1599. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-text-template/31f8b717e51d9a2afca6c9f046f5d69fc27c8686.zip",
  1600. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1601. "shasum": ""
  1602. },
  1603. "require": {
  1604. "php": ">=5.3.3"
  1605. },
  1606. "type": "library",
  1607. "autoload": {
  1608. "classmap": [
  1609. "src/"
  1610. ]
  1611. },
  1612. "notification-url": "https://packagist.org/downloads/",
  1613. "license": [
  1614. "BSD-3-Clause"
  1615. ],
  1616. "authors": [
  1617. {
  1618. "name": "Sebastian Bergmann",
  1619. "email": "sebastian@phpunit.de",
  1620. "role": "lead"
  1621. }
  1622. ],
  1623. "description": "Simple template engine.",
  1624. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1625. "keywords": [
  1626. "template"
  1627. ],
  1628. "time": "2015-06-21 13:50:34"
  1629. },
  1630. {
  1631. "name": "phpunit/php-timer",
  1632. "version": "1.0.9",
  1633. "source": {
  1634. "type": "git",
  1635. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1636. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1637. },
  1638. "dist": {
  1639. "type": "zip",
  1640. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-timer/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f.zip",
  1641. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1642. "shasum": ""
  1643. },
  1644. "require": {
  1645. "php": "^5.3.3 || ^7.0"
  1646. },
  1647. "require-dev": {
  1648. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1649. },
  1650. "type": "library",
  1651. "extra": {
  1652. "branch-alias": {
  1653. "dev-master": "1.0-dev"
  1654. }
  1655. },
  1656. "autoload": {
  1657. "classmap": [
  1658. "src/"
  1659. ]
  1660. },
  1661. "notification-url": "https://packagist.org/downloads/",
  1662. "license": [
  1663. "BSD-3-Clause"
  1664. ],
  1665. "authors": [
  1666. {
  1667. "name": "Sebastian Bergmann",
  1668. "email": "sb@sebastian-bergmann.de",
  1669. "role": "lead"
  1670. }
  1671. ],
  1672. "description": "Utility class for timing",
  1673. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1674. "keywords": [
  1675. "timer"
  1676. ],
  1677. "time": "2017-02-26 11:10:40"
  1678. },
  1679. {
  1680. "name": "phpunit/php-token-stream",
  1681. "version": "2.0.2",
  1682. "source": {
  1683. "type": "git",
  1684. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1685. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  1686. },
  1687. "dist": {
  1688. "type": "zip",
  1689. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-token-stream/791198a2c6254db10131eecfe8c06670700904db.zip",
  1690. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  1691. "shasum": ""
  1692. },
  1693. "require": {
  1694. "ext-tokenizer": "*",
  1695. "php": "^7.0"
  1696. },
  1697. "require-dev": {
  1698. "phpunit/phpunit": "^6.2.4"
  1699. },
  1700. "type": "library",
  1701. "extra": {
  1702. "branch-alias": {
  1703. "dev-master": "2.0-dev"
  1704. }
  1705. },
  1706. "autoload": {
  1707. "classmap": [
  1708. "src/"
  1709. ]
  1710. },
  1711. "notification-url": "https://packagist.org/downloads/",
  1712. "license": [
  1713. "BSD-3-Clause"
  1714. ],
  1715. "authors": [
  1716. {
  1717. "name": "Sebastian Bergmann",
  1718. "email": "sebastian@phpunit.de"
  1719. }
  1720. ],
  1721. "description": "Wrapper around PHP's tokenizer extension.",
  1722. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1723. "keywords": [
  1724. "tokenizer"
  1725. ],
  1726. "time": "2017-11-27 05:48:46"
  1727. },
  1728. {
  1729. "name": "phpunit/phpunit",
  1730. "version": "6.4.4",
  1731. "source": {
  1732. "type": "git",
  1733. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1734. "reference": "562f7dc75d46510a4ed5d16189ae57fbe45a9932"
  1735. },
  1736. "dist": {
  1737. "type": "zip",
  1738. "url": "https://files.phpcomposer.com/files/sebastianbergmann/phpunit/562f7dc75d46510a4ed5d16189ae57fbe45a9932.zip",
  1739. "reference": "562f7dc75d46510a4ed5d16189ae57fbe45a9932",
  1740. "shasum": ""
  1741. },
  1742. "require": {
  1743. "ext-dom": "*",
  1744. "ext-json": "*",
  1745. "ext-libxml": "*",
  1746. "ext-mbstring": "*",
  1747. "ext-xml": "*",
  1748. "myclabs/deep-copy": "^1.6.1",
  1749. "phar-io/manifest": "^1.0.1",
  1750. "phar-io/version": "^1.0",
  1751. "php": "^7.0",
  1752. "phpspec/prophecy": "^1.7",
  1753. "phpunit/php-code-coverage": "^5.2.2",
  1754. "phpunit/php-file-iterator": "^1.4.2",
  1755. "phpunit/php-text-template": "^1.2.1",
  1756. "phpunit/php-timer": "^1.0.9",
  1757. "phpunit/phpunit-mock-objects": "^4.0.3",
  1758. "sebastian/comparator": "^2.0.2",
  1759. "sebastian/diff": "^2.0",
  1760. "sebastian/environment": "^3.1",
  1761. "sebastian/exporter": "^3.1",
  1762. "sebastian/global-state": "^2.0",
  1763. "sebastian/object-enumerator": "^3.0.3",
  1764. "sebastian/resource-operations": "^1.0",
  1765. "sebastian/version": "^2.0.1"
  1766. },
  1767. "conflict": {
  1768. "phpdocumentor/reflection-docblock": "3.0.2",
  1769. "phpunit/dbunit": "<3.0"
  1770. },
  1771. "require-dev": {
  1772. "ext-pdo": "*"
  1773. },
  1774. "suggest": {
  1775. "ext-xdebug": "*",
  1776. "phpunit/php-invoker": "^1.1"
  1777. },
  1778. "bin": [
  1779. "phpunit"
  1780. ],
  1781. "type": "library",
  1782. "extra": {
  1783. "branch-alias": {
  1784. "dev-master": "6.4.x-dev"
  1785. }
  1786. },
  1787. "autoload": {
  1788. "classmap": [
  1789. "src/"
  1790. ]
  1791. },
  1792. "notification-url": "https://packagist.org/downloads/",
  1793. "license": [
  1794. "BSD-3-Clause"
  1795. ],
  1796. "authors": [
  1797. {
  1798. "name": "Sebastian Bergmann",
  1799. "email": "sebastian@phpunit.de",
  1800. "role": "lead"
  1801. }
  1802. ],
  1803. "description": "The PHP Unit Testing framework.",
  1804. "homepage": "https://phpunit.de/",
  1805. "keywords": [
  1806. "phpunit",
  1807. "testing",
  1808. "xunit"
  1809. ],
  1810. "time": "2017-11-08 11:26:09"
  1811. },
  1812. {
  1813. "name": "phpunit/phpunit-mock-objects",
  1814. "version": "4.0.4",
  1815. "source": {
  1816. "type": "git",
  1817. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1818. "reference": "2f789b59ab89669015ad984afa350c4ec577ade0"
  1819. },
  1820. "dist": {
  1821. "type": "zip",
  1822. "url": "https://files.phpcomposer.com/files/sebastianbergmann/phpunit-mock-objects/2f789b59ab89669015ad984afa350c4ec577ade0.zip",
  1823. "reference": "2f789b59ab89669015ad984afa350c4ec577ade0",
  1824. "shasum": ""
  1825. },
  1826. "require": {
  1827. "doctrine/instantiator": "^1.0.5",
  1828. "php": "^7.0",
  1829. "phpunit/php-text-template": "^1.2.1",
  1830. "sebastian/exporter": "^3.0"
  1831. },
  1832. "conflict": {
  1833. "phpunit/phpunit": "<6.0"
  1834. },
  1835. "require-dev": {
  1836. "phpunit/phpunit": "^6.0"
  1837. },
  1838. "suggest": {
  1839. "ext-soap": "*"
  1840. },
  1841. "type": "library",
  1842. "extra": {
  1843. "branch-alias": {
  1844. "dev-master": "4.0.x-dev"
  1845. }
  1846. },
  1847. "autoload": {
  1848. "classmap": [
  1849. "src/"
  1850. ]
  1851. },
  1852. "notification-url": "https://packagist.org/downloads/",
  1853. "license": [
  1854. "BSD-3-Clause"
  1855. ],
  1856. "authors": [
  1857. {
  1858. "name": "Sebastian Bergmann",
  1859. "email": "sb@sebastian-bergmann.de",
  1860. "role": "lead"
  1861. }
  1862. ],
  1863. "description": "Mock Object library for PHPUnit",
  1864. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1865. "keywords": [
  1866. "mock",
  1867. "xunit"
  1868. ],
  1869. "time": "2017-08-03 14:08:16"
  1870. },
  1871. {
  1872. "name": "psr/http-message",
  1873. "version": "1.0.1",
  1874. "source": {
  1875. "type": "git",
  1876. "url": "https://github.com/php-fig/http-message.git",
  1877. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1878. },
  1879. "dist": {
  1880. "type": "zip",
  1881. "url": "https://files.phpcomposer.com/files/php-fig/http-message/f6561bf28d520154e4b0ec72be95418abe6d9363.zip",
  1882. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1883. "shasum": ""
  1884. },
  1885. "require": {
  1886. "php": ">=5.3.0"
  1887. },
  1888. "type": "library",
  1889. "extra": {
  1890. "branch-alias": {
  1891. "dev-master": "1.0.x-dev"
  1892. }
  1893. },
  1894. "autoload": {
  1895. "psr-4": {
  1896. "Psr\\Http\\Message\\": "src/"
  1897. }
  1898. },
  1899. "notification-url": "https://packagist.org/downloads/",
  1900. "license": [
  1901. "MIT"
  1902. ],
  1903. "authors": [
  1904. {
  1905. "name": "PHP-FIG",
  1906. "homepage": "http://www.php-fig.org/"
  1907. }
  1908. ],
  1909. "description": "Common interface for HTTP messages",
  1910. "homepage": "https://github.com/php-fig/http-message",
  1911. "keywords": [
  1912. "http",
  1913. "http-message",
  1914. "psr",
  1915. "psr-7",
  1916. "request",
  1917. "response"
  1918. ],
  1919. "time": "2016-08-06 14:39:51"
  1920. },
  1921. {
  1922. "name": "psr/log",
  1923. "version": "1.0.2",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/php-fig/log.git",
  1927. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://files.phpcomposer.com/files/php-fig/log/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d.zip",
  1932. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1933. "shasum": ""
  1934. },
  1935. "require": {
  1936. "php": ">=5.3.0"
  1937. },
  1938. "type": "library",
  1939. "extra": {
  1940. "branch-alias": {
  1941. "dev-master": "1.0.x-dev"
  1942. }
  1943. },
  1944. "autoload": {
  1945. "psr-4": {
  1946. "Psr\\Log\\": "Psr/Log/"
  1947. }
  1948. },
  1949. "notification-url": "https://packagist.org/downloads/",
  1950. "license": [
  1951. "MIT"
  1952. ],
  1953. "authors": [
  1954. {
  1955. "name": "PHP-FIG",
  1956. "homepage": "http://www.php-fig.org/"
  1957. }
  1958. ],
  1959. "description": "Common interface for logging libraries",
  1960. "homepage": "https://github.com/php-fig/log",
  1961. "keywords": [
  1962. "log",
  1963. "psr",
  1964. "psr-3"
  1965. ],
  1966. "time": "2016-10-10 12:19:37"
  1967. },
  1968. {
  1969. "name": "sebastian/code-unit-reverse-lookup",
  1970. "version": "1.0.1",
  1971. "source": {
  1972. "type": "git",
  1973. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1974. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  1975. },
  1976. "dist": {
  1977. "type": "zip",
  1978. "url": "https://files.phpcomposer.com/files/sebastianbergmann/code-unit-reverse-lookup/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18.zip",
  1979. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1980. "shasum": ""
  1981. },
  1982. "require": {
  1983. "php": "^5.6 || ^7.0"
  1984. },
  1985. "require-dev": {
  1986. "phpunit/phpunit": "^5.7 || ^6.0"
  1987. },
  1988. "type": "library",
  1989. "extra": {
  1990. "branch-alias": {
  1991. "dev-master": "1.0.x-dev"
  1992. }
  1993. },
  1994. "autoload": {
  1995. "classmap": [
  1996. "src/"
  1997. ]
  1998. },
  1999. "notification-url": "https://packagist.org/downloads/",
  2000. "license": [
  2001. "BSD-3-Clause"
  2002. ],
  2003. "authors": [
  2004. {
  2005. "name": "Sebastian Bergmann",
  2006. "email": "sebastian@phpunit.de"
  2007. }
  2008. ],
  2009. "description": "Looks up which function or method a line of code belongs to",
  2010. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  2011. "time": "2017-03-04 06:30:41"
  2012. },
  2013. {
  2014. "name": "sebastian/comparator",
  2015. "version": "2.1.2",
  2016. "source": {
  2017. "type": "git",
  2018. "url": "https://github.com/sebastianbergmann/comparator.git",
  2019. "reference": "11c07feade1d65453e06df3b3b90171d6d982087"
  2020. },
  2021. "dist": {
  2022. "type": "zip",
  2023. "url": "https://files.phpcomposer.com/files/sebastianbergmann/comparator/11c07feade1d65453e06df3b3b90171d6d982087.zip",
  2024. "reference": "11c07feade1d65453e06df3b3b90171d6d982087",
  2025. "shasum": ""
  2026. },
  2027. "require": {
  2028. "php": "^7.0",
  2029. "sebastian/diff": "^2.0",
  2030. "sebastian/exporter": "^3.1"
  2031. },
  2032. "require-dev": {
  2033. "phpunit/phpunit": "^6.4"
  2034. },
  2035. "type": "library",
  2036. "extra": {
  2037. "branch-alias": {
  2038. "dev-master": "2.1.x-dev"
  2039. }
  2040. },
  2041. "autoload": {
  2042. "classmap": [
  2043. "src/"
  2044. ]
  2045. },
  2046. "notification-url": "https://packagist.org/downloads/",
  2047. "license": [
  2048. "BSD-3-Clause"
  2049. ],
  2050. "authors": [
  2051. {
  2052. "name": "Jeff Welch",
  2053. "email": "whatthejeff@gmail.com"
  2054. },
  2055. {
  2056. "name": "Volker Dusch",
  2057. "email": "github@wallbash.com"
  2058. },
  2059. {
  2060. "name": "Bernhard Schussek",
  2061. "email": "bschussek@2bepublished.at"
  2062. },
  2063. {
  2064. "name": "Sebastian Bergmann",
  2065. "email": "sebastian@phpunit.de"
  2066. }
  2067. ],
  2068. "description": "Provides the functionality to compare PHP values for equality",
  2069. "homepage": "https://github.com/sebastianbergmann/comparator",
  2070. "keywords": [
  2071. "comparator",
  2072. "compare",
  2073. "equality"
  2074. ],
  2075. "time": "2018-01-12 06:34:42"
  2076. },
  2077. {
  2078. "name": "sebastian/diff",
  2079. "version": "2.0.1",
  2080. "source": {
  2081. "type": "git",
  2082. "url": "https://github.com/sebastianbergmann/diff.git",
  2083. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  2084. },
  2085. "dist": {
  2086. "type": "zip",
  2087. "url": "https://files.phpcomposer.com/files/sebastianbergmann/diff/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd.zip",
  2088. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  2089. "shasum": ""
  2090. },
  2091. "require": {
  2092. "php": "^7.0"
  2093. },
  2094. "require-dev": {
  2095. "phpunit/phpunit": "^6.2"
  2096. },
  2097. "type": "library",
  2098. "extra": {
  2099. "branch-alias": {
  2100. "dev-master": "2.0-dev"
  2101. }
  2102. },
  2103. "autoload": {
  2104. "classmap": [
  2105. "src/"
  2106. ]
  2107. },
  2108. "notification-url": "https://packagist.org/downloads/",
  2109. "license": [
  2110. "BSD-3-Clause"
  2111. ],
  2112. "authors": [
  2113. {
  2114. "name": "Kore Nordmann",
  2115. "email": "mail@kore-nordmann.de"
  2116. },
  2117. {
  2118. "name": "Sebastian Bergmann",
  2119. "email": "sebastian@phpunit.de"
  2120. }
  2121. ],
  2122. "description": "Diff implementation",
  2123. "homepage": "https://github.com/sebastianbergmann/diff",
  2124. "keywords": [
  2125. "diff"
  2126. ],
  2127. "time": "2017-08-03 08:09:46"
  2128. },
  2129. {
  2130. "name": "sebastian/environment",
  2131. "version": "3.1.0",
  2132. "source": {
  2133. "type": "git",
  2134. "url": "https://github.com/sebastianbergmann/environment.git",
  2135. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  2136. },
  2137. "dist": {
  2138. "type": "zip",
  2139. "url": "https://files.phpcomposer.com/files/sebastianbergmann/environment/cd0871b3975fb7fc44d11314fd1ee20925fce4f5.zip",
  2140. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  2141. "shasum": ""
  2142. },
  2143. "require": {
  2144. "php": "^7.0"
  2145. },
  2146. "require-dev": {
  2147. "phpunit/phpunit": "^6.1"
  2148. },
  2149. "type": "library",
  2150. "extra": {
  2151. "branch-alias": {
  2152. "dev-master": "3.1.x-dev"
  2153. }
  2154. },
  2155. "autoload": {
  2156. "classmap": [
  2157. "src/"
  2158. ]
  2159. },
  2160. "notification-url": "https://packagist.org/downloads/",
  2161. "license": [
  2162. "BSD-3-Clause"
  2163. ],
  2164. "authors": [
  2165. {
  2166. "name": "Sebastian Bergmann",
  2167. "email": "sebastian@phpunit.de"
  2168. }
  2169. ],
  2170. "description": "Provides functionality to handle HHVM/PHP environments",
  2171. "homepage": "http://www.github.com/sebastianbergmann/environment",
  2172. "keywords": [
  2173. "Xdebug",
  2174. "environment",
  2175. "hhvm"
  2176. ],
  2177. "time": "2017-07-01 08:51:00"
  2178. },
  2179. {
  2180. "name": "sebastian/exporter",
  2181. "version": "3.1.0",
  2182. "source": {
  2183. "type": "git",
  2184. "url": "https://github.com/sebastianbergmann/exporter.git",
  2185. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  2186. },
  2187. "dist": {
  2188. "type": "zip",
  2189. "url": "https://files.phpcomposer.com/files/sebastianbergmann/exporter/234199f4528de6d12aaa58b612e98f7d36adb937.zip",
  2190. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  2191. "shasum": ""
  2192. },
  2193. "require": {
  2194. "php": "^7.0",
  2195. "sebastian/recursion-context": "^3.0"
  2196. },
  2197. "require-dev": {
  2198. "ext-mbstring": "*",
  2199. "phpunit/phpunit": "^6.0"
  2200. },
  2201. "type": "library",
  2202. "extra": {
  2203. "branch-alias": {
  2204. "dev-master": "3.1.x-dev"
  2205. }
  2206. },
  2207. "autoload": {
  2208. "classmap": [
  2209. "src/"
  2210. ]
  2211. },
  2212. "notification-url": "https://packagist.org/downloads/",
  2213. "license": [
  2214. "BSD-3-Clause"
  2215. ],
  2216. "authors": [
  2217. {
  2218. "name": "Jeff Welch",
  2219. "email": "whatthejeff@gmail.com"
  2220. },
  2221. {
  2222. "name": "Volker Dusch",
  2223. "email": "github@wallbash.com"
  2224. },
  2225. {
  2226. "name": "Bernhard Schussek",
  2227. "email": "bschussek@2bepublished.at"
  2228. },
  2229. {
  2230. "name": "Sebastian Bergmann",
  2231. "email": "sebastian@phpunit.de"
  2232. },
  2233. {
  2234. "name": "Adam Harvey",
  2235. "email": "aharvey@php.net"
  2236. }
  2237. ],
  2238. "description": "Provides the functionality to export PHP variables for visualization",
  2239. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  2240. "keywords": [
  2241. "export",
  2242. "exporter"
  2243. ],
  2244. "time": "2017-04-03 13:19:02"
  2245. },
  2246. {
  2247. "name": "sebastian/global-state",
  2248. "version": "2.0.0",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/sebastianbergmann/global-state.git",
  2252. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://files.phpcomposer.com/files/sebastianbergmann/global-state/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4.zip",
  2257. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  2258. "shasum": ""
  2259. },
  2260. "require": {
  2261. "php": "^7.0"
  2262. },
  2263. "require-dev": {
  2264. "phpunit/phpunit": "^6.0"
  2265. },
  2266. "suggest": {
  2267. "ext-uopz": "*"
  2268. },
  2269. "type": "library",
  2270. "extra": {
  2271. "branch-alias": {
  2272. "dev-master": "2.0-dev"
  2273. }
  2274. },
  2275. "autoload": {
  2276. "classmap": [
  2277. "src/"
  2278. ]
  2279. },
  2280. "notification-url": "https://packagist.org/downloads/",
  2281. "license": [
  2282. "BSD-3-Clause"
  2283. ],
  2284. "authors": [
  2285. {
  2286. "name": "Sebastian Bergmann",
  2287. "email": "sebastian@phpunit.de"
  2288. }
  2289. ],
  2290. "description": "Snapshotting of global state",
  2291. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2292. "keywords": [
  2293. "global state"
  2294. ],
  2295. "time": "2017-04-27 15:39:26"
  2296. },
  2297. {
  2298. "name": "sebastian/object-enumerator",
  2299. "version": "3.0.3",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2303. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://files.phpcomposer.com/files/sebastianbergmann/object-enumerator/7cfd9e65d11ffb5af41198476395774d4c8a84c5.zip",
  2308. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  2309. "shasum": ""
  2310. },
  2311. "require": {
  2312. "php": "^7.0",
  2313. "sebastian/object-reflector": "^1.1.1",
  2314. "sebastian/recursion-context": "^3.0"
  2315. },
  2316. "require-dev": {
  2317. "phpunit/phpunit": "^6.0"
  2318. },
  2319. "type": "library",
  2320. "extra": {
  2321. "branch-alias": {
  2322. "dev-master": "3.0.x-dev"
  2323. }
  2324. },
  2325. "autoload": {
  2326. "classmap": [
  2327. "src/"
  2328. ]
  2329. },
  2330. "notification-url": "https://packagist.org/downloads/",
  2331. "license": [
  2332. "BSD-3-Clause"
  2333. ],
  2334. "authors": [
  2335. {
  2336. "name": "Sebastian Bergmann",
  2337. "email": "sebastian@phpunit.de"
  2338. }
  2339. ],
  2340. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2341. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  2342. "time": "2017-08-03 12:35:26"
  2343. },
  2344. {
  2345. "name": "sebastian/object-reflector",
  2346. "version": "1.1.1",
  2347. "source": {
  2348. "type": "git",
  2349. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  2350. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  2351. },
  2352. "dist": {
  2353. "type": "zip",
  2354. "url": "https://files.phpcomposer.com/files/sebastianbergmann/object-reflector/773f97c67f28de00d397be301821b06708fca0be.zip",
  2355. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  2356. "shasum": ""
  2357. },
  2358. "require": {
  2359. "php": "^7.0"
  2360. },
  2361. "require-dev": {
  2362. "phpunit/phpunit": "^6.0"
  2363. },
  2364. "type": "library",
  2365. "extra": {
  2366. "branch-alias": {
  2367. "dev-master": "1.1-dev"
  2368. }
  2369. },
  2370. "autoload": {
  2371. "classmap": [
  2372. "src/"
  2373. ]
  2374. },
  2375. "notification-url": "https://packagist.org/downloads/",
  2376. "license": [
  2377. "BSD-3-Clause"
  2378. ],
  2379. "authors": [
  2380. {
  2381. "name": "Sebastian Bergmann",
  2382. "email": "sebastian@phpunit.de"
  2383. }
  2384. ],
  2385. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2386. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2387. "time": "2017-03-29 09:07:27"
  2388. },
  2389. {
  2390. "name": "sebastian/recursion-context",
  2391. "version": "3.0.0",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2395. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://files.phpcomposer.com/files/sebastianbergmann/recursion-context/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8.zip",
  2400. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  2401. "shasum": ""
  2402. },
  2403. "require": {
  2404. "php": "^7.0"
  2405. },
  2406. "require-dev": {
  2407. "phpunit/phpunit": "^6.0"
  2408. },
  2409. "type": "library",
  2410. "extra": {
  2411. "branch-alias": {
  2412. "dev-master": "3.0.x-dev"
  2413. }
  2414. },
  2415. "autoload": {
  2416. "classmap": [
  2417. "src/"
  2418. ]
  2419. },
  2420. "notification-url": "https://packagist.org/downloads/",
  2421. "license": [
  2422. "BSD-3-Clause"
  2423. ],
  2424. "authors": [
  2425. {
  2426. "name": "Jeff Welch",
  2427. "email": "whatthejeff@gmail.com"
  2428. },
  2429. {
  2430. "name": "Sebastian Bergmann",
  2431. "email": "sebastian@phpunit.de"
  2432. },
  2433. {
  2434. "name": "Adam Harvey",
  2435. "email": "aharvey@php.net"
  2436. }
  2437. ],
  2438. "description": "Provides functionality to recursively process PHP variables",
  2439. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2440. "time": "2017-03-03 06:23:57"
  2441. },
  2442. {
  2443. "name": "sebastian/resource-operations",
  2444. "version": "1.0.0",
  2445. "source": {
  2446. "type": "git",
  2447. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2448. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  2449. },
  2450. "dist": {
  2451. "type": "zip",
  2452. "url": "https://files.phpcomposer.com/files/sebastianbergmann/resource-operations/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52.zip",
  2453. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2454. "shasum": ""
  2455. },
  2456. "require": {
  2457. "php": ">=5.6.0"
  2458. },
  2459. "type": "library",
  2460. "extra": {
  2461. "branch-alias": {
  2462. "dev-master": "1.0.x-dev"
  2463. }
  2464. },
  2465. "autoload": {
  2466. "classmap": [
  2467. "src/"
  2468. ]
  2469. },
  2470. "notification-url": "https://packagist.org/downloads/",
  2471. "license": [
  2472. "BSD-3-Clause"
  2473. ],
  2474. "authors": [
  2475. {
  2476. "name": "Sebastian Bergmann",
  2477. "email": "sebastian@phpunit.de"
  2478. }
  2479. ],
  2480. "description": "Provides a list of PHP built-in functions that operate on resources",
  2481. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2482. "time": "2015-07-28 20:34:47"
  2483. },
  2484. {
  2485. "name": "sebastian/version",
  2486. "version": "2.0.1",
  2487. "source": {
  2488. "type": "git",
  2489. "url": "https://github.com/sebastianbergmann/version.git",
  2490. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  2491. },
  2492. "dist": {
  2493. "type": "zip",
  2494. "url": "https://files.phpcomposer.com/files/sebastianbergmann/version/99732be0ddb3361e16ad77b68ba41efc8e979019.zip",
  2495. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  2496. "shasum": ""
  2497. },
  2498. "require": {
  2499. "php": ">=5.6"
  2500. },
  2501. "type": "library",
  2502. "extra": {
  2503. "branch-alias": {
  2504. "dev-master": "2.0.x-dev"
  2505. }
  2506. },
  2507. "autoload": {
  2508. "classmap": [
  2509. "src/"
  2510. ]
  2511. },
  2512. "notification-url": "https://packagist.org/downloads/",
  2513. "license": [
  2514. "BSD-3-Clause"
  2515. ],
  2516. "authors": [
  2517. {
  2518. "name": "Sebastian Bergmann",
  2519. "email": "sebastian@phpunit.de",
  2520. "role": "lead"
  2521. }
  2522. ],
  2523. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2524. "homepage": "https://github.com/sebastianbergmann/version",
  2525. "time": "2016-10-03 07:35:21"
  2526. },
  2527. {
  2528. "name": "symfony/browser-kit",
  2529. "version": "v3.4.3",
  2530. "source": {
  2531. "type": "git",
  2532. "url": "https://github.com/symfony/browser-kit.git",
  2533. "reference": "490f27762705c8489bd042fe3e9377a191dba9b4"
  2534. },
  2535. "dist": {
  2536. "type": "zip",
  2537. "url": "https://files.phpcomposer.com/files/symfony/browser-kit/490f27762705c8489bd042fe3e9377a191dba9b4.zip",
  2538. "reference": "490f27762705c8489bd042fe3e9377a191dba9b4",
  2539. "shasum": ""
  2540. },
  2541. "require": {
  2542. "php": "^5.5.9|>=7.0.8",
  2543. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  2544. },
  2545. "require-dev": {
  2546. "symfony/css-selector": "~2.8|~3.0|~4.0",
  2547. "symfony/process": "~2.8|~3.0|~4.0"
  2548. },
  2549. "suggest": {
  2550. "symfony/process": ""
  2551. },
  2552. "type": "library",
  2553. "extra": {
  2554. "branch-alias": {
  2555. "dev-master": "3.4-dev"
  2556. }
  2557. },
  2558. "autoload": {
  2559. "psr-4": {
  2560. "Symfony\\Component\\BrowserKit\\": ""
  2561. },
  2562. "exclude-from-classmap": [
  2563. "/Tests/"
  2564. ]
  2565. },
  2566. "notification-url": "https://packagist.org/downloads/",
  2567. "license": [
  2568. "MIT"
  2569. ],
  2570. "authors": [
  2571. {
  2572. "name": "Fabien Potencier",
  2573. "email": "fabien@symfony.com"
  2574. },
  2575. {
  2576. "name": "Symfony Community",
  2577. "homepage": "https://symfony.com/contributors"
  2578. }
  2579. ],
  2580. "description": "Symfony BrowserKit Component",
  2581. "homepage": "https://symfony.com",
  2582. "time": "2018-01-03 07:37:34"
  2583. },
  2584. {
  2585. "name": "symfony/console",
  2586. "version": "v3.4.3",
  2587. "source": {
  2588. "type": "git",
  2589. "url": "https://github.com/symfony/console.git",
  2590. "reference": "8394c8ef121949e8f858f13bc1e34f05169e4e7d"
  2591. },
  2592. "dist": {
  2593. "type": "zip",
  2594. "url": "https://files.phpcomposer.com/files/symfony/console/8394c8ef121949e8f858f13bc1e34f05169e4e7d.zip",
  2595. "reference": "8394c8ef121949e8f858f13bc1e34f05169e4e7d",
  2596. "shasum": ""
  2597. },
  2598. "require": {
  2599. "php": "^5.5.9|>=7.0.8",
  2600. "symfony/debug": "~2.8|~3.0|~4.0",
  2601. "symfony/polyfill-mbstring": "~1.0"
  2602. },
  2603. "conflict": {
  2604. "symfony/dependency-injection": "<3.4",
  2605. "symfony/process": "<3.3"
  2606. },
  2607. "require-dev": {
  2608. "psr/log": "~1.0",
  2609. "symfony/config": "~3.3|~4.0",
  2610. "symfony/dependency-injection": "~3.4|~4.0",
  2611. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  2612. "symfony/lock": "~3.4|~4.0",
  2613. "symfony/process": "~3.3|~4.0"
  2614. },
  2615. "suggest": {
  2616. "psr/log": "For using the console logger",
  2617. "symfony/event-dispatcher": "",
  2618. "symfony/lock": "",
  2619. "symfony/process": ""
  2620. },
  2621. "type": "library",
  2622. "extra": {
  2623. "branch-alias": {
  2624. "dev-master": "3.4-dev"
  2625. }
  2626. },
  2627. "autoload": {
  2628. "psr-4": {
  2629. "Symfony\\Component\\Console\\": ""
  2630. },
  2631. "exclude-from-classmap": [
  2632. "/Tests/"
  2633. ]
  2634. },
  2635. "notification-url": "https://packagist.org/downloads/",
  2636. "license": [
  2637. "MIT"
  2638. ],
  2639. "authors": [
  2640. {
  2641. "name": "Fabien Potencier",
  2642. "email": "fabien@symfony.com"
  2643. },
  2644. {
  2645. "name": "Symfony Community",
  2646. "homepage": "https://symfony.com/contributors"
  2647. }
  2648. ],
  2649. "description": "Symfony Console Component",
  2650. "homepage": "https://symfony.com",
  2651. "time": "2018-01-03 07:37:34"
  2652. },
  2653. {
  2654. "name": "symfony/css-selector",
  2655. "version": "v3.4.3",
  2656. "source": {
  2657. "type": "git",
  2658. "url": "https://github.com/symfony/css-selector.git",
  2659. "reference": "e66394bc7610e69279bfdb3ab11b4fe65403f556"
  2660. },
  2661. "dist": {
  2662. "type": "zip",
  2663. "url": "https://files.phpcomposer.com/files/symfony/css-selector/e66394bc7610e69279bfdb3ab11b4fe65403f556.zip",
  2664. "reference": "e66394bc7610e69279bfdb3ab11b4fe65403f556",
  2665. "shasum": ""
  2666. },
  2667. "require": {
  2668. "php": "^5.5.9|>=7.0.8"
  2669. },
  2670. "type": "library",
  2671. "extra": {
  2672. "branch-alias": {
  2673. "dev-master": "3.4-dev"
  2674. }
  2675. },
  2676. "autoload": {
  2677. "psr-4": {
  2678. "Symfony\\Component\\CssSelector\\": ""
  2679. },
  2680. "exclude-from-classmap": [
  2681. "/Tests/"
  2682. ]
  2683. },
  2684. "notification-url": "https://packagist.org/downloads/",
  2685. "license": [
  2686. "MIT"
  2687. ],
  2688. "authors": [
  2689. {
  2690. "name": "Jean-François Simon",
  2691. "email": "jeanfrancois.simon@sensiolabs.com"
  2692. },
  2693. {
  2694. "name": "Fabien Potencier",
  2695. "email": "fabien@symfony.com"
  2696. },
  2697. {
  2698. "name": "Symfony Community",
  2699. "homepage": "https://symfony.com/contributors"
  2700. }
  2701. ],
  2702. "description": "Symfony CssSelector Component",
  2703. "homepage": "https://symfony.com",
  2704. "time": "2018-01-03 07:37:34"
  2705. },
  2706. {
  2707. "name": "symfony/debug",
  2708. "version": "v3.4.3",
  2709. "source": {
  2710. "type": "git",
  2711. "url": "https://github.com/symfony/debug.git",
  2712. "reference": "603b95dda8b00020e4e6e60dc906e7b715b1c245"
  2713. },
  2714. "dist": {
  2715. "type": "zip",
  2716. "url": "https://files.phpcomposer.com/files/symfony/debug/603b95dda8b00020e4e6e60dc906e7b715b1c245.zip",
  2717. "reference": "603b95dda8b00020e4e6e60dc906e7b715b1c245",
  2718. "shasum": ""
  2719. },
  2720. "require": {
  2721. "php": "^5.5.9|>=7.0.8",
  2722. "psr/log": "~1.0"
  2723. },
  2724. "conflict": {
  2725. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2726. },
  2727. "require-dev": {
  2728. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  2729. },
  2730. "type": "library",
  2731. "extra": {
  2732. "branch-alias": {
  2733. "dev-master": "3.4-dev"
  2734. }
  2735. },
  2736. "autoload": {
  2737. "psr-4": {
  2738. "Symfony\\Component\\Debug\\": ""
  2739. },
  2740. "exclude-from-classmap": [
  2741. "/Tests/"
  2742. ]
  2743. },
  2744. "notification-url": "https://packagist.org/downloads/",
  2745. "license": [
  2746. "MIT"
  2747. ],
  2748. "authors": [
  2749. {
  2750. "name": "Fabien Potencier",
  2751. "email": "fabien@symfony.com"
  2752. },
  2753. {
  2754. "name": "Symfony Community",
  2755. "homepage": "https://symfony.com/contributors"
  2756. }
  2757. ],
  2758. "description": "Symfony Debug Component",
  2759. "homepage": "https://symfony.com",
  2760. "time": "2018-01-03 17:14:19"
  2761. },
  2762. {
  2763. "name": "symfony/dom-crawler",
  2764. "version": "v3.4.3",
  2765. "source": {
  2766. "type": "git",
  2767. "url": "https://github.com/symfony/dom-crawler.git",
  2768. "reference": "09bd97b844b3151fab82f2fdd62db9c464b3910a"
  2769. },
  2770. "dist": {
  2771. "type": "zip",
  2772. "url": "https://files.phpcomposer.com/files/symfony/dom-crawler/09bd97b844b3151fab82f2fdd62db9c464b3910a.zip",
  2773. "reference": "09bd97b844b3151fab82f2fdd62db9c464b3910a",
  2774. "shasum": ""
  2775. },
  2776. "require": {
  2777. "php": "^5.5.9|>=7.0.8",
  2778. "symfony/polyfill-mbstring": "~1.0"
  2779. },
  2780. "require-dev": {
  2781. "symfony/css-selector": "~2.8|~3.0|~4.0"
  2782. },
  2783. "suggest": {
  2784. "symfony/css-selector": ""
  2785. },
  2786. "type": "library",
  2787. "extra": {
  2788. "branch-alias": {
  2789. "dev-master": "3.4-dev"
  2790. }
  2791. },
  2792. "autoload": {
  2793. "psr-4": {
  2794. "Symfony\\Component\\DomCrawler\\": ""
  2795. },
  2796. "exclude-from-classmap": [
  2797. "/Tests/"
  2798. ]
  2799. },
  2800. "notification-url": "https://packagist.org/downloads/",
  2801. "license": [
  2802. "MIT"
  2803. ],
  2804. "authors": [
  2805. {
  2806. "name": "Fabien Potencier",
  2807. "email": "fabien@symfony.com"
  2808. },
  2809. {
  2810. "name": "Symfony Community",
  2811. "homepage": "https://symfony.com/contributors"
  2812. }
  2813. ],
  2814. "description": "Symfony DomCrawler Component",
  2815. "homepage": "https://symfony.com",
  2816. "time": "2018-01-03 07:37:34"
  2817. },
  2818. {
  2819. "name": "symfony/event-dispatcher",
  2820. "version": "v3.4.3",
  2821. "source": {
  2822. "type": "git",
  2823. "url": "https://github.com/symfony/event-dispatcher.git",
  2824. "reference": "26b87b6bca8f8f797331a30b76fdae5342dc26ca"
  2825. },
  2826. "dist": {
  2827. "type": "zip",
  2828. "url": "https://files.phpcomposer.com/files/symfony/event-dispatcher/26b87b6bca8f8f797331a30b76fdae5342dc26ca.zip",
  2829. "reference": "26b87b6bca8f8f797331a30b76fdae5342dc26ca",
  2830. "shasum": ""
  2831. },
  2832. "require": {
  2833. "php": "^5.5.9|>=7.0.8"
  2834. },
  2835. "conflict": {
  2836. "symfony/dependency-injection": "<3.3"
  2837. },
  2838. "require-dev": {
  2839. "psr/log": "~1.0",
  2840. "symfony/config": "~2.8|~3.0|~4.0",
  2841. "symfony/dependency-injection": "~3.3|~4.0",
  2842. "symfony/expression-language": "~2.8|~3.0|~4.0",
  2843. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  2844. },
  2845. "suggest": {
  2846. "symfony/dependency-injection": "",
  2847. "symfony/http-kernel": ""
  2848. },
  2849. "type": "library",
  2850. "extra": {
  2851. "branch-alias": {
  2852. "dev-master": "3.4-dev"
  2853. }
  2854. },
  2855. "autoload": {
  2856. "psr-4": {
  2857. "Symfony\\Component\\EventDispatcher\\": ""
  2858. },
  2859. "exclude-from-classmap": [
  2860. "/Tests/"
  2861. ]
  2862. },
  2863. "notification-url": "https://packagist.org/downloads/",
  2864. "license": [
  2865. "MIT"
  2866. ],
  2867. "authors": [
  2868. {
  2869. "name": "Fabien Potencier",
  2870. "email": "fabien@symfony.com"
  2871. },
  2872. {
  2873. "name": "Symfony Community",
  2874. "homepage": "https://symfony.com/contributors"
  2875. }
  2876. ],
  2877. "description": "Symfony EventDispatcher Component",
  2878. "homepage": "https://symfony.com",
  2879. "time": "2018-01-03 07:37:34"
  2880. },
  2881. {
  2882. "name": "symfony/finder",
  2883. "version": "v3.4.3",
  2884. "source": {
  2885. "type": "git",
  2886. "url": "https://github.com/symfony/finder.git",
  2887. "reference": "613e26310776f49a1773b6737c6bd554b8bc8c6f"
  2888. },
  2889. "dist": {
  2890. "type": "zip",
  2891. "url": "https://files.phpcomposer.com/files/symfony/finder/613e26310776f49a1773b6737c6bd554b8bc8c6f.zip",
  2892. "reference": "613e26310776f49a1773b6737c6bd554b8bc8c6f",
  2893. "shasum": ""
  2894. },
  2895. "require": {
  2896. "php": "^5.5.9|>=7.0.8"
  2897. },
  2898. "type": "library",
  2899. "extra": {
  2900. "branch-alias": {
  2901. "dev-master": "3.4-dev"
  2902. }
  2903. },
  2904. "autoload": {
  2905. "psr-4": {
  2906. "Symfony\\Component\\Finder\\": ""
  2907. },
  2908. "exclude-from-classmap": [
  2909. "/Tests/"
  2910. ]
  2911. },
  2912. "notification-url": "https://packagist.org/downloads/",
  2913. "license": [
  2914. "MIT"
  2915. ],
  2916. "authors": [
  2917. {
  2918. "name": "Fabien Potencier",
  2919. "email": "fabien@symfony.com"
  2920. },
  2921. {
  2922. "name": "Symfony Community",
  2923. "homepage": "https://symfony.com/contributors"
  2924. }
  2925. ],
  2926. "description": "Symfony Finder Component",
  2927. "homepage": "https://symfony.com",
  2928. "time": "2018-01-03 07:37:34"
  2929. },
  2930. {
  2931. "name": "symfony/polyfill-mbstring",
  2932. "version": "v1.6.0",
  2933. "source": {
  2934. "type": "git",
  2935. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2936. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  2937. },
  2938. "dist": {
  2939. "type": "zip",
  2940. "url": "https://files.phpcomposer.com/files/symfony/polyfill-mbstring/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296.zip",
  2941. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  2942. "shasum": ""
  2943. },
  2944. "require": {
  2945. "php": ">=5.3.3"
  2946. },
  2947. "suggest": {
  2948. "ext-mbstring": "For best performance"
  2949. },
  2950. "type": "library",
  2951. "extra": {
  2952. "branch-alias": {
  2953. "dev-master": "1.6-dev"
  2954. }
  2955. },
  2956. "autoload": {
  2957. "psr-4": {
  2958. "Symfony\\Polyfill\\Mbstring\\": ""
  2959. },
  2960. "files": [
  2961. "bootstrap.php"
  2962. ]
  2963. },
  2964. "notification-url": "https://packagist.org/downloads/",
  2965. "license": [
  2966. "MIT"
  2967. ],
  2968. "authors": [
  2969. {
  2970. "name": "Nicolas Grekas",
  2971. "email": "p@tchwork.com"
  2972. },
  2973. {
  2974. "name": "Symfony Community",
  2975. "homepage": "https://symfony.com/contributors"
  2976. }
  2977. ],
  2978. "description": "Symfony polyfill for the Mbstring extension",
  2979. "homepage": "https://symfony.com",
  2980. "keywords": [
  2981. "compatibility",
  2982. "mbstring",
  2983. "polyfill",
  2984. "portable",
  2985. "shim"
  2986. ],
  2987. "time": "2017-10-11 12:05:26"
  2988. },
  2989. {
  2990. "name": "symfony/yaml",
  2991. "version": "v3.4.3",
  2992. "source": {
  2993. "type": "git",
  2994. "url": "https://github.com/symfony/yaml.git",
  2995. "reference": "25c192f25721a74084272671f658797d9e0e0146"
  2996. },
  2997. "dist": {
  2998. "type": "zip",
  2999. "url": "https://files.phpcomposer.com/files/symfony/yaml/25c192f25721a74084272671f658797d9e0e0146.zip",
  3000. "reference": "25c192f25721a74084272671f658797d9e0e0146",
  3001. "shasum": ""
  3002. },
  3003. "require": {
  3004. "php": "^5.5.9|>=7.0.8"
  3005. },
  3006. "conflict": {
  3007. "symfony/console": "<3.4"
  3008. },
  3009. "require-dev": {
  3010. "symfony/console": "~3.4|~4.0"
  3011. },
  3012. "suggest": {
  3013. "symfony/console": "For validating YAML files using the lint command"
  3014. },
  3015. "type": "library",
  3016. "extra": {
  3017. "branch-alias": {
  3018. "dev-master": "3.4-dev"
  3019. }
  3020. },
  3021. "autoload": {
  3022. "psr-4": {
  3023. "Symfony\\Component\\Yaml\\": ""
  3024. },
  3025. "exclude-from-classmap": [
  3026. "/Tests/"
  3027. ]
  3028. },
  3029. "notification-url": "https://packagist.org/downloads/",
  3030. "license": [
  3031. "MIT"
  3032. ],
  3033. "authors": [
  3034. {
  3035. "name": "Fabien Potencier",
  3036. "email": "fabien@symfony.com"
  3037. },
  3038. {
  3039. "name": "Symfony Community",
  3040. "homepage": "https://symfony.com/contributors"
  3041. }
  3042. ],
  3043. "description": "Symfony Yaml Component",
  3044. "homepage": "https://symfony.com",
  3045. "time": "2018-01-03 07:37:34"
  3046. },
  3047. {
  3048. "name": "theseer/tokenizer",
  3049. "version": "1.1.0",
  3050. "source": {
  3051. "type": "git",
  3052. "url": "https://github.com/theseer/tokenizer.git",
  3053. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  3054. },
  3055. "dist": {
  3056. "type": "zip",
  3057. "url": "https://files.phpcomposer.com/files/theseer/tokenizer/cb2f008f3f05af2893a87208fe6a6c4985483f8b.zip",
  3058. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  3059. "shasum": ""
  3060. },
  3061. "require": {
  3062. "ext-dom": "*",
  3063. "ext-tokenizer": "*",
  3064. "ext-xmlwriter": "*",
  3065. "php": "^7.0"
  3066. },
  3067. "type": "library",
  3068. "autoload": {
  3069. "classmap": [
  3070. "src/"
  3071. ]
  3072. },
  3073. "notification-url": "https://packagist.org/downloads/",
  3074. "license": [
  3075. "BSD-3-Clause"
  3076. ],
  3077. "authors": [
  3078. {
  3079. "name": "Arne Blankerts",
  3080. "email": "arne@blankerts.de",
  3081. "role": "Developer"
  3082. }
  3083. ],
  3084. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  3085. "time": "2017-04-07 12:08:54"
  3086. },
  3087. {
  3088. "name": "webmozart/assert",
  3089. "version": "1.2.0",
  3090. "source": {
  3091. "type": "git",
  3092. "url": "https://github.com/webmozart/assert.git",
  3093. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  3094. },
  3095. "dist": {
  3096. "type": "zip",
  3097. "url": "https://files.phpcomposer.com/files/webmozart/assert/2db61e59ff05fe5126d152bd0655c9ea113e550f.zip",
  3098. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  3099. "shasum": ""
  3100. },
  3101. "require": {
  3102. "php": "^5.3.3 || ^7.0"
  3103. },
  3104. "require-dev": {
  3105. "phpunit/phpunit": "^4.6",
  3106. "sebastian/version": "^1.0.1"
  3107. },
  3108. "type": "library",
  3109. "extra": {
  3110. "branch-alias": {
  3111. "dev-master": "1.3-dev"
  3112. }
  3113. },
  3114. "autoload": {
  3115. "psr-4": {
  3116. "Webmozart\\Assert\\": "src/"
  3117. }
  3118. },
  3119. "notification-url": "https://packagist.org/downloads/",
  3120. "license": [
  3121. "MIT"
  3122. ],
  3123. "authors": [
  3124. {
  3125. "name": "Bernhard Schussek",
  3126. "email": "bschussek@gmail.com"
  3127. }
  3128. ],
  3129. "description": "Assertions to validate method input/output with nice error messages.",
  3130. "keywords": [
  3131. "assert",
  3132. "check",
  3133. "validate"
  3134. ],
  3135. "time": "2016-11-23 20:04:58"
  3136. },
  3137. {
  3138. "name": "yiisoft/yii2-debug",
  3139. "version": "2.0.13",
  3140. "source": {
  3141. "type": "git",
  3142. "url": "https://github.com/yiisoft/yii2-debug.git",
  3143. "reference": "b37f414959c2fafefb332020b42037cd17c1cb7f"
  3144. },
  3145. "dist": {
  3146. "type": "zip",
  3147. "url": "https://files.phpcomposer.com/files/yiisoft/yii2-debug/b37f414959c2fafefb332020b42037cd17c1cb7f.zip",
  3148. "reference": "b37f414959c2fafefb332020b42037cd17c1cb7f",
  3149. "shasum": ""
  3150. },
  3151. "require": {
  3152. "yiisoft/yii2": "~2.0.13",
  3153. "yiisoft/yii2-bootstrap": "~2.0.0"
  3154. },
  3155. "type": "yii2-extension",
  3156. "extra": {
  3157. "branch-alias": {
  3158. "dev-master": "2.0.x-dev"
  3159. }
  3160. },
  3161. "autoload": {
  3162. "psr-4": {
  3163. "yii\\debug\\": ""
  3164. }
  3165. },
  3166. "notification-url": "https://packagist.org/downloads/",
  3167. "license": [
  3168. "BSD-3-Clause"
  3169. ],
  3170. "authors": [
  3171. {
  3172. "name": "Qiang Xue",
  3173. "email": "qiang.xue@gmail.com"
  3174. }
  3175. ],
  3176. "description": "The debugger extension for the Yii framework",
  3177. "keywords": [
  3178. "debug",
  3179. "debugger",
  3180. "yii2"
  3181. ],
  3182. "time": "2017-12-05 07:36:23"
  3183. },
  3184. {
  3185. "name": "yiisoft/yii2-faker",
  3186. "version": "2.0.3",
  3187. "source": {
  3188. "type": "git",
  3189. "url": "https://github.com/yiisoft/yii2-faker.git",
  3190. "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c"
  3191. },
  3192. "dist": {
  3193. "type": "zip",
  3194. "url": "https://files.phpcomposer.com/files/yiisoft/yii2-faker/b88ca69ee226a3610b2c26c026c3203d7ac50f6c.zip",
  3195. "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c",
  3196. "shasum": ""
  3197. },
  3198. "require": {
  3199. "fzaninotto/faker": "*",
  3200. "yiisoft/yii2": "*"
  3201. },
  3202. "type": "yii2-extension",
  3203. "extra": {
  3204. "branch-alias": {
  3205. "dev-master": "2.0.x-dev"
  3206. }
  3207. },
  3208. "autoload": {
  3209. "psr-4": {
  3210. "yii\\faker\\": ""
  3211. }
  3212. },
  3213. "notification-url": "https://packagist.org/downloads/",
  3214. "license": [
  3215. "BSD-3-Clause"
  3216. ],
  3217. "authors": [
  3218. {
  3219. "name": "Mark Jebri",
  3220. "email": "mark.github@yandex.ru"
  3221. }
  3222. ],
  3223. "description": "Fixture generator. The Faker integration for the Yii framework.",
  3224. "keywords": [
  3225. "Fixture",
  3226. "faker",
  3227. "yii2"
  3228. ],
  3229. "time": "2015-03-01 06:22:44"
  3230. },
  3231. {
  3232. "name": "yiisoft/yii2-gii",
  3233. "version": "2.0.6",
  3234. "source": {
  3235. "type": "git",
  3236. "url": "https://github.com/yiisoft/yii2-gii.git",
  3237. "reference": "db41f647d9b73702ceb6864fdfce827a72b5ce42"
  3238. },
  3239. "dist": {
  3240. "type": "zip",
  3241. "url": "https://files.phpcomposer.com/files/yiisoft/yii2-gii/db41f647d9b73702ceb6864fdfce827a72b5ce42.zip",
  3242. "reference": "db41f647d9b73702ceb6864fdfce827a72b5ce42",
  3243. "shasum": ""
  3244. },
  3245. "require": {
  3246. "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
  3247. "phpspec/php-diff": ">=1.0.2",
  3248. "yiisoft/yii2": "~2.0.13",
  3249. "yiisoft/yii2-bootstrap": "~2.0.0"
  3250. },
  3251. "type": "yii2-extension",
  3252. "extra": {
  3253. "branch-alias": {
  3254. "dev-master": "2.0.x-dev"
  3255. },
  3256. "asset-installer-paths": {
  3257. "npm-asset-library": "vendor/npm",
  3258. "bower-asset-library": "vendor/bower"
  3259. }
  3260. },
  3261. "autoload": {
  3262. "psr-4": {
  3263. "yii\\gii\\": ""
  3264. }
  3265. },
  3266. "notification-url": "https://packagist.org/downloads/",
  3267. "license": [
  3268. "BSD-3-Clause"
  3269. ],
  3270. "authors": [
  3271. {
  3272. "name": "Qiang Xue",
  3273. "email": "qiang.xue@gmail.com"
  3274. }
  3275. ],
  3276. "description": "The Gii extension for the Yii framework",
  3277. "keywords": [
  3278. "code generator",
  3279. "gii",
  3280. "yii2"
  3281. ],
  3282. "time": "2017-12-22 23:53:06"
  3283. }
  3284. ],
  3285. "aliases": [],
  3286. "minimum-stability": "stable",
  3287. "stability-flags": [],
  3288. "prefer-stable": false,
  3289. "prefer-lowest": false,
  3290. "platform": {
  3291. "php": ">=5.4.0"
  3292. },
  3293. "platform-dev": []
  3294. }