installed.json 101 KB

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