composer.lock 114 KB

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