composer.lock 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342
  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": "git@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-redis",
  652. "version": "2.0.7",
  653. "source": {
  654. "type": "git",
  655. "url": "https://github.com/yiisoft/yii2-redis.git",
  656. "reference": "3891bb19f3ddc7ad744b439fe1d656ebb5b60a99"
  657. },
  658. "dist": {
  659. "type": "zip",
  660. "url": "https://files.phpcomposer.com/files/yiisoft/yii2-redis/3891bb19f3ddc7ad744b439fe1d656ebb5b60a99.zip",
  661. "reference": "3891bb19f3ddc7ad744b439fe1d656ebb5b60a99",
  662. "shasum": ""
  663. },
  664. "require": {
  665. "yiisoft/yii2": "~2.0.13"
  666. },
  667. "type": "yii2-extension",
  668. "extra": {
  669. "branch-alias": {
  670. "dev-master": "2.0.x-dev"
  671. }
  672. },
  673. "autoload": {
  674. "psr-4": {
  675. "yii\\redis\\": ""
  676. }
  677. },
  678. "notification-url": "https://packagist.org/downloads/",
  679. "license": [
  680. "BSD-3-Clause"
  681. ],
  682. "authors": [
  683. {
  684. "name": "Carsten Brandt",
  685. "email": "mail@cebe.cc"
  686. }
  687. ],
  688. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  689. "keywords": [
  690. "active-record",
  691. "cache",
  692. "redis",
  693. "session",
  694. "yii2"
  695. ],
  696. "time": "2017-12-11T21:17:34+00:00"
  697. },
  698. {
  699. "name": "yiisoft/yii2-swiftmailer",
  700. "version": "2.1.0",
  701. "source": {
  702. "type": "git",
  703. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  704. "reference": "563570c9aa19ca47c1b22e3032983229378e9274"
  705. },
  706. "dist": {
  707. "type": "zip",
  708. "url": "https://files.phpcomposer.com/files/yiisoft/yii2-swiftmailer/563570c9aa19ca47c1b22e3032983229378e9274.zip",
  709. "reference": "563570c9aa19ca47c1b22e3032983229378e9274",
  710. "shasum": ""
  711. },
  712. "require": {
  713. "swiftmailer/swiftmailer": "~6.0",
  714. "yiisoft/yii2": "~2.0.4"
  715. },
  716. "type": "yii2-extension",
  717. "extra": {
  718. "branch-alias": {
  719. "dev-master": "2.0.x-dev"
  720. }
  721. },
  722. "autoload": {
  723. "psr-4": {
  724. "yii\\swiftmailer\\": ""
  725. }
  726. },
  727. "notification-url": "https://packagist.org/downloads/",
  728. "license": [
  729. "BSD-3-Clause"
  730. ],
  731. "authors": [
  732. {
  733. "name": "Paul Klimov",
  734. "email": "klimov.paul@gmail.com"
  735. }
  736. ],
  737. "description": "The SwiftMailer integration for the Yii framework",
  738. "keywords": [
  739. "email",
  740. "mail",
  741. "mailer",
  742. "swift",
  743. "swiftmailer",
  744. "yii2"
  745. ],
  746. "time": "2017-08-04 10:48:17"
  747. }
  748. ],
  749. "packages-dev": [
  750. {
  751. "name": "behat/gherkin",
  752. "version": "v4.4.5",
  753. "source": {
  754. "type": "git",
  755. "url": "https://github.com/Behat/Gherkin.git",
  756. "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74"
  757. },
  758. "dist": {
  759. "type": "zip",
  760. "url": "https://files.phpcomposer.com/files/Behat/Gherkin/5c14cff4f955b17d20d088dec1bde61c0539ec74.zip",
  761. "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74",
  762. "shasum": ""
  763. },
  764. "require": {
  765. "php": ">=5.3.1"
  766. },
  767. "require-dev": {
  768. "phpunit/phpunit": "~4.5|~5",
  769. "symfony/phpunit-bridge": "~2.7|~3",
  770. "symfony/yaml": "~2.3|~3"
  771. },
  772. "suggest": {
  773. "symfony/yaml": "If you want to parse features, represented in YAML files"
  774. },
  775. "type": "library",
  776. "extra": {
  777. "branch-alias": {
  778. "dev-master": "4.4-dev"
  779. }
  780. },
  781. "autoload": {
  782. "psr-0": {
  783. "Behat\\Gherkin": "src/"
  784. }
  785. },
  786. "notification-url": "https://packagist.org/downloads/",
  787. "license": [
  788. "MIT"
  789. ],
  790. "authors": [
  791. {
  792. "name": "Konstantin Kudryashov",
  793. "email": "ever.zet@gmail.com",
  794. "homepage": "http://everzet.com"
  795. }
  796. ],
  797. "description": "Gherkin DSL parser for PHP 5.3",
  798. "homepage": "http://behat.org/",
  799. "keywords": [
  800. "BDD",
  801. "Behat",
  802. "Cucumber",
  803. "DSL",
  804. "gherkin",
  805. "parser"
  806. ],
  807. "time": "2016-10-30 11:50:56"
  808. },
  809. {
  810. "name": "bower-asset/typeahead.js",
  811. "version": "v0.11.1",
  812. "source": {
  813. "type": "git",
  814. "url": "git@github.com:twitter/typeahead.js.git",
  815. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  816. },
  817. "dist": {
  818. "type": "zip",
  819. "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
  820. "reference": "588440f66559714280628a4f9799f0c4eb880a4a",
  821. "shasum": null
  822. },
  823. "require": {
  824. "bower-asset/jquery": ">=1.7"
  825. },
  826. "type": "bower-asset"
  827. },
  828. {
  829. "name": "codeception/base",
  830. "version": "2.3.7",
  831. "source": {
  832. "type": "git",
  833. "url": "https://github.com/Codeception/base.git",
  834. "reference": "c3fcea61525e62361ecc45aea1837f225ba73b4f"
  835. },
  836. "dist": {
  837. "type": "zip",
  838. "url": "https://files.phpcomposer.com/files/Codeception/base/c3fcea61525e62361ecc45aea1837f225ba73b4f.zip",
  839. "reference": "c3fcea61525e62361ecc45aea1837f225ba73b4f",
  840. "shasum": ""
  841. },
  842. "require": {
  843. "behat/gherkin": "~4.4.0",
  844. "ext-json": "*",
  845. "ext-mbstring": "*",
  846. "guzzlehttp/psr7": "~1.0",
  847. "php": ">=5.4.0 <8.0",
  848. "phpunit/php-code-coverage": ">=2.2.4 <6.0",
  849. "phpunit/phpunit": ">=4.8.28 <5.0.0 || >=5.6.3 <7.0",
  850. "phpunit/phpunit-mock-objects": ">2.3 <5.0",
  851. "sebastian/comparator": ">1.1 <3.0",
  852. "sebastian/diff": ">=1.4 <3.0",
  853. "symfony/browser-kit": ">=2.7 <5.0",
  854. "symfony/console": ">=2.7 <5.0",
  855. "symfony/css-selector": ">=2.7 <5.0",
  856. "symfony/dom-crawler": ">=2.7 <5.0",
  857. "symfony/event-dispatcher": ">=2.7 <5.0",
  858. "symfony/finder": ">=2.7 <5.0",
  859. "symfony/yaml": ">=2.7 <5.0"
  860. },
  861. "require-dev": {
  862. "codeception/specify": "~0.3",
  863. "facebook/graph-sdk": "~5.3",
  864. "flow/jsonpath": "~0.2",
  865. "league/factory-muffin": "^3.0",
  866. "league/factory-muffin-faker": "^1.0",
  867. "monolog/monolog": "~1.8",
  868. "pda/pheanstalk": "~3.0",
  869. "php-amqplib/php-amqplib": "~2.4",
  870. "predis/predis": "^1.0",
  871. "squizlabs/php_codesniffer": "~2.0",
  872. "symfony/process": ">=2.7 <5.0",
  873. "vlucas/phpdotenv": "^2.4.0"
  874. },
  875. "suggest": {
  876. "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
  877. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
  878. "codeception/specify": "BDD-style code blocks",
  879. "codeception/verify": "BDD-style assertions",
  880. "flow/jsonpath": "For using JSONPath in REST module",
  881. "league/factory-muffin": "For DataFactory module",
  882. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  883. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  884. "stecman/symfony-console-completion": "For BASH autocompletion",
  885. "symfony/phpunit-bridge": "For phpunit-bridge support"
  886. },
  887. "bin": [
  888. "codecept"
  889. ],
  890. "type": "library",
  891. "extra": {
  892. "branch-alias": []
  893. },
  894. "autoload": {
  895. "psr-4": {
  896. "Codeception\\": "src\\Codeception",
  897. "Codeception\\Extension\\": "ext"
  898. }
  899. },
  900. "notification-url": "https://packagist.org/downloads/",
  901. "license": [
  902. "MIT"
  903. ],
  904. "authors": [
  905. {
  906. "name": "Michael Bodnarchuk",
  907. "email": "davert@mail.ua",
  908. "homepage": "http://codegyre.com"
  909. }
  910. ],
  911. "description": "BDD-style testing framework",
  912. "homepage": "http://codeception.com/",
  913. "keywords": [
  914. "BDD",
  915. "TDD",
  916. "acceptance testing",
  917. "functional testing",
  918. "unit testing"
  919. ],
  920. "time": "2017-12-12 04:54:15"
  921. },
  922. {
  923. "name": "codeception/verify",
  924. "version": "0.3.3",
  925. "source": {
  926. "type": "git",
  927. "url": "https://github.com/Codeception/Verify.git",
  928. "reference": "5d649dda453cd814dadc4bb053060cd2c6bb4b4c"
  929. },
  930. "dist": {
  931. "type": "zip",
  932. "url": "https://files.phpcomposer.com/files/Codeception/Verify/5d649dda453cd814dadc4bb053060cd2c6bb4b4c.zip",
  933. "reference": "5d649dda453cd814dadc4bb053060cd2c6bb4b4c",
  934. "shasum": ""
  935. },
  936. "require-dev": {
  937. "phpunit/phpunit": "~4.0"
  938. },
  939. "type": "library",
  940. "autoload": {
  941. "files": [
  942. "src/Codeception/function.php"
  943. ]
  944. },
  945. "notification-url": "https://packagist.org/downloads/",
  946. "license": [
  947. "MIT"
  948. ],
  949. "authors": [
  950. {
  951. "name": "Michael Bodnarchuk",
  952. "email": "davert.php@mailican.com"
  953. }
  954. ],
  955. "description": "BDD assertion library for PHPUnit",
  956. "time": "2017-01-09 10:58:51"
  957. },
  958. {
  959. "name": "doctrine/instantiator",
  960. "version": "1.0.5",
  961. "source": {
  962. "type": "git",
  963. "url": "https://github.com/doctrine/instantiator.git",
  964. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  965. },
  966. "dist": {
  967. "type": "zip",
  968. "url": "https://files.phpcomposer.com/files/doctrine/instantiator/8e884e78f9f0eb1329e445619e04456e64d8051d.zip",
  969. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  970. "shasum": ""
  971. },
  972. "require": {
  973. "php": ">=5.3,<8.0-DEV"
  974. },
  975. "require-dev": {
  976. "athletic/athletic": "~0.1.8",
  977. "ext-pdo": "*",
  978. "ext-phar": "*",
  979. "phpunit/phpunit": "~4.0",
  980. "squizlabs/php_codesniffer": "~2.0"
  981. },
  982. "type": "library",
  983. "extra": {
  984. "branch-alias": {
  985. "dev-master": "1.0.x-dev"
  986. }
  987. },
  988. "autoload": {
  989. "psr-4": {
  990. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  991. }
  992. },
  993. "notification-url": "https://packagist.org/downloads/",
  994. "license": [
  995. "MIT"
  996. ],
  997. "authors": [
  998. {
  999. "name": "Marco Pivetta",
  1000. "email": "ocramius@gmail.com",
  1001. "homepage": "http://ocramius.github.com/"
  1002. }
  1003. ],
  1004. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1005. "homepage": "https://github.com/doctrine/instantiator",
  1006. "keywords": [
  1007. "constructor",
  1008. "instantiate"
  1009. ],
  1010. "time": "2015-06-14 21:17:01"
  1011. },
  1012. {
  1013. "name": "fzaninotto/faker",
  1014. "version": "v1.7.1",
  1015. "source": {
  1016. "type": "git",
  1017. "url": "https://github.com/fzaninotto/Faker.git",
  1018. "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d"
  1019. },
  1020. "dist": {
  1021. "type": "zip",
  1022. "url": "https://files.phpcomposer.com/files/fzaninotto/Faker/d3ed4cc37051c1ca52d22d76b437d14809fc7e0d.zip",
  1023. "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d",
  1024. "shasum": ""
  1025. },
  1026. "require": {
  1027. "php": "^5.3.3 || ^7.0"
  1028. },
  1029. "require-dev": {
  1030. "ext-intl": "*",
  1031. "phpunit/phpunit": "^4.0 || ^5.0",
  1032. "squizlabs/php_codesniffer": "^1.5"
  1033. },
  1034. "type": "library",
  1035. "extra": {
  1036. "branch-alias": {
  1037. "dev-master": "1.8-dev"
  1038. }
  1039. },
  1040. "autoload": {
  1041. "psr-4": {
  1042. "Faker\\": "src/Faker/"
  1043. }
  1044. },
  1045. "notification-url": "https://packagist.org/downloads/",
  1046. "license": [
  1047. "MIT"
  1048. ],
  1049. "authors": [
  1050. {
  1051. "name": "François Zaninotto"
  1052. }
  1053. ],
  1054. "description": "Faker is a PHP library that generates fake data for you.",
  1055. "keywords": [
  1056. "data",
  1057. "faker",
  1058. "fixtures"
  1059. ],
  1060. "time": "2017-08-15 16:48:10"
  1061. },
  1062. {
  1063. "name": "guzzlehttp/psr7",
  1064. "version": "1.4.2",
  1065. "source": {
  1066. "type": "git",
  1067. "url": "https://github.com/guzzle/psr7.git",
  1068. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  1069. },
  1070. "dist": {
  1071. "type": "zip",
  1072. "url": "https://files.phpcomposer.com/files/guzzle/psr7/f5b8a8512e2b58b0071a7280e39f14f72e05d87c.zip",
  1073. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1074. "shasum": ""
  1075. },
  1076. "require": {
  1077. "php": ">=5.4.0",
  1078. "psr/http-message": "~1.0"
  1079. },
  1080. "provide": {
  1081. "psr/http-message-implementation": "1.0"
  1082. },
  1083. "require-dev": {
  1084. "phpunit/phpunit": "~4.0"
  1085. },
  1086. "type": "library",
  1087. "extra": {
  1088. "branch-alias": {
  1089. "dev-master": "1.4-dev"
  1090. }
  1091. },
  1092. "autoload": {
  1093. "psr-4": {
  1094. "GuzzleHttp\\Psr7\\": "src/"
  1095. },
  1096. "files": [
  1097. "src/functions_include.php"
  1098. ]
  1099. },
  1100. "notification-url": "https://packagist.org/downloads/",
  1101. "license": [
  1102. "MIT"
  1103. ],
  1104. "authors": [
  1105. {
  1106. "name": "Michael Dowling",
  1107. "email": "mtdowling@gmail.com",
  1108. "homepage": "https://github.com/mtdowling"
  1109. },
  1110. {
  1111. "name": "Tobias Schultze",
  1112. "homepage": "https://github.com/Tobion"
  1113. }
  1114. ],
  1115. "description": "PSR-7 message implementation that also provides common utility methods",
  1116. "keywords": [
  1117. "http",
  1118. "message",
  1119. "request",
  1120. "response",
  1121. "stream",
  1122. "uri",
  1123. "url"
  1124. ],
  1125. "time": "2017-03-20 17:10:46"
  1126. },
  1127. {
  1128. "name": "myclabs/deep-copy",
  1129. "version": "1.7.0",
  1130. "source": {
  1131. "type": "git",
  1132. "url": "https://github.com/myclabs/DeepCopy.git",
  1133. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  1134. },
  1135. "dist": {
  1136. "type": "zip",
  1137. "url": "https://files.phpcomposer.com/files/myclabs/DeepCopy/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e.zip",
  1138. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  1139. "shasum": ""
  1140. },
  1141. "require": {
  1142. "php": "^5.6 || ^7.0"
  1143. },
  1144. "require-dev": {
  1145. "doctrine/collections": "^1.0",
  1146. "doctrine/common": "^2.6",
  1147. "phpunit/phpunit": "^4.1"
  1148. },
  1149. "type": "library",
  1150. "autoload": {
  1151. "psr-4": {
  1152. "DeepCopy\\": "src/DeepCopy/"
  1153. },
  1154. "files": [
  1155. "src/DeepCopy/deep_copy.php"
  1156. ]
  1157. },
  1158. "notification-url": "https://packagist.org/downloads/",
  1159. "license": [
  1160. "MIT"
  1161. ],
  1162. "description": "Create deep copies (clones) of your objects",
  1163. "keywords": [
  1164. "clone",
  1165. "copy",
  1166. "duplicate",
  1167. "object",
  1168. "object graph"
  1169. ],
  1170. "time": "2017-10-19 19:58:43"
  1171. },
  1172. {
  1173. "name": "phar-io/manifest",
  1174. "version": "1.0.1",
  1175. "source": {
  1176. "type": "git",
  1177. "url": "https://github.com/phar-io/manifest.git",
  1178. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  1179. },
  1180. "dist": {
  1181. "type": "zip",
  1182. "url": "https://files.phpcomposer.com/files/phar-io/manifest/2df402786ab5368a0169091f61a7c1e0eb6852d0.zip",
  1183. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  1184. "shasum": ""
  1185. },
  1186. "require": {
  1187. "ext-dom": "*",
  1188. "ext-phar": "*",
  1189. "phar-io/version": "^1.0.1",
  1190. "php": "^5.6 || ^7.0"
  1191. },
  1192. "type": "library",
  1193. "extra": {
  1194. "branch-alias": {
  1195. "dev-master": "1.0.x-dev"
  1196. }
  1197. },
  1198. "autoload": {
  1199. "classmap": [
  1200. "src/"
  1201. ]
  1202. },
  1203. "notification-url": "https://packagist.org/downloads/",
  1204. "license": [
  1205. "BSD-3-Clause"
  1206. ],
  1207. "authors": [
  1208. {
  1209. "name": "Arne Blankerts",
  1210. "email": "arne@blankerts.de",
  1211. "role": "Developer"
  1212. },
  1213. {
  1214. "name": "Sebastian Heuer",
  1215. "email": "sebastian@phpeople.de",
  1216. "role": "Developer"
  1217. },
  1218. {
  1219. "name": "Sebastian Bergmann",
  1220. "email": "sebastian@phpunit.de",
  1221. "role": "Developer"
  1222. }
  1223. ],
  1224. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  1225. "time": "2017-03-05 18:14:27"
  1226. },
  1227. {
  1228. "name": "phar-io/version",
  1229. "version": "1.0.1",
  1230. "source": {
  1231. "type": "git",
  1232. "url": "https://github.com/phar-io/version.git",
  1233. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  1234. },
  1235. "dist": {
  1236. "type": "zip",
  1237. "url": "https://files.phpcomposer.com/files/phar-io/version/a70c0ced4be299a63d32fa96d9281d03e94041df.zip",
  1238. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  1239. "shasum": ""
  1240. },
  1241. "require": {
  1242. "php": "^5.6 || ^7.0"
  1243. },
  1244. "type": "library",
  1245. "autoload": {
  1246. "classmap": [
  1247. "src/"
  1248. ]
  1249. },
  1250. "notification-url": "https://packagist.org/downloads/",
  1251. "license": [
  1252. "BSD-3-Clause"
  1253. ],
  1254. "authors": [
  1255. {
  1256. "name": "Arne Blankerts",
  1257. "email": "arne@blankerts.de",
  1258. "role": "Developer"
  1259. },
  1260. {
  1261. "name": "Sebastian Heuer",
  1262. "email": "sebastian@phpeople.de",
  1263. "role": "Developer"
  1264. },
  1265. {
  1266. "name": "Sebastian Bergmann",
  1267. "email": "sebastian@phpunit.de",
  1268. "role": "Developer"
  1269. }
  1270. ],
  1271. "description": "Library for handling version information and constraints",
  1272. "time": "2017-03-05 17:38:23"
  1273. },
  1274. {
  1275. "name": "phpdocumentor/reflection-common",
  1276. "version": "1.0.1",
  1277. "source": {
  1278. "type": "git",
  1279. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1280. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  1281. },
  1282. "dist": {
  1283. "type": "zip",
  1284. "url": "https://files.phpcomposer.com/files/phpDocumentor/ReflectionCommon/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6.zip",
  1285. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  1286. "shasum": ""
  1287. },
  1288. "require": {
  1289. "php": ">=5.5"
  1290. },
  1291. "require-dev": {
  1292. "phpunit/phpunit": "^4.6"
  1293. },
  1294. "type": "library",
  1295. "extra": {
  1296. "branch-alias": {
  1297. "dev-master": "1.0.x-dev"
  1298. }
  1299. },
  1300. "autoload": {
  1301. "psr-4": {
  1302. "phpDocumentor\\Reflection\\": [
  1303. "src"
  1304. ]
  1305. }
  1306. },
  1307. "notification-url": "https://packagist.org/downloads/",
  1308. "license": [
  1309. "MIT"
  1310. ],
  1311. "authors": [
  1312. {
  1313. "name": "Jaap van Otterdijk",
  1314. "email": "opensource@ijaap.nl"
  1315. }
  1316. ],
  1317. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1318. "homepage": "http://www.phpdoc.org",
  1319. "keywords": [
  1320. "FQSEN",
  1321. "phpDocumentor",
  1322. "phpdoc",
  1323. "reflection",
  1324. "static analysis"
  1325. ],
  1326. "time": "2017-09-11 18:02:19"
  1327. },
  1328. {
  1329. "name": "phpdocumentor/reflection-docblock",
  1330. "version": "4.2.0",
  1331. "source": {
  1332. "type": "git",
  1333. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1334. "reference": "66465776cfc249844bde6d117abff1d22e06c2da"
  1335. },
  1336. "dist": {
  1337. "type": "zip",
  1338. "url": "https://files.phpcomposer.com/files/phpDocumentor/ReflectionDocBlock/66465776cfc249844bde6d117abff1d22e06c2da.zip",
  1339. "reference": "66465776cfc249844bde6d117abff1d22e06c2da",
  1340. "shasum": ""
  1341. },
  1342. "require": {
  1343. "php": "^7.0",
  1344. "phpdocumentor/reflection-common": "^1.0.0",
  1345. "phpdocumentor/type-resolver": "^0.4.0",
  1346. "webmozart/assert": "^1.0"
  1347. },
  1348. "require-dev": {
  1349. "doctrine/instantiator": "~1.0.5",
  1350. "mockery/mockery": "^1.0",
  1351. "phpunit/phpunit": "^6.4"
  1352. },
  1353. "type": "library",
  1354. "extra": {
  1355. "branch-alias": {
  1356. "dev-master": "4.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. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1377. "time": "2017-11-27 17:38:31"
  1378. },
  1379. {
  1380. "name": "phpdocumentor/type-resolver",
  1381. "version": "0.4.0",
  1382. "source": {
  1383. "type": "git",
  1384. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1385. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  1386. },
  1387. "dist": {
  1388. "type": "zip",
  1389. "url": "https://files.phpcomposer.com/files/phpDocumentor/TypeResolver/9c977708995954784726e25d0cd1dddf4e65b0f7.zip",
  1390. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  1391. "shasum": ""
  1392. },
  1393. "require": {
  1394. "php": "^5.5 || ^7.0",
  1395. "phpdocumentor/reflection-common": "^1.0"
  1396. },
  1397. "require-dev": {
  1398. "mockery/mockery": "^0.9.4",
  1399. "phpunit/phpunit": "^5.2||^4.8.24"
  1400. },
  1401. "type": "library",
  1402. "extra": {
  1403. "branch-alias": {
  1404. "dev-master": "1.0.x-dev"
  1405. }
  1406. },
  1407. "autoload": {
  1408. "psr-4": {
  1409. "phpDocumentor\\Reflection\\": [
  1410. "src/"
  1411. ]
  1412. }
  1413. },
  1414. "notification-url": "https://packagist.org/downloads/",
  1415. "license": [
  1416. "MIT"
  1417. ],
  1418. "authors": [
  1419. {
  1420. "name": "Mike van Riel",
  1421. "email": "me@mikevanriel.com"
  1422. }
  1423. ],
  1424. "time": "2017-07-14 14:27:02"
  1425. },
  1426. {
  1427. "name": "phpspec/php-diff",
  1428. "version": "v1.1.0",
  1429. "source": {
  1430. "type": "git",
  1431. "url": "https://github.com/phpspec/php-diff.git",
  1432. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"
  1433. },
  1434. "dist": {
  1435. "type": "zip",
  1436. "url": "https://files.phpcomposer.com/files/phpspec/php-diff/0464787bfa7cd13576c5a1e318709768798bec6a.zip",
  1437. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",
  1438. "shasum": ""
  1439. },
  1440. "type": "library",
  1441. "extra": {
  1442. "branch-alias": {
  1443. "dev-master": "1.0.x-dev"
  1444. }
  1445. },
  1446. "autoload": {
  1447. "psr-0": {
  1448. "Diff": "lib/"
  1449. }
  1450. },
  1451. "notification-url": "https://packagist.org/downloads/",
  1452. "license": [
  1453. "BSD-3-Clause"
  1454. ],
  1455. "authors": [
  1456. {
  1457. "name": "Chris Boulton",
  1458. "homepage": "http://github.com/chrisboulton"
  1459. }
  1460. ],
  1461. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  1462. "time": "2016-04-07 12:29:16"
  1463. },
  1464. {
  1465. "name": "phpspec/prophecy",
  1466. "version": "1.7.3",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/phpspec/prophecy.git",
  1470. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://files.phpcomposer.com/files/phpspec/prophecy/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf.zip",
  1475. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "doctrine/instantiator": "^1.0.2",
  1480. "php": "^5.3|^7.0",
  1481. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  1482. "sebastian/comparator": "^1.1|^2.0",
  1483. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  1484. },
  1485. "require-dev": {
  1486. "phpspec/phpspec": "^2.5|^3.2",
  1487. "phpunit/phpunit": "^4.8.35 || ^5.7"
  1488. },
  1489. "type": "library",
  1490. "extra": {
  1491. "branch-alias": {
  1492. "dev-master": "1.7.x-dev"
  1493. }
  1494. },
  1495. "autoload": {
  1496. "psr-0": {
  1497. "Prophecy\\": "src/"
  1498. }
  1499. },
  1500. "notification-url": "https://packagist.org/downloads/",
  1501. "license": [
  1502. "MIT"
  1503. ],
  1504. "authors": [
  1505. {
  1506. "name": "Konstantin Kudryashov",
  1507. "email": "ever.zet@gmail.com",
  1508. "homepage": "http://everzet.com"
  1509. },
  1510. {
  1511. "name": "Marcello Duarte",
  1512. "email": "marcello.duarte@gmail.com"
  1513. }
  1514. ],
  1515. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1516. "homepage": "https://github.com/phpspec/prophecy",
  1517. "keywords": [
  1518. "Double",
  1519. "Dummy",
  1520. "fake",
  1521. "mock",
  1522. "spy",
  1523. "stub"
  1524. ],
  1525. "time": "2017-11-24 13:59:53"
  1526. },
  1527. {
  1528. "name": "phpunit/php-code-coverage",
  1529. "version": "5.3.0",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1533. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-code-coverage/661f34d0bd3f1a7225ef491a70a020ad23a057a1.zip",
  1538. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "ext-dom": "*",
  1543. "ext-xmlwriter": "*",
  1544. "php": "^7.0",
  1545. "phpunit/php-file-iterator": "^1.4.2",
  1546. "phpunit/php-text-template": "^1.2.1",
  1547. "phpunit/php-token-stream": "^2.0.1",
  1548. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  1549. "sebastian/environment": "^3.0",
  1550. "sebastian/version": "^2.0.1",
  1551. "theseer/tokenizer": "^1.1"
  1552. },
  1553. "require-dev": {
  1554. "phpunit/phpunit": "^6.0"
  1555. },
  1556. "suggest": {
  1557. "ext-xdebug": "^2.5.5"
  1558. },
  1559. "type": "library",
  1560. "extra": {
  1561. "branch-alias": {
  1562. "dev-master": "5.3.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": "sebastian@phpunit.de",
  1578. "role": "lead"
  1579. }
  1580. ],
  1581. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1582. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1583. "keywords": [
  1584. "coverage",
  1585. "testing",
  1586. "xunit"
  1587. ],
  1588. "time": "2017-12-06 09:29:45"
  1589. },
  1590. {
  1591. "name": "phpunit/php-file-iterator",
  1592. "version": "1.4.5",
  1593. "source": {
  1594. "type": "git",
  1595. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1596. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  1597. },
  1598. "dist": {
  1599. "type": "zip",
  1600. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-file-iterator/730b01bc3e867237eaac355e06a36b85dd93a8b4.zip",
  1601. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1602. "shasum": ""
  1603. },
  1604. "require": {
  1605. "php": ">=5.3.3"
  1606. },
  1607. "type": "library",
  1608. "extra": {
  1609. "branch-alias": {
  1610. "dev-master": "1.4.x-dev"
  1611. }
  1612. },
  1613. "autoload": {
  1614. "classmap": [
  1615. "src/"
  1616. ]
  1617. },
  1618. "notification-url": "https://packagist.org/downloads/",
  1619. "license": [
  1620. "BSD-3-Clause"
  1621. ],
  1622. "authors": [
  1623. {
  1624. "name": "Sebastian Bergmann",
  1625. "email": "sb@sebastian-bergmann.de",
  1626. "role": "lead"
  1627. }
  1628. ],
  1629. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1630. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1631. "keywords": [
  1632. "filesystem",
  1633. "iterator"
  1634. ],
  1635. "time": "2017-11-27 13:52:08"
  1636. },
  1637. {
  1638. "name": "phpunit/php-text-template",
  1639. "version": "1.2.1",
  1640. "source": {
  1641. "type": "git",
  1642. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1643. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1644. },
  1645. "dist": {
  1646. "type": "zip",
  1647. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-text-template/31f8b717e51d9a2afca6c9f046f5d69fc27c8686.zip",
  1648. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1649. "shasum": ""
  1650. },
  1651. "require": {
  1652. "php": ">=5.3.3"
  1653. },
  1654. "type": "library",
  1655. "autoload": {
  1656. "classmap": [
  1657. "src/"
  1658. ]
  1659. },
  1660. "notification-url": "https://packagist.org/downloads/",
  1661. "license": [
  1662. "BSD-3-Clause"
  1663. ],
  1664. "authors": [
  1665. {
  1666. "name": "Sebastian Bergmann",
  1667. "email": "sebastian@phpunit.de",
  1668. "role": "lead"
  1669. }
  1670. ],
  1671. "description": "Simple template engine.",
  1672. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1673. "keywords": [
  1674. "template"
  1675. ],
  1676. "time": "2015-06-21 13:50:34"
  1677. },
  1678. {
  1679. "name": "phpunit/php-timer",
  1680. "version": "1.0.9",
  1681. "source": {
  1682. "type": "git",
  1683. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1684. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1685. },
  1686. "dist": {
  1687. "type": "zip",
  1688. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-timer/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f.zip",
  1689. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1690. "shasum": ""
  1691. },
  1692. "require": {
  1693. "php": "^5.3.3 || ^7.0"
  1694. },
  1695. "require-dev": {
  1696. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1697. },
  1698. "type": "library",
  1699. "extra": {
  1700. "branch-alias": {
  1701. "dev-master": "1.0-dev"
  1702. }
  1703. },
  1704. "autoload": {
  1705. "classmap": [
  1706. "src/"
  1707. ]
  1708. },
  1709. "notification-url": "https://packagist.org/downloads/",
  1710. "license": [
  1711. "BSD-3-Clause"
  1712. ],
  1713. "authors": [
  1714. {
  1715. "name": "Sebastian Bergmann",
  1716. "email": "sb@sebastian-bergmann.de",
  1717. "role": "lead"
  1718. }
  1719. ],
  1720. "description": "Utility class for timing",
  1721. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1722. "keywords": [
  1723. "timer"
  1724. ],
  1725. "time": "2017-02-26 11:10:40"
  1726. },
  1727. {
  1728. "name": "phpunit/php-token-stream",
  1729. "version": "2.0.2",
  1730. "source": {
  1731. "type": "git",
  1732. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1733. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  1734. },
  1735. "dist": {
  1736. "type": "zip",
  1737. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-token-stream/791198a2c6254db10131eecfe8c06670700904db.zip",
  1738. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  1739. "shasum": ""
  1740. },
  1741. "require": {
  1742. "ext-tokenizer": "*",
  1743. "php": "^7.0"
  1744. },
  1745. "require-dev": {
  1746. "phpunit/phpunit": "^6.2.4"
  1747. },
  1748. "type": "library",
  1749. "extra": {
  1750. "branch-alias": {
  1751. "dev-master": "2.0-dev"
  1752. }
  1753. },
  1754. "autoload": {
  1755. "classmap": [
  1756. "src/"
  1757. ]
  1758. },
  1759. "notification-url": "https://packagist.org/downloads/",
  1760. "license": [
  1761. "BSD-3-Clause"
  1762. ],
  1763. "authors": [
  1764. {
  1765. "name": "Sebastian Bergmann",
  1766. "email": "sebastian@phpunit.de"
  1767. }
  1768. ],
  1769. "description": "Wrapper around PHP's tokenizer extension.",
  1770. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1771. "keywords": [
  1772. "tokenizer"
  1773. ],
  1774. "time": "2017-11-27 05:48:46"
  1775. },
  1776. {
  1777. "name": "phpunit/phpunit",
  1778. "version": "6.4.4",
  1779. "source": {
  1780. "type": "git",
  1781. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1782. "reference": "562f7dc75d46510a4ed5d16189ae57fbe45a9932"
  1783. },
  1784. "dist": {
  1785. "type": "zip",
  1786. "url": "https://files.phpcomposer.com/files/sebastianbergmann/phpunit/562f7dc75d46510a4ed5d16189ae57fbe45a9932.zip",
  1787. "reference": "562f7dc75d46510a4ed5d16189ae57fbe45a9932",
  1788. "shasum": ""
  1789. },
  1790. "require": {
  1791. "ext-dom": "*",
  1792. "ext-json": "*",
  1793. "ext-libxml": "*",
  1794. "ext-mbstring": "*",
  1795. "ext-xml": "*",
  1796. "myclabs/deep-copy": "^1.6.1",
  1797. "phar-io/manifest": "^1.0.1",
  1798. "phar-io/version": "^1.0",
  1799. "php": "^7.0",
  1800. "phpspec/prophecy": "^1.7",
  1801. "phpunit/php-code-coverage": "^5.2.2",
  1802. "phpunit/php-file-iterator": "^1.4.2",
  1803. "phpunit/php-text-template": "^1.2.1",
  1804. "phpunit/php-timer": "^1.0.9",
  1805. "phpunit/phpunit-mock-objects": "^4.0.3",
  1806. "sebastian/comparator": "^2.0.2",
  1807. "sebastian/diff": "^2.0",
  1808. "sebastian/environment": "^3.1",
  1809. "sebastian/exporter": "^3.1",
  1810. "sebastian/global-state": "^2.0",
  1811. "sebastian/object-enumerator": "^3.0.3",
  1812. "sebastian/resource-operations": "^1.0",
  1813. "sebastian/version": "^2.0.1"
  1814. },
  1815. "conflict": {
  1816. "phpdocumentor/reflection-docblock": "3.0.2",
  1817. "phpunit/dbunit": "<3.0"
  1818. },
  1819. "require-dev": {
  1820. "ext-pdo": "*"
  1821. },
  1822. "suggest": {
  1823. "ext-xdebug": "*",
  1824. "phpunit/php-invoker": "^1.1"
  1825. },
  1826. "bin": [
  1827. "phpunit"
  1828. ],
  1829. "type": "library",
  1830. "extra": {
  1831. "branch-alias": {
  1832. "dev-master": "6.4.x-dev"
  1833. }
  1834. },
  1835. "autoload": {
  1836. "classmap": [
  1837. "src/"
  1838. ]
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "BSD-3-Clause"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Sebastian Bergmann",
  1847. "email": "sebastian@phpunit.de",
  1848. "role": "lead"
  1849. }
  1850. ],
  1851. "description": "The PHP Unit Testing framework.",
  1852. "homepage": "https://phpunit.de/",
  1853. "keywords": [
  1854. "phpunit",
  1855. "testing",
  1856. "xunit"
  1857. ],
  1858. "time": "2017-11-08 11:26:09"
  1859. },
  1860. {
  1861. "name": "phpunit/phpunit-mock-objects",
  1862. "version": "4.0.4",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1866. "reference": "2f789b59ab89669015ad984afa350c4ec577ade0"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://files.phpcomposer.com/files/sebastianbergmann/phpunit-mock-objects/2f789b59ab89669015ad984afa350c4ec577ade0.zip",
  1871. "reference": "2f789b59ab89669015ad984afa350c4ec577ade0",
  1872. "shasum": ""
  1873. },
  1874. "require": {
  1875. "doctrine/instantiator": "^1.0.5",
  1876. "php": "^7.0",
  1877. "phpunit/php-text-template": "^1.2.1",
  1878. "sebastian/exporter": "^3.0"
  1879. },
  1880. "conflict": {
  1881. "phpunit/phpunit": "<6.0"
  1882. },
  1883. "require-dev": {
  1884. "phpunit/phpunit": "^6.0"
  1885. },
  1886. "suggest": {
  1887. "ext-soap": "*"
  1888. },
  1889. "type": "library",
  1890. "extra": {
  1891. "branch-alias": {
  1892. "dev-master": "4.0.x-dev"
  1893. }
  1894. },
  1895. "autoload": {
  1896. "classmap": [
  1897. "src/"
  1898. ]
  1899. },
  1900. "notification-url": "https://packagist.org/downloads/",
  1901. "license": [
  1902. "BSD-3-Clause"
  1903. ],
  1904. "authors": [
  1905. {
  1906. "name": "Sebastian Bergmann",
  1907. "email": "sb@sebastian-bergmann.de",
  1908. "role": "lead"
  1909. }
  1910. ],
  1911. "description": "Mock Object library for PHPUnit",
  1912. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1913. "keywords": [
  1914. "mock",
  1915. "xunit"
  1916. ],
  1917. "time": "2017-08-03 14:08:16"
  1918. },
  1919. {
  1920. "name": "psr/http-message",
  1921. "version": "1.0.1",
  1922. "source": {
  1923. "type": "git",
  1924. "url": "https://github.com/php-fig/http-message.git",
  1925. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1926. },
  1927. "dist": {
  1928. "type": "zip",
  1929. "url": "https://files.phpcomposer.com/files/php-fig/http-message/f6561bf28d520154e4b0ec72be95418abe6d9363.zip",
  1930. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1931. "shasum": ""
  1932. },
  1933. "require": {
  1934. "php": ">=5.3.0"
  1935. },
  1936. "type": "library",
  1937. "extra": {
  1938. "branch-alias": {
  1939. "dev-master": "1.0.x-dev"
  1940. }
  1941. },
  1942. "autoload": {
  1943. "psr-4": {
  1944. "Psr\\Http\\Message\\": "src/"
  1945. }
  1946. },
  1947. "notification-url": "https://packagist.org/downloads/",
  1948. "license": [
  1949. "MIT"
  1950. ],
  1951. "authors": [
  1952. {
  1953. "name": "PHP-FIG",
  1954. "homepage": "http://www.php-fig.org/"
  1955. }
  1956. ],
  1957. "description": "Common interface for HTTP messages",
  1958. "homepage": "https://github.com/php-fig/http-message",
  1959. "keywords": [
  1960. "http",
  1961. "http-message",
  1962. "psr",
  1963. "psr-7",
  1964. "request",
  1965. "response"
  1966. ],
  1967. "time": "2016-08-06 14:39:51"
  1968. },
  1969. {
  1970. "name": "psr/log",
  1971. "version": "1.0.2",
  1972. "source": {
  1973. "type": "git",
  1974. "url": "https://github.com/php-fig/log.git",
  1975. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1976. },
  1977. "dist": {
  1978. "type": "zip",
  1979. "url": "https://files.phpcomposer.com/files/php-fig/log/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d.zip",
  1980. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1981. "shasum": ""
  1982. },
  1983. "require": {
  1984. "php": ">=5.3.0"
  1985. },
  1986. "type": "library",
  1987. "extra": {
  1988. "branch-alias": {
  1989. "dev-master": "1.0.x-dev"
  1990. }
  1991. },
  1992. "autoload": {
  1993. "psr-4": {
  1994. "Psr\\Log\\": "Psr/Log/"
  1995. }
  1996. },
  1997. "notification-url": "https://packagist.org/downloads/",
  1998. "license": [
  1999. "MIT"
  2000. ],
  2001. "authors": [
  2002. {
  2003. "name": "PHP-FIG",
  2004. "homepage": "http://www.php-fig.org/"
  2005. }
  2006. ],
  2007. "description": "Common interface for logging libraries",
  2008. "homepage": "https://github.com/php-fig/log",
  2009. "keywords": [
  2010. "log",
  2011. "psr",
  2012. "psr-3"
  2013. ],
  2014. "time": "2016-10-10 12:19:37"
  2015. },
  2016. {
  2017. "name": "sebastian/code-unit-reverse-lookup",
  2018. "version": "1.0.1",
  2019. "source": {
  2020. "type": "git",
  2021. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  2022. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  2023. },
  2024. "dist": {
  2025. "type": "zip",
  2026. "url": "https://files.phpcomposer.com/files/sebastianbergmann/code-unit-reverse-lookup/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18.zip",
  2027. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  2028. "shasum": ""
  2029. },
  2030. "require": {
  2031. "php": "^5.6 || ^7.0"
  2032. },
  2033. "require-dev": {
  2034. "phpunit/phpunit": "^5.7 || ^6.0"
  2035. },
  2036. "type": "library",
  2037. "extra": {
  2038. "branch-alias": {
  2039. "dev-master": "1.0.x-dev"
  2040. }
  2041. },
  2042. "autoload": {
  2043. "classmap": [
  2044. "src/"
  2045. ]
  2046. },
  2047. "notification-url": "https://packagist.org/downloads/",
  2048. "license": [
  2049. "BSD-3-Clause"
  2050. ],
  2051. "authors": [
  2052. {
  2053. "name": "Sebastian Bergmann",
  2054. "email": "sebastian@phpunit.de"
  2055. }
  2056. ],
  2057. "description": "Looks up which function or method a line of code belongs to",
  2058. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  2059. "time": "2017-03-04 06:30:41"
  2060. },
  2061. {
  2062. "name": "sebastian/comparator",
  2063. "version": "2.1.2",
  2064. "source": {
  2065. "type": "git",
  2066. "url": "https://github.com/sebastianbergmann/comparator.git",
  2067. "reference": "11c07feade1d65453e06df3b3b90171d6d982087"
  2068. },
  2069. "dist": {
  2070. "type": "zip",
  2071. "url": "https://files.phpcomposer.com/files/sebastianbergmann/comparator/11c07feade1d65453e06df3b3b90171d6d982087.zip",
  2072. "reference": "11c07feade1d65453e06df3b3b90171d6d982087",
  2073. "shasum": ""
  2074. },
  2075. "require": {
  2076. "php": "^7.0",
  2077. "sebastian/diff": "^2.0",
  2078. "sebastian/exporter": "^3.1"
  2079. },
  2080. "require-dev": {
  2081. "phpunit/phpunit": "^6.4"
  2082. },
  2083. "type": "library",
  2084. "extra": {
  2085. "branch-alias": {
  2086. "dev-master": "2.1.x-dev"
  2087. }
  2088. },
  2089. "autoload": {
  2090. "classmap": [
  2091. "src/"
  2092. ]
  2093. },
  2094. "notification-url": "https://packagist.org/downloads/",
  2095. "license": [
  2096. "BSD-3-Clause"
  2097. ],
  2098. "authors": [
  2099. {
  2100. "name": "Jeff Welch",
  2101. "email": "whatthejeff@gmail.com"
  2102. },
  2103. {
  2104. "name": "Volker Dusch",
  2105. "email": "github@wallbash.com"
  2106. },
  2107. {
  2108. "name": "Bernhard Schussek",
  2109. "email": "bschussek@2bepublished.at"
  2110. },
  2111. {
  2112. "name": "Sebastian Bergmann",
  2113. "email": "sebastian@phpunit.de"
  2114. }
  2115. ],
  2116. "description": "Provides the functionality to compare PHP values for equality",
  2117. "homepage": "https://github.com/sebastianbergmann/comparator",
  2118. "keywords": [
  2119. "comparator",
  2120. "compare",
  2121. "equality"
  2122. ],
  2123. "time": "2018-01-12 06:34:42"
  2124. },
  2125. {
  2126. "name": "sebastian/diff",
  2127. "version": "2.0.1",
  2128. "source": {
  2129. "type": "git",
  2130. "url": "https://github.com/sebastianbergmann/diff.git",
  2131. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  2132. },
  2133. "dist": {
  2134. "type": "zip",
  2135. "url": "https://files.phpcomposer.com/files/sebastianbergmann/diff/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd.zip",
  2136. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  2137. "shasum": ""
  2138. },
  2139. "require": {
  2140. "php": "^7.0"
  2141. },
  2142. "require-dev": {
  2143. "phpunit/phpunit": "^6.2"
  2144. },
  2145. "type": "library",
  2146. "extra": {
  2147. "branch-alias": {
  2148. "dev-master": "2.0-dev"
  2149. }
  2150. },
  2151. "autoload": {
  2152. "classmap": [
  2153. "src/"
  2154. ]
  2155. },
  2156. "notification-url": "https://packagist.org/downloads/",
  2157. "license": [
  2158. "BSD-3-Clause"
  2159. ],
  2160. "authors": [
  2161. {
  2162. "name": "Kore Nordmann",
  2163. "email": "mail@kore-nordmann.de"
  2164. },
  2165. {
  2166. "name": "Sebastian Bergmann",
  2167. "email": "sebastian@phpunit.de"
  2168. }
  2169. ],
  2170. "description": "Diff implementation",
  2171. "homepage": "https://github.com/sebastianbergmann/diff",
  2172. "keywords": [
  2173. "diff"
  2174. ],
  2175. "time": "2017-08-03 08:09:46"
  2176. },
  2177. {
  2178. "name": "sebastian/environment",
  2179. "version": "3.1.0",
  2180. "source": {
  2181. "type": "git",
  2182. "url": "https://github.com/sebastianbergmann/environment.git",
  2183. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  2184. },
  2185. "dist": {
  2186. "type": "zip",
  2187. "url": "https://files.phpcomposer.com/files/sebastianbergmann/environment/cd0871b3975fb7fc44d11314fd1ee20925fce4f5.zip",
  2188. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  2189. "shasum": ""
  2190. },
  2191. "require": {
  2192. "php": "^7.0"
  2193. },
  2194. "require-dev": {
  2195. "phpunit/phpunit": "^6.1"
  2196. },
  2197. "type": "library",
  2198. "extra": {
  2199. "branch-alias": {
  2200. "dev-master": "3.1.x-dev"
  2201. }
  2202. },
  2203. "autoload": {
  2204. "classmap": [
  2205. "src/"
  2206. ]
  2207. },
  2208. "notification-url": "https://packagist.org/downloads/",
  2209. "license": [
  2210. "BSD-3-Clause"
  2211. ],
  2212. "authors": [
  2213. {
  2214. "name": "Sebastian Bergmann",
  2215. "email": "sebastian@phpunit.de"
  2216. }
  2217. ],
  2218. "description": "Provides functionality to handle HHVM/PHP environments",
  2219. "homepage": "http://www.github.com/sebastianbergmann/environment",
  2220. "keywords": [
  2221. "Xdebug",
  2222. "environment",
  2223. "hhvm"
  2224. ],
  2225. "time": "2017-07-01 08:51:00"
  2226. },
  2227. {
  2228. "name": "sebastian/exporter",
  2229. "version": "3.1.0",
  2230. "source": {
  2231. "type": "git",
  2232. "url": "https://github.com/sebastianbergmann/exporter.git",
  2233. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  2234. },
  2235. "dist": {
  2236. "type": "zip",
  2237. "url": "https://files.phpcomposer.com/files/sebastianbergmann/exporter/234199f4528de6d12aaa58b612e98f7d36adb937.zip",
  2238. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  2239. "shasum": ""
  2240. },
  2241. "require": {
  2242. "php": "^7.0",
  2243. "sebastian/recursion-context": "^3.0"
  2244. },
  2245. "require-dev": {
  2246. "ext-mbstring": "*",
  2247. "phpunit/phpunit": "^6.0"
  2248. },
  2249. "type": "library",
  2250. "extra": {
  2251. "branch-alias": {
  2252. "dev-master": "3.1.x-dev"
  2253. }
  2254. },
  2255. "autoload": {
  2256. "classmap": [
  2257. "src/"
  2258. ]
  2259. },
  2260. "notification-url": "https://packagist.org/downloads/",
  2261. "license": [
  2262. "BSD-3-Clause"
  2263. ],
  2264. "authors": [
  2265. {
  2266. "name": "Jeff Welch",
  2267. "email": "whatthejeff@gmail.com"
  2268. },
  2269. {
  2270. "name": "Volker Dusch",
  2271. "email": "github@wallbash.com"
  2272. },
  2273. {
  2274. "name": "Bernhard Schussek",
  2275. "email": "bschussek@2bepublished.at"
  2276. },
  2277. {
  2278. "name": "Sebastian Bergmann",
  2279. "email": "sebastian@phpunit.de"
  2280. },
  2281. {
  2282. "name": "Adam Harvey",
  2283. "email": "aharvey@php.net"
  2284. }
  2285. ],
  2286. "description": "Provides the functionality to export PHP variables for visualization",
  2287. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  2288. "keywords": [
  2289. "export",
  2290. "exporter"
  2291. ],
  2292. "time": "2017-04-03 13:19:02"
  2293. },
  2294. {
  2295. "name": "sebastian/global-state",
  2296. "version": "2.0.0",
  2297. "source": {
  2298. "type": "git",
  2299. "url": "https://github.com/sebastianbergmann/global-state.git",
  2300. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  2301. },
  2302. "dist": {
  2303. "type": "zip",
  2304. "url": "https://files.phpcomposer.com/files/sebastianbergmann/global-state/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4.zip",
  2305. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  2306. "shasum": ""
  2307. },
  2308. "require": {
  2309. "php": "^7.0"
  2310. },
  2311. "require-dev": {
  2312. "phpunit/phpunit": "^6.0"
  2313. },
  2314. "suggest": {
  2315. "ext-uopz": "*"
  2316. },
  2317. "type": "library",
  2318. "extra": {
  2319. "branch-alias": {
  2320. "dev-master": "2.0-dev"
  2321. }
  2322. },
  2323. "autoload": {
  2324. "classmap": [
  2325. "src/"
  2326. ]
  2327. },
  2328. "notification-url": "https://packagist.org/downloads/",
  2329. "license": [
  2330. "BSD-3-Clause"
  2331. ],
  2332. "authors": [
  2333. {
  2334. "name": "Sebastian Bergmann",
  2335. "email": "sebastian@phpunit.de"
  2336. }
  2337. ],
  2338. "description": "Snapshotting of global state",
  2339. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2340. "keywords": [
  2341. "global state"
  2342. ],
  2343. "time": "2017-04-27 15:39:26"
  2344. },
  2345. {
  2346. "name": "sebastian/object-enumerator",
  2347. "version": "3.0.3",
  2348. "source": {
  2349. "type": "git",
  2350. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2351. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  2352. },
  2353. "dist": {
  2354. "type": "zip",
  2355. "url": "https://files.phpcomposer.com/files/sebastianbergmann/object-enumerator/7cfd9e65d11ffb5af41198476395774d4c8a84c5.zip",
  2356. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  2357. "shasum": ""
  2358. },
  2359. "require": {
  2360. "php": "^7.0",
  2361. "sebastian/object-reflector": "^1.1.1",
  2362. "sebastian/recursion-context": "^3.0"
  2363. },
  2364. "require-dev": {
  2365. "phpunit/phpunit": "^6.0"
  2366. },
  2367. "type": "library",
  2368. "extra": {
  2369. "branch-alias": {
  2370. "dev-master": "3.0.x-dev"
  2371. }
  2372. },
  2373. "autoload": {
  2374. "classmap": [
  2375. "src/"
  2376. ]
  2377. },
  2378. "notification-url": "https://packagist.org/downloads/",
  2379. "license": [
  2380. "BSD-3-Clause"
  2381. ],
  2382. "authors": [
  2383. {
  2384. "name": "Sebastian Bergmann",
  2385. "email": "sebastian@phpunit.de"
  2386. }
  2387. ],
  2388. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2389. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  2390. "time": "2017-08-03 12:35:26"
  2391. },
  2392. {
  2393. "name": "sebastian/object-reflector",
  2394. "version": "1.1.1",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  2398. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://files.phpcomposer.com/files/sebastianbergmann/object-reflector/773f97c67f28de00d397be301821b06708fca0be.zip",
  2403. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  2404. "shasum": ""
  2405. },
  2406. "require": {
  2407. "php": "^7.0"
  2408. },
  2409. "require-dev": {
  2410. "phpunit/phpunit": "^6.0"
  2411. },
  2412. "type": "library",
  2413. "extra": {
  2414. "branch-alias": {
  2415. "dev-master": "1.1-dev"
  2416. }
  2417. },
  2418. "autoload": {
  2419. "classmap": [
  2420. "src/"
  2421. ]
  2422. },
  2423. "notification-url": "https://packagist.org/downloads/",
  2424. "license": [
  2425. "BSD-3-Clause"
  2426. ],
  2427. "authors": [
  2428. {
  2429. "name": "Sebastian Bergmann",
  2430. "email": "sebastian@phpunit.de"
  2431. }
  2432. ],
  2433. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2434. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2435. "time": "2017-03-29 09:07:27"
  2436. },
  2437. {
  2438. "name": "sebastian/recursion-context",
  2439. "version": "3.0.0",
  2440. "source": {
  2441. "type": "git",
  2442. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2443. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  2444. },
  2445. "dist": {
  2446. "type": "zip",
  2447. "url": "https://files.phpcomposer.com/files/sebastianbergmann/recursion-context/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8.zip",
  2448. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  2449. "shasum": ""
  2450. },
  2451. "require": {
  2452. "php": "^7.0"
  2453. },
  2454. "require-dev": {
  2455. "phpunit/phpunit": "^6.0"
  2456. },
  2457. "type": "library",
  2458. "extra": {
  2459. "branch-alias": {
  2460. "dev-master": "3.0.x-dev"
  2461. }
  2462. },
  2463. "autoload": {
  2464. "classmap": [
  2465. "src/"
  2466. ]
  2467. },
  2468. "notification-url": "https://packagist.org/downloads/",
  2469. "license": [
  2470. "BSD-3-Clause"
  2471. ],
  2472. "authors": [
  2473. {
  2474. "name": "Jeff Welch",
  2475. "email": "whatthejeff@gmail.com"
  2476. },
  2477. {
  2478. "name": "Sebastian Bergmann",
  2479. "email": "sebastian@phpunit.de"
  2480. },
  2481. {
  2482. "name": "Adam Harvey",
  2483. "email": "aharvey@php.net"
  2484. }
  2485. ],
  2486. "description": "Provides functionality to recursively process PHP variables",
  2487. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2488. "time": "2017-03-03 06:23:57"
  2489. },
  2490. {
  2491. "name": "sebastian/resource-operations",
  2492. "version": "1.0.0",
  2493. "source": {
  2494. "type": "git",
  2495. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2496. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  2497. },
  2498. "dist": {
  2499. "type": "zip",
  2500. "url": "https://files.phpcomposer.com/files/sebastianbergmann/resource-operations/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52.zip",
  2501. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2502. "shasum": ""
  2503. },
  2504. "require": {
  2505. "php": ">=5.6.0"
  2506. },
  2507. "type": "library",
  2508. "extra": {
  2509. "branch-alias": {
  2510. "dev-master": "1.0.x-dev"
  2511. }
  2512. },
  2513. "autoload": {
  2514. "classmap": [
  2515. "src/"
  2516. ]
  2517. },
  2518. "notification-url": "https://packagist.org/downloads/",
  2519. "license": [
  2520. "BSD-3-Clause"
  2521. ],
  2522. "authors": [
  2523. {
  2524. "name": "Sebastian Bergmann",
  2525. "email": "sebastian@phpunit.de"
  2526. }
  2527. ],
  2528. "description": "Provides a list of PHP built-in functions that operate on resources",
  2529. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2530. "time": "2015-07-28 20:34:47"
  2531. },
  2532. {
  2533. "name": "sebastian/version",
  2534. "version": "2.0.1",
  2535. "source": {
  2536. "type": "git",
  2537. "url": "https://github.com/sebastianbergmann/version.git",
  2538. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  2539. },
  2540. "dist": {
  2541. "type": "zip",
  2542. "url": "https://files.phpcomposer.com/files/sebastianbergmann/version/99732be0ddb3361e16ad77b68ba41efc8e979019.zip",
  2543. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  2544. "shasum": ""
  2545. },
  2546. "require": {
  2547. "php": ">=5.6"
  2548. },
  2549. "type": "library",
  2550. "extra": {
  2551. "branch-alias": {
  2552. "dev-master": "2.0.x-dev"
  2553. }
  2554. },
  2555. "autoload": {
  2556. "classmap": [
  2557. "src/"
  2558. ]
  2559. },
  2560. "notification-url": "https://packagist.org/downloads/",
  2561. "license": [
  2562. "BSD-3-Clause"
  2563. ],
  2564. "authors": [
  2565. {
  2566. "name": "Sebastian Bergmann",
  2567. "email": "sebastian@phpunit.de",
  2568. "role": "lead"
  2569. }
  2570. ],
  2571. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2572. "homepage": "https://github.com/sebastianbergmann/version",
  2573. "time": "2016-10-03 07:35:21"
  2574. },
  2575. {
  2576. "name": "symfony/browser-kit",
  2577. "version": "v3.4.3",
  2578. "source": {
  2579. "type": "git",
  2580. "url": "https://github.com/symfony/browser-kit.git",
  2581. "reference": "490f27762705c8489bd042fe3e9377a191dba9b4"
  2582. },
  2583. "dist": {
  2584. "type": "zip",
  2585. "url": "https://files.phpcomposer.com/files/symfony/browser-kit/490f27762705c8489bd042fe3e9377a191dba9b4.zip",
  2586. "reference": "490f27762705c8489bd042fe3e9377a191dba9b4",
  2587. "shasum": ""
  2588. },
  2589. "require": {
  2590. "php": "^5.5.9|>=7.0.8",
  2591. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  2592. },
  2593. "require-dev": {
  2594. "symfony/css-selector": "~2.8|~3.0|~4.0",
  2595. "symfony/process": "~2.8|~3.0|~4.0"
  2596. },
  2597. "suggest": {
  2598. "symfony/process": ""
  2599. },
  2600. "type": "library",
  2601. "extra": {
  2602. "branch-alias": {
  2603. "dev-master": "3.4-dev"
  2604. }
  2605. },
  2606. "autoload": {
  2607. "psr-4": {
  2608. "Symfony\\Component\\BrowserKit\\": ""
  2609. },
  2610. "exclude-from-classmap": [
  2611. "/Tests/"
  2612. ]
  2613. },
  2614. "notification-url": "https://packagist.org/downloads/",
  2615. "license": [
  2616. "MIT"
  2617. ],
  2618. "authors": [
  2619. {
  2620. "name": "Fabien Potencier",
  2621. "email": "fabien@symfony.com"
  2622. },
  2623. {
  2624. "name": "Symfony Community",
  2625. "homepage": "https://symfony.com/contributors"
  2626. }
  2627. ],
  2628. "description": "Symfony BrowserKit Component",
  2629. "homepage": "https://symfony.com",
  2630. "time": "2018-01-03 07:37:34"
  2631. },
  2632. {
  2633. "name": "symfony/console",
  2634. "version": "v3.4.3",
  2635. "source": {
  2636. "type": "git",
  2637. "url": "https://github.com/symfony/console.git",
  2638. "reference": "8394c8ef121949e8f858f13bc1e34f05169e4e7d"
  2639. },
  2640. "dist": {
  2641. "type": "zip",
  2642. "url": "https://files.phpcomposer.com/files/symfony/console/8394c8ef121949e8f858f13bc1e34f05169e4e7d.zip",
  2643. "reference": "8394c8ef121949e8f858f13bc1e34f05169e4e7d",
  2644. "shasum": ""
  2645. },
  2646. "require": {
  2647. "php": "^5.5.9|>=7.0.8",
  2648. "symfony/debug": "~2.8|~3.0|~4.0",
  2649. "symfony/polyfill-mbstring": "~1.0"
  2650. },
  2651. "conflict": {
  2652. "symfony/dependency-injection": "<3.4",
  2653. "symfony/process": "<3.3"
  2654. },
  2655. "require-dev": {
  2656. "psr/log": "~1.0",
  2657. "symfony/config": "~3.3|~4.0",
  2658. "symfony/dependency-injection": "~3.4|~4.0",
  2659. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  2660. "symfony/lock": "~3.4|~4.0",
  2661. "symfony/process": "~3.3|~4.0"
  2662. },
  2663. "suggest": {
  2664. "psr/log": "For using the console logger",
  2665. "symfony/event-dispatcher": "",
  2666. "symfony/lock": "",
  2667. "symfony/process": ""
  2668. },
  2669. "type": "library",
  2670. "extra": {
  2671. "branch-alias": {
  2672. "dev-master": "3.4-dev"
  2673. }
  2674. },
  2675. "autoload": {
  2676. "psr-4": {
  2677. "Symfony\\Component\\Console\\": ""
  2678. },
  2679. "exclude-from-classmap": [
  2680. "/Tests/"
  2681. ]
  2682. },
  2683. "notification-url": "https://packagist.org/downloads/",
  2684. "license": [
  2685. "MIT"
  2686. ],
  2687. "authors": [
  2688. {
  2689. "name": "Fabien Potencier",
  2690. "email": "fabien@symfony.com"
  2691. },
  2692. {
  2693. "name": "Symfony Community",
  2694. "homepage": "https://symfony.com/contributors"
  2695. }
  2696. ],
  2697. "description": "Symfony Console Component",
  2698. "homepage": "https://symfony.com",
  2699. "time": "2018-01-03 07:37:34"
  2700. },
  2701. {
  2702. "name": "symfony/css-selector",
  2703. "version": "v3.4.3",
  2704. "source": {
  2705. "type": "git",
  2706. "url": "https://github.com/symfony/css-selector.git",
  2707. "reference": "e66394bc7610e69279bfdb3ab11b4fe65403f556"
  2708. },
  2709. "dist": {
  2710. "type": "zip",
  2711. "url": "https://files.phpcomposer.com/files/symfony/css-selector/e66394bc7610e69279bfdb3ab11b4fe65403f556.zip",
  2712. "reference": "e66394bc7610e69279bfdb3ab11b4fe65403f556",
  2713. "shasum": ""
  2714. },
  2715. "require": {
  2716. "php": "^5.5.9|>=7.0.8"
  2717. },
  2718. "type": "library",
  2719. "extra": {
  2720. "branch-alias": {
  2721. "dev-master": "3.4-dev"
  2722. }
  2723. },
  2724. "autoload": {
  2725. "psr-4": {
  2726. "Symfony\\Component\\CssSelector\\": ""
  2727. },
  2728. "exclude-from-classmap": [
  2729. "/Tests/"
  2730. ]
  2731. },
  2732. "notification-url": "https://packagist.org/downloads/",
  2733. "license": [
  2734. "MIT"
  2735. ],
  2736. "authors": [
  2737. {
  2738. "name": "Jean-François Simon",
  2739. "email": "jeanfrancois.simon@sensiolabs.com"
  2740. },
  2741. {
  2742. "name": "Fabien Potencier",
  2743. "email": "fabien@symfony.com"
  2744. },
  2745. {
  2746. "name": "Symfony Community",
  2747. "homepage": "https://symfony.com/contributors"
  2748. }
  2749. ],
  2750. "description": "Symfony CssSelector Component",
  2751. "homepage": "https://symfony.com",
  2752. "time": "2018-01-03 07:37:34"
  2753. },
  2754. {
  2755. "name": "symfony/debug",
  2756. "version": "v3.4.3",
  2757. "source": {
  2758. "type": "git",
  2759. "url": "https://github.com/symfony/debug.git",
  2760. "reference": "603b95dda8b00020e4e6e60dc906e7b715b1c245"
  2761. },
  2762. "dist": {
  2763. "type": "zip",
  2764. "url": "https://files.phpcomposer.com/files/symfony/debug/603b95dda8b00020e4e6e60dc906e7b715b1c245.zip",
  2765. "reference": "603b95dda8b00020e4e6e60dc906e7b715b1c245",
  2766. "shasum": ""
  2767. },
  2768. "require": {
  2769. "php": "^5.5.9|>=7.0.8",
  2770. "psr/log": "~1.0"
  2771. },
  2772. "conflict": {
  2773. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2774. },
  2775. "require-dev": {
  2776. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  2777. },
  2778. "type": "library",
  2779. "extra": {
  2780. "branch-alias": {
  2781. "dev-master": "3.4-dev"
  2782. }
  2783. },
  2784. "autoload": {
  2785. "psr-4": {
  2786. "Symfony\\Component\\Debug\\": ""
  2787. },
  2788. "exclude-from-classmap": [
  2789. "/Tests/"
  2790. ]
  2791. },
  2792. "notification-url": "https://packagist.org/downloads/",
  2793. "license": [
  2794. "MIT"
  2795. ],
  2796. "authors": [
  2797. {
  2798. "name": "Fabien Potencier",
  2799. "email": "fabien@symfony.com"
  2800. },
  2801. {
  2802. "name": "Symfony Community",
  2803. "homepage": "https://symfony.com/contributors"
  2804. }
  2805. ],
  2806. "description": "Symfony Debug Component",
  2807. "homepage": "https://symfony.com",
  2808. "time": "2018-01-03 17:14:19"
  2809. },
  2810. {
  2811. "name": "symfony/dom-crawler",
  2812. "version": "v3.4.3",
  2813. "source": {
  2814. "type": "git",
  2815. "url": "https://github.com/symfony/dom-crawler.git",
  2816. "reference": "09bd97b844b3151fab82f2fdd62db9c464b3910a"
  2817. },
  2818. "dist": {
  2819. "type": "zip",
  2820. "url": "https://files.phpcomposer.com/files/symfony/dom-crawler/09bd97b844b3151fab82f2fdd62db9c464b3910a.zip",
  2821. "reference": "09bd97b844b3151fab82f2fdd62db9c464b3910a",
  2822. "shasum": ""
  2823. },
  2824. "require": {
  2825. "php": "^5.5.9|>=7.0.8",
  2826. "symfony/polyfill-mbstring": "~1.0"
  2827. },
  2828. "require-dev": {
  2829. "symfony/css-selector": "~2.8|~3.0|~4.0"
  2830. },
  2831. "suggest": {
  2832. "symfony/css-selector": ""
  2833. },
  2834. "type": "library",
  2835. "extra": {
  2836. "branch-alias": {
  2837. "dev-master": "3.4-dev"
  2838. }
  2839. },
  2840. "autoload": {
  2841. "psr-4": {
  2842. "Symfony\\Component\\DomCrawler\\": ""
  2843. },
  2844. "exclude-from-classmap": [
  2845. "/Tests/"
  2846. ]
  2847. },
  2848. "notification-url": "https://packagist.org/downloads/",
  2849. "license": [
  2850. "MIT"
  2851. ],
  2852. "authors": [
  2853. {
  2854. "name": "Fabien Potencier",
  2855. "email": "fabien@symfony.com"
  2856. },
  2857. {
  2858. "name": "Symfony Community",
  2859. "homepage": "https://symfony.com/contributors"
  2860. }
  2861. ],
  2862. "description": "Symfony DomCrawler Component",
  2863. "homepage": "https://symfony.com",
  2864. "time": "2018-01-03 07:37:34"
  2865. },
  2866. {
  2867. "name": "symfony/event-dispatcher",
  2868. "version": "v3.4.3",
  2869. "source": {
  2870. "type": "git",
  2871. "url": "https://github.com/symfony/event-dispatcher.git",
  2872. "reference": "26b87b6bca8f8f797331a30b76fdae5342dc26ca"
  2873. },
  2874. "dist": {
  2875. "type": "zip",
  2876. "url": "https://files.phpcomposer.com/files/symfony/event-dispatcher/26b87b6bca8f8f797331a30b76fdae5342dc26ca.zip",
  2877. "reference": "26b87b6bca8f8f797331a30b76fdae5342dc26ca",
  2878. "shasum": ""
  2879. },
  2880. "require": {
  2881. "php": "^5.5.9|>=7.0.8"
  2882. },
  2883. "conflict": {
  2884. "symfony/dependency-injection": "<3.3"
  2885. },
  2886. "require-dev": {
  2887. "psr/log": "~1.0",
  2888. "symfony/config": "~2.8|~3.0|~4.0",
  2889. "symfony/dependency-injection": "~3.3|~4.0",
  2890. "symfony/expression-language": "~2.8|~3.0|~4.0",
  2891. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  2892. },
  2893. "suggest": {
  2894. "symfony/dependency-injection": "",
  2895. "symfony/http-kernel": ""
  2896. },
  2897. "type": "library",
  2898. "extra": {
  2899. "branch-alias": {
  2900. "dev-master": "3.4-dev"
  2901. }
  2902. },
  2903. "autoload": {
  2904. "psr-4": {
  2905. "Symfony\\Component\\EventDispatcher\\": ""
  2906. },
  2907. "exclude-from-classmap": [
  2908. "/Tests/"
  2909. ]
  2910. },
  2911. "notification-url": "https://packagist.org/downloads/",
  2912. "license": [
  2913. "MIT"
  2914. ],
  2915. "authors": [
  2916. {
  2917. "name": "Fabien Potencier",
  2918. "email": "fabien@symfony.com"
  2919. },
  2920. {
  2921. "name": "Symfony Community",
  2922. "homepage": "https://symfony.com/contributors"
  2923. }
  2924. ],
  2925. "description": "Symfony EventDispatcher Component",
  2926. "homepage": "https://symfony.com",
  2927. "time": "2018-01-03 07:37:34"
  2928. },
  2929. {
  2930. "name": "symfony/finder",
  2931. "version": "v3.4.3",
  2932. "source": {
  2933. "type": "git",
  2934. "url": "https://github.com/symfony/finder.git",
  2935. "reference": "613e26310776f49a1773b6737c6bd554b8bc8c6f"
  2936. },
  2937. "dist": {
  2938. "type": "zip",
  2939. "url": "https://files.phpcomposer.com/files/symfony/finder/613e26310776f49a1773b6737c6bd554b8bc8c6f.zip",
  2940. "reference": "613e26310776f49a1773b6737c6bd554b8bc8c6f",
  2941. "shasum": ""
  2942. },
  2943. "require": {
  2944. "php": "^5.5.9|>=7.0.8"
  2945. },
  2946. "type": "library",
  2947. "extra": {
  2948. "branch-alias": {
  2949. "dev-master": "3.4-dev"
  2950. }
  2951. },
  2952. "autoload": {
  2953. "psr-4": {
  2954. "Symfony\\Component\\Finder\\": ""
  2955. },
  2956. "exclude-from-classmap": [
  2957. "/Tests/"
  2958. ]
  2959. },
  2960. "notification-url": "https://packagist.org/downloads/",
  2961. "license": [
  2962. "MIT"
  2963. ],
  2964. "authors": [
  2965. {
  2966. "name": "Fabien Potencier",
  2967. "email": "fabien@symfony.com"
  2968. },
  2969. {
  2970. "name": "Symfony Community",
  2971. "homepage": "https://symfony.com/contributors"
  2972. }
  2973. ],
  2974. "description": "Symfony Finder Component",
  2975. "homepage": "https://symfony.com",
  2976. "time": "2018-01-03 07:37:34"
  2977. },
  2978. {
  2979. "name": "symfony/polyfill-mbstring",
  2980. "version": "v1.6.0",
  2981. "source": {
  2982. "type": "git",
  2983. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2984. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  2985. },
  2986. "dist": {
  2987. "type": "zip",
  2988. "url": "https://files.phpcomposer.com/files/symfony/polyfill-mbstring/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296.zip",
  2989. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  2990. "shasum": ""
  2991. },
  2992. "require": {
  2993. "php": ">=5.3.3"
  2994. },
  2995. "suggest": {
  2996. "ext-mbstring": "For best performance"
  2997. },
  2998. "type": "library",
  2999. "extra": {
  3000. "branch-alias": {
  3001. "dev-master": "1.6-dev"
  3002. }
  3003. },
  3004. "autoload": {
  3005. "psr-4": {
  3006. "Symfony\\Polyfill\\Mbstring\\": ""
  3007. },
  3008. "files": [
  3009. "bootstrap.php"
  3010. ]
  3011. },
  3012. "notification-url": "https://packagist.org/downloads/",
  3013. "license": [
  3014. "MIT"
  3015. ],
  3016. "authors": [
  3017. {
  3018. "name": "Nicolas Grekas",
  3019. "email": "p@tchwork.com"
  3020. },
  3021. {
  3022. "name": "Symfony Community",
  3023. "homepage": "https://symfony.com/contributors"
  3024. }
  3025. ],
  3026. "description": "Symfony polyfill for the Mbstring extension",
  3027. "homepage": "https://symfony.com",
  3028. "keywords": [
  3029. "compatibility",
  3030. "mbstring",
  3031. "polyfill",
  3032. "portable",
  3033. "shim"
  3034. ],
  3035. "time": "2017-10-11 12:05:26"
  3036. },
  3037. {
  3038. "name": "symfony/yaml",
  3039. "version": "v3.4.3",
  3040. "source": {
  3041. "type": "git",
  3042. "url": "https://github.com/symfony/yaml.git",
  3043. "reference": "25c192f25721a74084272671f658797d9e0e0146"
  3044. },
  3045. "dist": {
  3046. "type": "zip",
  3047. "url": "https://files.phpcomposer.com/files/symfony/yaml/25c192f25721a74084272671f658797d9e0e0146.zip",
  3048. "reference": "25c192f25721a74084272671f658797d9e0e0146",
  3049. "shasum": ""
  3050. },
  3051. "require": {
  3052. "php": "^5.5.9|>=7.0.8"
  3053. },
  3054. "conflict": {
  3055. "symfony/console": "<3.4"
  3056. },
  3057. "require-dev": {
  3058. "symfony/console": "~3.4|~4.0"
  3059. },
  3060. "suggest": {
  3061. "symfony/console": "For validating YAML files using the lint command"
  3062. },
  3063. "type": "library",
  3064. "extra": {
  3065. "branch-alias": {
  3066. "dev-master": "3.4-dev"
  3067. }
  3068. },
  3069. "autoload": {
  3070. "psr-4": {
  3071. "Symfony\\Component\\Yaml\\": ""
  3072. },
  3073. "exclude-from-classmap": [
  3074. "/Tests/"
  3075. ]
  3076. },
  3077. "notification-url": "https://packagist.org/downloads/",
  3078. "license": [
  3079. "MIT"
  3080. ],
  3081. "authors": [
  3082. {
  3083. "name": "Fabien Potencier",
  3084. "email": "fabien@symfony.com"
  3085. },
  3086. {
  3087. "name": "Symfony Community",
  3088. "homepage": "https://symfony.com/contributors"
  3089. }
  3090. ],
  3091. "description": "Symfony Yaml Component",
  3092. "homepage": "https://symfony.com",
  3093. "time": "2018-01-03 07:37:34"
  3094. },
  3095. {
  3096. "name": "theseer/tokenizer",
  3097. "version": "1.1.0",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://github.com/theseer/tokenizer.git",
  3101. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://files.phpcomposer.com/files/theseer/tokenizer/cb2f008f3f05af2893a87208fe6a6c4985483f8b.zip",
  3106. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  3107. "shasum": ""
  3108. },
  3109. "require": {
  3110. "ext-dom": "*",
  3111. "ext-tokenizer": "*",
  3112. "ext-xmlwriter": "*",
  3113. "php": "^7.0"
  3114. },
  3115. "type": "library",
  3116. "autoload": {
  3117. "classmap": [
  3118. "src/"
  3119. ]
  3120. },
  3121. "notification-url": "https://packagist.org/downloads/",
  3122. "license": [
  3123. "BSD-3-Clause"
  3124. ],
  3125. "authors": [
  3126. {
  3127. "name": "Arne Blankerts",
  3128. "email": "arne@blankerts.de",
  3129. "role": "Developer"
  3130. }
  3131. ],
  3132. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  3133. "time": "2017-04-07 12:08:54"
  3134. },
  3135. {
  3136. "name": "webmozart/assert",
  3137. "version": "1.2.0",
  3138. "source": {
  3139. "type": "git",
  3140. "url": "https://github.com/webmozart/assert.git",
  3141. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  3142. },
  3143. "dist": {
  3144. "type": "zip",
  3145. "url": "https://files.phpcomposer.com/files/webmozart/assert/2db61e59ff05fe5126d152bd0655c9ea113e550f.zip",
  3146. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  3147. "shasum": ""
  3148. },
  3149. "require": {
  3150. "php": "^5.3.3 || ^7.0"
  3151. },
  3152. "require-dev": {
  3153. "phpunit/phpunit": "^4.6",
  3154. "sebastian/version": "^1.0.1"
  3155. },
  3156. "type": "library",
  3157. "extra": {
  3158. "branch-alias": {
  3159. "dev-master": "1.3-dev"
  3160. }
  3161. },
  3162. "autoload": {
  3163. "psr-4": {
  3164. "Webmozart\\Assert\\": "src/"
  3165. }
  3166. },
  3167. "notification-url": "https://packagist.org/downloads/",
  3168. "license": [
  3169. "MIT"
  3170. ],
  3171. "authors": [
  3172. {
  3173. "name": "Bernhard Schussek",
  3174. "email": "bschussek@gmail.com"
  3175. }
  3176. ],
  3177. "description": "Assertions to validate method input/output with nice error messages.",
  3178. "keywords": [
  3179. "assert",
  3180. "check",
  3181. "validate"
  3182. ],
  3183. "time": "2016-11-23 20:04:58"
  3184. },
  3185. {
  3186. "name": "yiisoft/yii2-debug",
  3187. "version": "2.0.13",
  3188. "source": {
  3189. "type": "git",
  3190. "url": "https://github.com/yiisoft/yii2-debug.git",
  3191. "reference": "b37f414959c2fafefb332020b42037cd17c1cb7f"
  3192. },
  3193. "dist": {
  3194. "type": "zip",
  3195. "url": "https://files.phpcomposer.com/files/yiisoft/yii2-debug/b37f414959c2fafefb332020b42037cd17c1cb7f.zip",
  3196. "reference": "b37f414959c2fafefb332020b42037cd17c1cb7f",
  3197. "shasum": ""
  3198. },
  3199. "require": {
  3200. "yiisoft/yii2": "~2.0.13",
  3201. "yiisoft/yii2-bootstrap": "~2.0.0"
  3202. },
  3203. "type": "yii2-extension",
  3204. "extra": {
  3205. "branch-alias": {
  3206. "dev-master": "2.0.x-dev"
  3207. }
  3208. },
  3209. "autoload": {
  3210. "psr-4": {
  3211. "yii\\debug\\": ""
  3212. }
  3213. },
  3214. "notification-url": "https://packagist.org/downloads/",
  3215. "license": [
  3216. "BSD-3-Clause"
  3217. ],
  3218. "authors": [
  3219. {
  3220. "name": "Qiang Xue",
  3221. "email": "qiang.xue@gmail.com"
  3222. }
  3223. ],
  3224. "description": "The debugger extension for the Yii framework",
  3225. "keywords": [
  3226. "debug",
  3227. "debugger",
  3228. "yii2"
  3229. ],
  3230. "time": "2017-12-05 07:36:23"
  3231. },
  3232. {
  3233. "name": "yiisoft/yii2-faker",
  3234. "version": "2.0.3",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://github.com/yiisoft/yii2-faker.git",
  3238. "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c"
  3239. },
  3240. "dist": {
  3241. "type": "zip",
  3242. "url": "https://files.phpcomposer.com/files/yiisoft/yii2-faker/b88ca69ee226a3610b2c26c026c3203d7ac50f6c.zip",
  3243. "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c",
  3244. "shasum": ""
  3245. },
  3246. "require": {
  3247. "fzaninotto/faker": "*",
  3248. "yiisoft/yii2": "*"
  3249. },
  3250. "type": "yii2-extension",
  3251. "extra": {
  3252. "branch-alias": {
  3253. "dev-master": "2.0.x-dev"
  3254. }
  3255. },
  3256. "autoload": {
  3257. "psr-4": {
  3258. "yii\\faker\\": ""
  3259. }
  3260. },
  3261. "notification-url": "https://packagist.org/downloads/",
  3262. "license": [
  3263. "BSD-3-Clause"
  3264. ],
  3265. "authors": [
  3266. {
  3267. "name": "Mark Jebri",
  3268. "email": "mark.github@yandex.ru"
  3269. }
  3270. ],
  3271. "description": "Fixture generator. The Faker integration for the Yii framework.",
  3272. "keywords": [
  3273. "Fixture",
  3274. "faker",
  3275. "yii2"
  3276. ],
  3277. "time": "2015-03-01 06:22:44"
  3278. },
  3279. {
  3280. "name": "yiisoft/yii2-gii",
  3281. "version": "2.0.6",
  3282. "source": {
  3283. "type": "git",
  3284. "url": "https://github.com/yiisoft/yii2-gii.git",
  3285. "reference": "db41f647d9b73702ceb6864fdfce827a72b5ce42"
  3286. },
  3287. "dist": {
  3288. "type": "zip",
  3289. "url": "https://files.phpcomposer.com/files/yiisoft/yii2-gii/db41f647d9b73702ceb6864fdfce827a72b5ce42.zip",
  3290. "reference": "db41f647d9b73702ceb6864fdfce827a72b5ce42",
  3291. "shasum": ""
  3292. },
  3293. "require": {
  3294. "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
  3295. "phpspec/php-diff": ">=1.0.2",
  3296. "yiisoft/yii2": "~2.0.13",
  3297. "yiisoft/yii2-bootstrap": "~2.0.0"
  3298. },
  3299. "type": "yii2-extension",
  3300. "extra": {
  3301. "branch-alias": {
  3302. "dev-master": "2.0.x-dev"
  3303. },
  3304. "asset-installer-paths": {
  3305. "npm-asset-library": "vendor/npm",
  3306. "bower-asset-library": "vendor/bower"
  3307. }
  3308. },
  3309. "autoload": {
  3310. "psr-4": {
  3311. "yii\\gii\\": ""
  3312. }
  3313. },
  3314. "notification-url": "https://packagist.org/downloads/",
  3315. "license": [
  3316. "BSD-3-Clause"
  3317. ],
  3318. "authors": [
  3319. {
  3320. "name": "Qiang Xue",
  3321. "email": "qiang.xue@gmail.com"
  3322. }
  3323. ],
  3324. "description": "The Gii extension for the Yii framework",
  3325. "keywords": [
  3326. "code generator",
  3327. "gii",
  3328. "yii2"
  3329. ],
  3330. "time": "2017-12-22 23:53:06"
  3331. }
  3332. ],
  3333. "aliases": [],
  3334. "minimum-stability": "stable",
  3335. "stability-flags": [],
  3336. "prefer-stable": false,
  3337. "prefer-lowest": false,
  3338. "platform": {
  3339. "php": ">=5.4.0"
  3340. },
  3341. "platform-dev": []
  3342. }