composer.lock 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "546f5ce1f7778a51182ee46f0356d063",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "1.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/5a91b62b9d37cee635bbf8d553f4546057250bee",
  20. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-iconv": "*",
  25. "php": "^5.4|^7.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8"
  29. },
  30. "suggest": {
  31. "ext-gd": "to generate QR code images"
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "psr-0": {
  36. "BaconQrCode": "src/"
  37. }
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "BSD-2-Clause"
  42. ],
  43. "authors": [
  44. {
  45. "name": "Ben Scholzen 'DASPRiD'",
  46. "email": "mail@dasprids.de",
  47. "homepage": "http://www.dasprids.de",
  48. "role": "Developer"
  49. }
  50. ],
  51. "description": "BaconQrCode is a QR code generator for PHP.",
  52. "homepage": "https://github.com/Bacon/BaconQrCode",
  53. "time": "2017-10-17T09:59:25+00:00"
  54. },
  55. {
  56. "name": "google/recaptcha",
  57. "version": "1.2.1",
  58. "source": {
  59. "type": "git",
  60. "url": "https://github.com/google/recaptcha.git",
  61. "reference": "e7add3be59211482ecdb942288f52da64a35f61a"
  62. },
  63. "dist": {
  64. "type": "zip",
  65. "url": "https://api.github.com/repos/google/recaptcha/zipball/e7add3be59211482ecdb942288f52da64a35f61a",
  66. "reference": "e7add3be59211482ecdb942288f52da64a35f61a",
  67. "shasum": ""
  68. },
  69. "require": {
  70. "php": ">=5.5"
  71. },
  72. "require-dev": {
  73. "friendsofphp/php-cs-fixer": "^2.2.20|^2.12",
  74. "php-coveralls/php-coveralls": "^2.1",
  75. "phpunit/phpunit": "^4.8.36|^5.7.27|^6.59|^7"
  76. },
  77. "type": "library",
  78. "extra": {
  79. "branch-alias": {
  80. "dev-master": "1.2.x-dev"
  81. }
  82. },
  83. "autoload": {
  84. "psr-4": {
  85. "ReCaptcha\\": "src/ReCaptcha"
  86. }
  87. },
  88. "notification-url": "https://packagist.org/downloads/",
  89. "license": [
  90. "BSD-3-Clause"
  91. ],
  92. "description": "Client library for reCAPTCHA, a free service that protects websites from spam and abuse.",
  93. "homepage": "https://www.google.com/recaptcha/",
  94. "keywords": [
  95. "Abuse",
  96. "captcha",
  97. "recaptcha",
  98. "spam"
  99. ],
  100. "time": "2018-08-05T09:31:53+00:00"
  101. },
  102. {
  103. "name": "paragonie/constant_time_encoding",
  104. "version": "v1.0.4",
  105. "source": {
  106. "type": "git",
  107. "url": "https://github.com/paragonie/constant_time_encoding.git",
  108. "reference": "2132f0f293d856026d7d11bd81b9f4a23a1dc1f6"
  109. },
  110. "dist": {
  111. "type": "zip",
  112. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/2132f0f293d856026d7d11bd81b9f4a23a1dc1f6",
  113. "reference": "2132f0f293d856026d7d11bd81b9f4a23a1dc1f6",
  114. "shasum": ""
  115. },
  116. "require": {
  117. "php": "^5.3|^7"
  118. },
  119. "require-dev": {
  120. "paragonie/random_compat": "^1.4|^2",
  121. "phpunit/phpunit": "4.*|5.*",
  122. "vimeo/psalm": "^0.3|^1"
  123. },
  124. "type": "library",
  125. "autoload": {
  126. "psr-4": {
  127. "ParagonIE\\ConstantTime\\": "src/"
  128. }
  129. },
  130. "notification-url": "https://packagist.org/downloads/",
  131. "license": [
  132. "MIT"
  133. ],
  134. "authors": [
  135. {
  136. "name": "Paragon Initiative Enterprises",
  137. "email": "security@paragonie.com",
  138. "homepage": "https://paragonie.com",
  139. "role": "Maintainer"
  140. },
  141. {
  142. "name": "Steve 'Sc00bz' Thomas",
  143. "email": "steve@tobtu.com",
  144. "homepage": "https://www.tobtu.com",
  145. "role": "Original Developer"
  146. }
  147. ],
  148. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  149. "keywords": [
  150. "base16",
  151. "base32",
  152. "base32_decode",
  153. "base32_encode",
  154. "base64",
  155. "base64_decode",
  156. "base64_encode",
  157. "bin2hex",
  158. "encoding",
  159. "hex",
  160. "hex2bin",
  161. "rfc4648"
  162. ],
  163. "time": "2018-04-30T17:57:16+00:00"
  164. },
  165. {
  166. "name": "paragonie/random_compat",
  167. "version": "v2.0.18",
  168. "source": {
  169. "type": "git",
  170. "url": "https://github.com/paragonie/random_compat.git",
  171. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  172. },
  173. "dist": {
  174. "type": "zip",
  175. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  176. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  177. "shasum": ""
  178. },
  179. "require": {
  180. "php": ">=5.2.0"
  181. },
  182. "require-dev": {
  183. "phpunit/phpunit": "4.*|5.*"
  184. },
  185. "suggest": {
  186. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "files": [
  191. "lib/random.php"
  192. ]
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Paragon Initiative Enterprises",
  201. "email": "security@paragonie.com",
  202. "homepage": "https://paragonie.com"
  203. }
  204. ],
  205. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  206. "keywords": [
  207. "csprng",
  208. "polyfill",
  209. "pseudorandom",
  210. "random"
  211. ],
  212. "time": "2019-01-03T20:59:08+00:00"
  213. },
  214. {
  215. "name": "phpmyadmin/motranslator",
  216. "version": "4.0",
  217. "source": {
  218. "type": "git",
  219. "url": "https://github.com/phpmyadmin/motranslator.git",
  220. "reference": "fcb370254998fda7eeccfd7c787b4deb71b0d77c"
  221. },
  222. "dist": {
  223. "type": "zip",
  224. "url": "https://api.github.com/repos/phpmyadmin/motranslator/zipball/fcb370254998fda7eeccfd7c787b4deb71b0d77c",
  225. "reference": "fcb370254998fda7eeccfd7c787b4deb71b0d77c",
  226. "shasum": ""
  227. },
  228. "require": {
  229. "php": ">=5.3.0",
  230. "symfony/expression-language": "^4.0 || ^3.2 || ^2.8"
  231. },
  232. "require-dev": {
  233. "apigen/apigen": "^4.1",
  234. "phpunit/php-code-coverage": "*",
  235. "phpunit/phpunit": "~4.8 || ~5.7 || ~6.5"
  236. },
  237. "type": "library",
  238. "autoload": {
  239. "psr-4": {
  240. "PhpMyAdmin\\MoTranslator\\": "src"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "GPL-2.0-or-later"
  246. ],
  247. "authors": [
  248. {
  249. "name": "The phpMyAdmin Team",
  250. "email": "developers@phpmyadmin.net",
  251. "homepage": "https://www.phpmyadmin.net/team/"
  252. }
  253. ],
  254. "description": "Translation API for PHP using Gettext MO files",
  255. "homepage": "https://github.com/phpmyadmin/motranslator",
  256. "keywords": [
  257. "gettext",
  258. "i18n",
  259. "mo",
  260. "translator"
  261. ],
  262. "time": "2018-02-12T13:22:52+00:00"
  263. },
  264. {
  265. "name": "phpmyadmin/shapefile",
  266. "version": "2.1",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/phpmyadmin/shapefile.git",
  270. "reference": "e23b767f2a81f61fee3fc09fc062879985f3e224"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://api.github.com/repos/phpmyadmin/shapefile/zipball/e23b767f2a81f61fee3fc09fc062879985f3e224",
  275. "reference": "e23b767f2a81f61fee3fc09fc062879985f3e224",
  276. "shasum": ""
  277. },
  278. "require": {
  279. "php": ">=5.4.0"
  280. },
  281. "require-dev": {
  282. "phpunit/php-code-coverage": "*",
  283. "phpunit/phpunit": "~4.8 || ~5.7"
  284. },
  285. "suggest": {
  286. "ext-dbase": "For dbf files parsing"
  287. },
  288. "type": "library",
  289. "autoload": {
  290. "psr-4": {
  291. "PhpMyAdmin\\ShapeFile\\": "src"
  292. }
  293. },
  294. "notification-url": "https://packagist.org/downloads/",
  295. "license": [
  296. "GPL-2.0+"
  297. ],
  298. "authors": [
  299. {
  300. "name": "The phpMyAdmin Team",
  301. "email": "developers@phpmyadmin.net",
  302. "homepage": "https://www.phpmyadmin.net/team/"
  303. }
  304. ],
  305. "description": "ESRI ShapeFile library for PHP",
  306. "homepage": "https://github.com/phpmyadmin/shapefile",
  307. "keywords": [
  308. "ESRI",
  309. "Shapefile",
  310. "dbf",
  311. "geo",
  312. "geospatial",
  313. "shape",
  314. "shp"
  315. ],
  316. "time": "2017-05-15T08:31:47+00:00"
  317. },
  318. {
  319. "name": "phpmyadmin/sql-parser",
  320. "version": "v4.3.1",
  321. "source": {
  322. "type": "git",
  323. "url": "https://github.com/phpmyadmin/sql-parser.git",
  324. "reference": "0eb16ef5e3acacbc792be336754e42d98791a33f"
  325. },
  326. "dist": {
  327. "type": "zip",
  328. "url": "https://api.github.com/repos/phpmyadmin/sql-parser/zipball/0eb16ef5e3acacbc792be336754e42d98791a33f",
  329. "reference": "0eb16ef5e3acacbc792be336754e42d98791a33f",
  330. "shasum": ""
  331. },
  332. "require": {
  333. "php": ">=5.3.0",
  334. "symfony/polyfill-mbstring": "^1.3"
  335. },
  336. "conflict": {
  337. "phpmyadmin/motranslator": "<3.0"
  338. },
  339. "require-dev": {
  340. "phpunit/php-code-coverage": "*",
  341. "phpunit/phpunit": "~4.8 || ~5.7 || ~6.5",
  342. "sami/sami": "^4.0"
  343. },
  344. "suggest": {
  345. "ext-mbstring": "For best performance",
  346. "phpmyadmin/motranslator": "Translate messages to your favorite locale"
  347. },
  348. "bin": [
  349. "bin/highlight-query",
  350. "bin/lint-query"
  351. ],
  352. "type": "library",
  353. "autoload": {
  354. "psr-4": {
  355. "PhpMyAdmin\\SqlParser\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "GPL-2.0-or-later"
  361. ],
  362. "authors": [
  363. {
  364. "name": "The phpMyAdmin Team",
  365. "email": "developers@phpmyadmin.net",
  366. "homepage": "https://www.phpmyadmin.net/team/"
  367. }
  368. ],
  369. "description": "A validating SQL lexer and parser with a focus on MySQL dialect.",
  370. "homepage": "https://github.com/phpmyadmin/sql-parser",
  371. "keywords": [
  372. "analysis",
  373. "lexer",
  374. "parser",
  375. "sql"
  376. ],
  377. "time": "2019-01-05T13:46:38+00:00"
  378. },
  379. {
  380. "name": "phpseclib/phpseclib",
  381. "version": "2.0.13",
  382. "source": {
  383. "type": "git",
  384. "url": "https://github.com/phpseclib/phpseclib.git",
  385. "reference": "42603ce3f42a27f7e14e54feab95db7b680ad473"
  386. },
  387. "dist": {
  388. "type": "zip",
  389. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/42603ce3f42a27f7e14e54feab95db7b680ad473",
  390. "reference": "42603ce3f42a27f7e14e54feab95db7b680ad473",
  391. "shasum": ""
  392. },
  393. "require": {
  394. "php": ">=5.3.3"
  395. },
  396. "require-dev": {
  397. "phing/phing": "~2.7",
  398. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  399. "sami/sami": "~2.0",
  400. "squizlabs/php_codesniffer": "~2.0"
  401. },
  402. "suggest": {
  403. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  404. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  405. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  406. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  407. },
  408. "type": "library",
  409. "autoload": {
  410. "files": [
  411. "phpseclib/bootstrap.php"
  412. ],
  413. "psr-4": {
  414. "phpseclib\\": "phpseclib/"
  415. }
  416. },
  417. "notification-url": "https://packagist.org/downloads/",
  418. "license": [
  419. "MIT"
  420. ],
  421. "authors": [
  422. {
  423. "name": "Jim Wigginton",
  424. "email": "terrafrost@php.net",
  425. "role": "Lead Developer"
  426. },
  427. {
  428. "name": "Patrick Monnerat",
  429. "email": "pm@datasphere.ch",
  430. "role": "Developer"
  431. },
  432. {
  433. "name": "Andreas Fischer",
  434. "email": "bantu@phpbb.com",
  435. "role": "Developer"
  436. },
  437. {
  438. "name": "Hans-Jürgen Petrich",
  439. "email": "petrich@tronic-media.com",
  440. "role": "Developer"
  441. },
  442. {
  443. "name": "Graham Campbell",
  444. "email": "graham@alt-three.com",
  445. "role": "Developer"
  446. }
  447. ],
  448. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  449. "homepage": "http://phpseclib.sourceforge.net",
  450. "keywords": [
  451. "BigInteger",
  452. "aes",
  453. "asn.1",
  454. "asn1",
  455. "blowfish",
  456. "crypto",
  457. "cryptography",
  458. "encryption",
  459. "rsa",
  460. "security",
  461. "sftp",
  462. "signature",
  463. "signing",
  464. "ssh",
  465. "twofish",
  466. "x.509",
  467. "x509"
  468. ],
  469. "time": "2018-12-16T17:45:25+00:00"
  470. },
  471. {
  472. "name": "pragmarx/google2fa",
  473. "version": "v3.0.3",
  474. "source": {
  475. "type": "git",
  476. "url": "https://github.com/antonioribeiro/google2fa.git",
  477. "reference": "6949226739e4424f40031e6f1c96b1fd64047335"
  478. },
  479. "dist": {
  480. "type": "zip",
  481. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/6949226739e4424f40031e6f1c96b1fd64047335",
  482. "reference": "6949226739e4424f40031e6f1c96b1fd64047335",
  483. "shasum": ""
  484. },
  485. "require": {
  486. "paragonie/constant_time_encoding": "~1.0|~2.0",
  487. "paragonie/random_compat": ">=1",
  488. "php": ">=5.4",
  489. "symfony/polyfill-php56": "~1.2"
  490. },
  491. "require-dev": {
  492. "bacon/bacon-qr-code": "~1.0",
  493. "phpunit/phpunit": "~4|~5|~6"
  494. },
  495. "suggest": {
  496. "bacon/bacon-qr-code": "Required to generate inline QR Codes."
  497. },
  498. "type": "library",
  499. "extra": {
  500. "component": "package",
  501. "branch-alias": {
  502. "dev-master": "2.0-dev"
  503. }
  504. },
  505. "autoload": {
  506. "psr-4": {
  507. "PragmaRX\\Google2FA\\": "src/",
  508. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  509. }
  510. },
  511. "notification-url": "https://packagist.org/downloads/",
  512. "license": [
  513. "MIT"
  514. ],
  515. "authors": [
  516. {
  517. "name": "Antonio Carlos Ribeiro",
  518. "email": "acr@antoniocarlosribeiro.com",
  519. "role": "Creator & Designer"
  520. }
  521. ],
  522. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  523. "keywords": [
  524. "2fa",
  525. "Authentication",
  526. "Two Factor Authentication",
  527. "google2fa",
  528. "laravel"
  529. ],
  530. "time": "2018-08-29T13:28:06+00:00"
  531. },
  532. {
  533. "name": "psr/container",
  534. "version": "1.0.0",
  535. "source": {
  536. "type": "git",
  537. "url": "https://github.com/php-fig/container.git",
  538. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  539. },
  540. "dist": {
  541. "type": "zip",
  542. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  543. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  544. "shasum": ""
  545. },
  546. "require": {
  547. "php": ">=5.3.0"
  548. },
  549. "type": "library",
  550. "extra": {
  551. "branch-alias": {
  552. "dev-master": "1.0.x-dev"
  553. }
  554. },
  555. "autoload": {
  556. "psr-4": {
  557. "Psr\\Container\\": "src/"
  558. }
  559. },
  560. "notification-url": "https://packagist.org/downloads/",
  561. "license": [
  562. "MIT"
  563. ],
  564. "authors": [
  565. {
  566. "name": "PHP-FIG",
  567. "homepage": "http://www.php-fig.org/"
  568. }
  569. ],
  570. "description": "Common Container Interface (PHP FIG PSR-11)",
  571. "homepage": "https://github.com/php-fig/container",
  572. "keywords": [
  573. "PSR-11",
  574. "container",
  575. "container-interface",
  576. "container-interop",
  577. "psr"
  578. ],
  579. "time": "2017-02-14T16:28:37+00:00"
  580. },
  581. {
  582. "name": "samyoul/u2f-php-server",
  583. "version": "v1.1.4",
  584. "source": {
  585. "type": "git",
  586. "url": "https://github.com/Samyoul/U2F-php-server.git",
  587. "reference": "0625202c79d570e58525ed6c4ae38500ea3f0883"
  588. },
  589. "dist": {
  590. "type": "zip",
  591. "url": "https://api.github.com/repos/Samyoul/U2F-php-server/zipball/0625202c79d570e58525ed6c4ae38500ea3f0883",
  592. "reference": "0625202c79d570e58525ed6c4ae38500ea3f0883",
  593. "shasum": ""
  594. },
  595. "require": {
  596. "ext-openssl": "*"
  597. },
  598. "type": "library",
  599. "autoload": {
  600. "psr-4": {
  601. "Samyoul\\U2F\\U2FServer\\": [
  602. "src/"
  603. ]
  604. }
  605. },
  606. "notification-url": "https://packagist.org/downloads/",
  607. "license": [
  608. "BSD-2-Clause"
  609. ],
  610. "authors": [
  611. {
  612. "name": "Samuel Hawksby-Robinson",
  613. "email": "samuel@samyoul.com"
  614. }
  615. ],
  616. "description": "Server side handling class for FIDO U2F registration and authentication",
  617. "time": "2018-10-26T12:43:39+00:00"
  618. },
  619. {
  620. "name": "symfony/expression-language",
  621. "version": "v2.8.49",
  622. "source": {
  623. "type": "git",
  624. "url": "https://github.com/symfony/expression-language.git",
  625. "reference": "fa9be1b831859b56d244137fabbfd01a46dbdb36"
  626. },
  627. "dist": {
  628. "type": "zip",
  629. "url": "https://api.github.com/repos/symfony/expression-language/zipball/fa9be1b831859b56d244137fabbfd01a46dbdb36",
  630. "reference": "fa9be1b831859b56d244137fabbfd01a46dbdb36",
  631. "shasum": ""
  632. },
  633. "require": {
  634. "php": ">=5.3.9"
  635. },
  636. "type": "library",
  637. "extra": {
  638. "branch-alias": {
  639. "dev-master": "2.8-dev"
  640. }
  641. },
  642. "autoload": {
  643. "psr-4": {
  644. "Symfony\\Component\\ExpressionLanguage\\": ""
  645. },
  646. "exclude-from-classmap": [
  647. "/Tests/"
  648. ]
  649. },
  650. "notification-url": "https://packagist.org/downloads/",
  651. "license": [
  652. "MIT"
  653. ],
  654. "authors": [
  655. {
  656. "name": "Fabien Potencier",
  657. "email": "fabien@symfony.com"
  658. },
  659. {
  660. "name": "Symfony Community",
  661. "homepage": "https://symfony.com/contributors"
  662. }
  663. ],
  664. "description": "Symfony ExpressionLanguage Component",
  665. "homepage": "https://symfony.com",
  666. "time": "2018-11-11T11:18:13+00:00"
  667. },
  668. {
  669. "name": "symfony/polyfill-ctype",
  670. "version": "v1.10.0",
  671. "source": {
  672. "type": "git",
  673. "url": "https://github.com/symfony/polyfill-ctype.git",
  674. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  675. },
  676. "dist": {
  677. "type": "zip",
  678. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  679. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  680. "shasum": ""
  681. },
  682. "require": {
  683. "php": ">=5.3.3"
  684. },
  685. "suggest": {
  686. "ext-ctype": "For best performance"
  687. },
  688. "type": "library",
  689. "extra": {
  690. "branch-alias": {
  691. "dev-master": "1.9-dev"
  692. }
  693. },
  694. "autoload": {
  695. "psr-4": {
  696. "Symfony\\Polyfill\\Ctype\\": ""
  697. },
  698. "files": [
  699. "bootstrap.php"
  700. ]
  701. },
  702. "notification-url": "https://packagist.org/downloads/",
  703. "license": [
  704. "MIT"
  705. ],
  706. "authors": [
  707. {
  708. "name": "Symfony Community",
  709. "homepage": "https://symfony.com/contributors"
  710. },
  711. {
  712. "name": "Gert de Pagter",
  713. "email": "backendtea@gmail.com"
  714. }
  715. ],
  716. "description": "Symfony polyfill for ctype functions",
  717. "homepage": "https://symfony.com",
  718. "keywords": [
  719. "compatibility",
  720. "ctype",
  721. "polyfill",
  722. "portable"
  723. ],
  724. "time": "2018-08-06T14:22:27+00:00"
  725. },
  726. {
  727. "name": "symfony/polyfill-mbstring",
  728. "version": "v1.10.0",
  729. "source": {
  730. "type": "git",
  731. "url": "https://github.com/symfony/polyfill-mbstring.git",
  732. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  733. },
  734. "dist": {
  735. "type": "zip",
  736. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  737. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  738. "shasum": ""
  739. },
  740. "require": {
  741. "php": ">=5.3.3"
  742. },
  743. "suggest": {
  744. "ext-mbstring": "For best performance"
  745. },
  746. "type": "library",
  747. "extra": {
  748. "branch-alias": {
  749. "dev-master": "1.9-dev"
  750. }
  751. },
  752. "autoload": {
  753. "psr-4": {
  754. "Symfony\\Polyfill\\Mbstring\\": ""
  755. },
  756. "files": [
  757. "bootstrap.php"
  758. ]
  759. },
  760. "notification-url": "https://packagist.org/downloads/",
  761. "license": [
  762. "MIT"
  763. ],
  764. "authors": [
  765. {
  766. "name": "Nicolas Grekas",
  767. "email": "p@tchwork.com"
  768. },
  769. {
  770. "name": "Symfony Community",
  771. "homepage": "https://symfony.com/contributors"
  772. }
  773. ],
  774. "description": "Symfony polyfill for the Mbstring extension",
  775. "homepage": "https://symfony.com",
  776. "keywords": [
  777. "compatibility",
  778. "mbstring",
  779. "polyfill",
  780. "portable",
  781. "shim"
  782. ],
  783. "time": "2018-09-21T13:07:52+00:00"
  784. },
  785. {
  786. "name": "symfony/polyfill-php56",
  787. "version": "v1.10.0",
  788. "source": {
  789. "type": "git",
  790. "url": "https://github.com/symfony/polyfill-php56.git",
  791. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af"
  792. },
  793. "dist": {
  794. "type": "zip",
  795. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/ff208829fe1aa48ab9af356992bb7199fed551af",
  796. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af",
  797. "shasum": ""
  798. },
  799. "require": {
  800. "php": ">=5.3.3",
  801. "symfony/polyfill-util": "~1.0"
  802. },
  803. "type": "library",
  804. "extra": {
  805. "branch-alias": {
  806. "dev-master": "1.9-dev"
  807. }
  808. },
  809. "autoload": {
  810. "psr-4": {
  811. "Symfony\\Polyfill\\Php56\\": ""
  812. },
  813. "files": [
  814. "bootstrap.php"
  815. ]
  816. },
  817. "notification-url": "https://packagist.org/downloads/",
  818. "license": [
  819. "MIT"
  820. ],
  821. "authors": [
  822. {
  823. "name": "Nicolas Grekas",
  824. "email": "p@tchwork.com"
  825. },
  826. {
  827. "name": "Symfony Community",
  828. "homepage": "https://symfony.com/contributors"
  829. }
  830. ],
  831. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  832. "homepage": "https://symfony.com",
  833. "keywords": [
  834. "compatibility",
  835. "polyfill",
  836. "portable",
  837. "shim"
  838. ],
  839. "time": "2018-09-21T06:26:08+00:00"
  840. },
  841. {
  842. "name": "symfony/polyfill-util",
  843. "version": "v1.10.0",
  844. "source": {
  845. "type": "git",
  846. "url": "https://github.com/symfony/polyfill-util.git",
  847. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c"
  848. },
  849. "dist": {
  850. "type": "zip",
  851. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/3b58903eae668d348a7126f999b0da0f2f93611c",
  852. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c",
  853. "shasum": ""
  854. },
  855. "require": {
  856. "php": ">=5.3.3"
  857. },
  858. "type": "library",
  859. "extra": {
  860. "branch-alias": {
  861. "dev-master": "1.9-dev"
  862. }
  863. },
  864. "autoload": {
  865. "psr-4": {
  866. "Symfony\\Polyfill\\Util\\": ""
  867. }
  868. },
  869. "notification-url": "https://packagist.org/downloads/",
  870. "license": [
  871. "MIT"
  872. ],
  873. "authors": [
  874. {
  875. "name": "Nicolas Grekas",
  876. "email": "p@tchwork.com"
  877. },
  878. {
  879. "name": "Symfony Community",
  880. "homepage": "https://symfony.com/contributors"
  881. }
  882. ],
  883. "description": "Symfony utilities for portability of PHP codes",
  884. "homepage": "https://symfony.com",
  885. "keywords": [
  886. "compat",
  887. "compatibility",
  888. "polyfill",
  889. "shim"
  890. ],
  891. "time": "2018-09-30T16:36:12+00:00"
  892. },
  893. {
  894. "name": "tecnickcom/tcpdf",
  895. "version": "6.2.26",
  896. "source": {
  897. "type": "git",
  898. "url": "https://github.com/tecnickcom/TCPDF.git",
  899. "reference": "367241059ca166e3a76490f4448c284e0a161f15"
  900. },
  901. "dist": {
  902. "type": "zip",
  903. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/367241059ca166e3a76490f4448c284e0a161f15",
  904. "reference": "367241059ca166e3a76490f4448c284e0a161f15",
  905. "shasum": ""
  906. },
  907. "require": {
  908. "php": ">=5.3.0"
  909. },
  910. "type": "library",
  911. "autoload": {
  912. "classmap": [
  913. "config",
  914. "include",
  915. "tcpdf.php",
  916. "tcpdf_parser.php",
  917. "tcpdf_import.php",
  918. "tcpdf_barcodes_1d.php",
  919. "tcpdf_barcodes_2d.php",
  920. "include/tcpdf_colors.php",
  921. "include/tcpdf_filters.php",
  922. "include/tcpdf_font_data.php",
  923. "include/tcpdf_fonts.php",
  924. "include/tcpdf_images.php",
  925. "include/tcpdf_static.php",
  926. "include/barcodes/datamatrix.php",
  927. "include/barcodes/pdf417.php",
  928. "include/barcodes/qrcode.php"
  929. ]
  930. },
  931. "notification-url": "https://packagist.org/downloads/",
  932. "license": [
  933. "LGPL-3.0"
  934. ],
  935. "authors": [
  936. {
  937. "name": "Nicola Asuni",
  938. "email": "info@tecnick.com",
  939. "role": "lead"
  940. }
  941. ],
  942. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  943. "homepage": "http://www.tcpdf.org/",
  944. "keywords": [
  945. "PDFD32000-2008",
  946. "TCPDF",
  947. "barcodes",
  948. "datamatrix",
  949. "pdf",
  950. "pdf417",
  951. "qrcode"
  952. ],
  953. "time": "2018-10-16T17:24:05+00:00"
  954. },
  955. {
  956. "name": "twig/extensions",
  957. "version": "v1.5.4",
  958. "source": {
  959. "type": "git",
  960. "url": "https://github.com/twigphp/Twig-extensions.git",
  961. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202"
  962. },
  963. "dist": {
  964. "type": "zip",
  965. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/57873c8b0c1be51caa47df2cdb824490beb16202",
  966. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202",
  967. "shasum": ""
  968. },
  969. "require": {
  970. "twig/twig": "^1.27|^2.0"
  971. },
  972. "require-dev": {
  973. "symfony/phpunit-bridge": "^3.4",
  974. "symfony/translation": "^2.7|^3.4"
  975. },
  976. "suggest": {
  977. "symfony/translation": "Allow the time_diff output to be translated"
  978. },
  979. "type": "library",
  980. "extra": {
  981. "branch-alias": {
  982. "dev-master": "1.5-dev"
  983. }
  984. },
  985. "autoload": {
  986. "psr-0": {
  987. "Twig_Extensions_": "lib/"
  988. },
  989. "psr-4": {
  990. "Twig\\Extensions\\": "src/"
  991. }
  992. },
  993. "notification-url": "https://packagist.org/downloads/",
  994. "license": [
  995. "MIT"
  996. ],
  997. "authors": [
  998. {
  999. "name": "Fabien Potencier",
  1000. "email": "fabien@symfony.com"
  1001. }
  1002. ],
  1003. "description": "Common additional features for Twig that do not directly belong in core",
  1004. "keywords": [
  1005. "i18n",
  1006. "text"
  1007. ],
  1008. "time": "2018-12-05T18:34:18+00:00"
  1009. },
  1010. {
  1011. "name": "twig/twig",
  1012. "version": "v1.37.1",
  1013. "source": {
  1014. "type": "git",
  1015. "url": "https://github.com/twigphp/Twig.git",
  1016. "reference": "66be9366c76cbf23e82e7171d47cbfa54a057a62"
  1017. },
  1018. "dist": {
  1019. "type": "zip",
  1020. "url": "https://api.github.com/repos/twigphp/Twig/zipball/66be9366c76cbf23e82e7171d47cbfa54a057a62",
  1021. "reference": "66be9366c76cbf23e82e7171d47cbfa54a057a62",
  1022. "shasum": ""
  1023. },
  1024. "require": {
  1025. "php": ">=5.4.0",
  1026. "symfony/polyfill-ctype": "^1.8"
  1027. },
  1028. "require-dev": {
  1029. "psr/container": "^1.0",
  1030. "symfony/debug": "^2.7",
  1031. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  1032. },
  1033. "type": "library",
  1034. "extra": {
  1035. "branch-alias": {
  1036. "dev-master": "1.37-dev"
  1037. }
  1038. },
  1039. "autoload": {
  1040. "psr-0": {
  1041. "Twig_": "lib/"
  1042. },
  1043. "psr-4": {
  1044. "Twig\\": "src/"
  1045. }
  1046. },
  1047. "notification-url": "https://packagist.org/downloads/",
  1048. "license": [
  1049. "BSD-3-Clause"
  1050. ],
  1051. "authors": [
  1052. {
  1053. "name": "Fabien Potencier",
  1054. "email": "fabien@symfony.com",
  1055. "homepage": "http://fabien.potencier.org",
  1056. "role": "Lead Developer"
  1057. },
  1058. {
  1059. "name": "Armin Ronacher",
  1060. "email": "armin.ronacher@active-4.com",
  1061. "role": "Project Founder"
  1062. },
  1063. {
  1064. "name": "Twig Team",
  1065. "homepage": "https://twig.symfony.com/contributors",
  1066. "role": "Contributors"
  1067. }
  1068. ],
  1069. "description": "Twig, the flexible, fast, and secure template language for PHP",
  1070. "homepage": "https://twig.symfony.com",
  1071. "keywords": [
  1072. "templating"
  1073. ],
  1074. "time": "2019-01-14T14:59:29+00:00"
  1075. }
  1076. ],
  1077. "packages-dev": [
  1078. {
  1079. "name": "codacy/coverage",
  1080. "version": "1.4.2",
  1081. "source": {
  1082. "type": "git",
  1083. "url": "https://github.com/codacy/php-codacy-coverage.git",
  1084. "reference": "4988cd098db4d578681bfd3176071931ad475150"
  1085. },
  1086. "dist": {
  1087. "type": "zip",
  1088. "url": "https://api.github.com/repos/codacy/php-codacy-coverage/zipball/4988cd098db4d578681bfd3176071931ad475150",
  1089. "reference": "4988cd098db4d578681bfd3176071931ad475150",
  1090. "shasum": ""
  1091. },
  1092. "require": {
  1093. "gitonomy/gitlib": ">=1.0",
  1094. "php": ">=5.3.3",
  1095. "symfony/console": "~2.5|~3.0|~4.0"
  1096. },
  1097. "require-dev": {
  1098. "phpunit/phpunit": "~6.5"
  1099. },
  1100. "bin": [
  1101. "bin/codacycoverage"
  1102. ],
  1103. "type": "library",
  1104. "autoload": {
  1105. "classmap": [
  1106. "src/"
  1107. ]
  1108. },
  1109. "notification-url": "https://packagist.org/downloads/",
  1110. "license": [
  1111. "MIT"
  1112. ],
  1113. "authors": [
  1114. {
  1115. "name": "Jakob Pupke",
  1116. "email": "jakob.pupke@gmail.com"
  1117. }
  1118. ],
  1119. "description": "Sends PHP test coverage information to Codacy.",
  1120. "homepage": "https://github.com/codacy/php-codacy-coverage",
  1121. "time": "2018-03-22T16:43:39+00:00"
  1122. },
  1123. {
  1124. "name": "doctrine/instantiator",
  1125. "version": "1.0.5",
  1126. "source": {
  1127. "type": "git",
  1128. "url": "https://github.com/doctrine/instantiator.git",
  1129. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1130. },
  1131. "dist": {
  1132. "type": "zip",
  1133. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1134. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1135. "shasum": ""
  1136. },
  1137. "require": {
  1138. "php": ">=5.3,<8.0-DEV"
  1139. },
  1140. "require-dev": {
  1141. "athletic/athletic": "~0.1.8",
  1142. "ext-pdo": "*",
  1143. "ext-phar": "*",
  1144. "phpunit/phpunit": "~4.0",
  1145. "squizlabs/php_codesniffer": "~2.0"
  1146. },
  1147. "type": "library",
  1148. "extra": {
  1149. "branch-alias": {
  1150. "dev-master": "1.0.x-dev"
  1151. }
  1152. },
  1153. "autoload": {
  1154. "psr-4": {
  1155. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1156. }
  1157. },
  1158. "notification-url": "https://packagist.org/downloads/",
  1159. "license": [
  1160. "MIT"
  1161. ],
  1162. "authors": [
  1163. {
  1164. "name": "Marco Pivetta",
  1165. "email": "ocramius@gmail.com",
  1166. "homepage": "http://ocramius.github.com/"
  1167. }
  1168. ],
  1169. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1170. "homepage": "https://github.com/doctrine/instantiator",
  1171. "keywords": [
  1172. "constructor",
  1173. "instantiate"
  1174. ],
  1175. "time": "2015-06-14T21:17:01+00:00"
  1176. },
  1177. {
  1178. "name": "gitonomy/gitlib",
  1179. "version": "v1.0.4",
  1180. "source": {
  1181. "type": "git",
  1182. "url": "https://github.com/gitonomy/gitlib.git",
  1183. "reference": "932a960221ae3484a3e82553b3be478e56beb68d"
  1184. },
  1185. "dist": {
  1186. "type": "zip",
  1187. "url": "https://api.github.com/repos/gitonomy/gitlib/zipball/932a960221ae3484a3e82553b3be478e56beb68d",
  1188. "reference": "932a960221ae3484a3e82553b3be478e56beb68d",
  1189. "shasum": ""
  1190. },
  1191. "require": {
  1192. "php": "^5.3 || ^7.0",
  1193. "symfony/process": "^2.3|^3.0|^4.0"
  1194. },
  1195. "require-dev": {
  1196. "phpunit/phpunit": "^4.8.35|^5.7",
  1197. "psr/log": "^1.0"
  1198. },
  1199. "suggest": {
  1200. "psr/log": "Add some log"
  1201. },
  1202. "type": "library",
  1203. "extra": {
  1204. "branch-alias": {
  1205. "dev-master": "1.0-dev"
  1206. }
  1207. },
  1208. "autoload": {
  1209. "psr-4": {
  1210. "Gitonomy\\Git\\": "src/Gitonomy/Git/"
  1211. }
  1212. },
  1213. "notification-url": "https://packagist.org/downloads/",
  1214. "license": [
  1215. "MIT"
  1216. ],
  1217. "authors": [
  1218. {
  1219. "name": "Alexandre Salomé",
  1220. "email": "alexandre.salome@gmail.com",
  1221. "homepage": "http://alexandre-salome.fr"
  1222. },
  1223. {
  1224. "name": "Julien DIDIER",
  1225. "email": "genzo.wm@gmail.com",
  1226. "homepage": "http://www.jdidier.net"
  1227. }
  1228. ],
  1229. "description": "Library for accessing git",
  1230. "homepage": "http://gitonomy.com",
  1231. "time": "2018-04-22T19:55:36+00:00"
  1232. },
  1233. {
  1234. "name": "phpdocumentor/reflection-common",
  1235. "version": "1.0.1",
  1236. "source": {
  1237. "type": "git",
  1238. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1239. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  1240. },
  1241. "dist": {
  1242. "type": "zip",
  1243. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  1244. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  1245. "shasum": ""
  1246. },
  1247. "require": {
  1248. "php": ">=5.5"
  1249. },
  1250. "require-dev": {
  1251. "phpunit/phpunit": "^4.6"
  1252. },
  1253. "type": "library",
  1254. "extra": {
  1255. "branch-alias": {
  1256. "dev-master": "1.0.x-dev"
  1257. }
  1258. },
  1259. "autoload": {
  1260. "psr-4": {
  1261. "phpDocumentor\\Reflection\\": [
  1262. "src"
  1263. ]
  1264. }
  1265. },
  1266. "notification-url": "https://packagist.org/downloads/",
  1267. "license": [
  1268. "MIT"
  1269. ],
  1270. "authors": [
  1271. {
  1272. "name": "Jaap van Otterdijk",
  1273. "email": "opensource@ijaap.nl"
  1274. }
  1275. ],
  1276. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1277. "homepage": "http://www.phpdoc.org",
  1278. "keywords": [
  1279. "FQSEN",
  1280. "phpDocumentor",
  1281. "phpdoc",
  1282. "reflection",
  1283. "static analysis"
  1284. ],
  1285. "time": "2017-09-11T18:02:19+00:00"
  1286. },
  1287. {
  1288. "name": "phpdocumentor/reflection-docblock",
  1289. "version": "3.2.2",
  1290. "source": {
  1291. "type": "git",
  1292. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1293. "reference": "4aada1f93c72c35e22fb1383b47fee43b8f1d157"
  1294. },
  1295. "dist": {
  1296. "type": "zip",
  1297. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/4aada1f93c72c35e22fb1383b47fee43b8f1d157",
  1298. "reference": "4aada1f93c72c35e22fb1383b47fee43b8f1d157",
  1299. "shasum": ""
  1300. },
  1301. "require": {
  1302. "php": ">=5.5",
  1303. "phpdocumentor/reflection-common": "^1.0@dev",
  1304. "phpdocumentor/type-resolver": "^0.3.0",
  1305. "webmozart/assert": "^1.0"
  1306. },
  1307. "require-dev": {
  1308. "mockery/mockery": "^0.9.4",
  1309. "phpunit/phpunit": "^4.4"
  1310. },
  1311. "type": "library",
  1312. "autoload": {
  1313. "psr-4": {
  1314. "phpDocumentor\\Reflection\\": [
  1315. "src/"
  1316. ]
  1317. }
  1318. },
  1319. "notification-url": "https://packagist.org/downloads/",
  1320. "license": [
  1321. "MIT"
  1322. ],
  1323. "authors": [
  1324. {
  1325. "name": "Mike van Riel",
  1326. "email": "me@mikevanriel.com"
  1327. }
  1328. ],
  1329. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1330. "time": "2017-08-08T06:39:58+00:00"
  1331. },
  1332. {
  1333. "name": "phpdocumentor/type-resolver",
  1334. "version": "0.3.0",
  1335. "source": {
  1336. "type": "git",
  1337. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1338. "reference": "fb3933512008d8162b3cdf9e18dba9309b7c3773"
  1339. },
  1340. "dist": {
  1341. "type": "zip",
  1342. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/fb3933512008d8162b3cdf9e18dba9309b7c3773",
  1343. "reference": "fb3933512008d8162b3cdf9e18dba9309b7c3773",
  1344. "shasum": ""
  1345. },
  1346. "require": {
  1347. "php": "^5.5 || ^7.0",
  1348. "phpdocumentor/reflection-common": "^1.0"
  1349. },
  1350. "require-dev": {
  1351. "mockery/mockery": "^0.9.4",
  1352. "phpunit/phpunit": "^5.2||^4.8.24"
  1353. },
  1354. "type": "library",
  1355. "extra": {
  1356. "branch-alias": {
  1357. "dev-master": "1.0.x-dev"
  1358. }
  1359. },
  1360. "autoload": {
  1361. "psr-4": {
  1362. "phpDocumentor\\Reflection\\": [
  1363. "src/"
  1364. ]
  1365. }
  1366. },
  1367. "notification-url": "https://packagist.org/downloads/",
  1368. "license": [
  1369. "MIT"
  1370. ],
  1371. "authors": [
  1372. {
  1373. "name": "Mike van Riel",
  1374. "email": "me@mikevanriel.com"
  1375. }
  1376. ],
  1377. "time": "2017-06-03T08:32:36+00:00"
  1378. },
  1379. {
  1380. "name": "phpmyadmin/coding-standard",
  1381. "version": "0.3",
  1382. "source": {
  1383. "type": "git",
  1384. "url": "https://github.com/phpmyadmin/coding-standard.git",
  1385. "reference": "5ae123e27140a1e16be005432e26a8233524eaf5"
  1386. },
  1387. "dist": {
  1388. "type": "zip",
  1389. "url": "https://api.github.com/repos/phpmyadmin/coding-standard/zipball/5ae123e27140a1e16be005432e26a8233524eaf5",
  1390. "reference": "5ae123e27140a1e16be005432e26a8233524eaf5",
  1391. "shasum": ""
  1392. },
  1393. "require": {
  1394. "squizlabs/php_codesniffer": "^3.0"
  1395. },
  1396. "type": "phpcodesniffer-standard",
  1397. "notification-url": "https://packagist.org/downloads/",
  1398. "license": [
  1399. "MIT"
  1400. ],
  1401. "authors": [
  1402. {
  1403. "name": "The phpMyAdmin Team",
  1404. "email": "developers@phpmyadmin.net",
  1405. "homepage": "https://www.phpmyadmin.net/team/"
  1406. }
  1407. ],
  1408. "description": "phpMyAdmin PHP CodeSniffer Coding Standard",
  1409. "keywords": [
  1410. "codesniffer",
  1411. "phpcs",
  1412. "phpmyadmin"
  1413. ],
  1414. "time": "2017-09-28T09:13:00+00:00"
  1415. },
  1416. {
  1417. "name": "phpspec/prophecy",
  1418. "version": "1.8.0",
  1419. "source": {
  1420. "type": "git",
  1421. "url": "https://github.com/phpspec/prophecy.git",
  1422. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  1423. },
  1424. "dist": {
  1425. "type": "zip",
  1426. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  1427. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  1428. "shasum": ""
  1429. },
  1430. "require": {
  1431. "doctrine/instantiator": "^1.0.2",
  1432. "php": "^5.3|^7.0",
  1433. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  1434. "sebastian/comparator": "^1.1|^2.0|^3.0",
  1435. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  1436. },
  1437. "require-dev": {
  1438. "phpspec/phpspec": "^2.5|^3.2",
  1439. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  1440. },
  1441. "type": "library",
  1442. "extra": {
  1443. "branch-alias": {
  1444. "dev-master": "1.8.x-dev"
  1445. }
  1446. },
  1447. "autoload": {
  1448. "psr-0": {
  1449. "Prophecy\\": "src/"
  1450. }
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "Konstantin Kudryashov",
  1459. "email": "ever.zet@gmail.com",
  1460. "homepage": "http://everzet.com"
  1461. },
  1462. {
  1463. "name": "Marcello Duarte",
  1464. "email": "marcello.duarte@gmail.com"
  1465. }
  1466. ],
  1467. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1468. "homepage": "https://github.com/phpspec/prophecy",
  1469. "keywords": [
  1470. "Double",
  1471. "Dummy",
  1472. "fake",
  1473. "mock",
  1474. "spy",
  1475. "stub"
  1476. ],
  1477. "time": "2018-08-05T17:53:17+00:00"
  1478. },
  1479. {
  1480. "name": "phpunit/php-code-coverage",
  1481. "version": "2.2.4",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1485. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  1490. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  1491. "shasum": ""
  1492. },
  1493. "require": {
  1494. "php": ">=5.3.3",
  1495. "phpunit/php-file-iterator": "~1.3",
  1496. "phpunit/php-text-template": "~1.2",
  1497. "phpunit/php-token-stream": "~1.3",
  1498. "sebastian/environment": "^1.3.2",
  1499. "sebastian/version": "~1.0"
  1500. },
  1501. "require-dev": {
  1502. "ext-xdebug": ">=2.1.4",
  1503. "phpunit/phpunit": "~4"
  1504. },
  1505. "suggest": {
  1506. "ext-dom": "*",
  1507. "ext-xdebug": ">=2.2.1",
  1508. "ext-xmlwriter": "*"
  1509. },
  1510. "type": "library",
  1511. "extra": {
  1512. "branch-alias": {
  1513. "dev-master": "2.2.x-dev"
  1514. }
  1515. },
  1516. "autoload": {
  1517. "classmap": [
  1518. "src/"
  1519. ]
  1520. },
  1521. "notification-url": "https://packagist.org/downloads/",
  1522. "license": [
  1523. "BSD-3-Clause"
  1524. ],
  1525. "authors": [
  1526. {
  1527. "name": "Sebastian Bergmann",
  1528. "email": "sb@sebastian-bergmann.de",
  1529. "role": "lead"
  1530. }
  1531. ],
  1532. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1533. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1534. "keywords": [
  1535. "coverage",
  1536. "testing",
  1537. "xunit"
  1538. ],
  1539. "time": "2015-10-06T15:47:00+00:00"
  1540. },
  1541. {
  1542. "name": "phpunit/php-file-iterator",
  1543. "version": "1.4.5",
  1544. "source": {
  1545. "type": "git",
  1546. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1547. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  1548. },
  1549. "dist": {
  1550. "type": "zip",
  1551. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1552. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1553. "shasum": ""
  1554. },
  1555. "require": {
  1556. "php": ">=5.3.3"
  1557. },
  1558. "type": "library",
  1559. "extra": {
  1560. "branch-alias": {
  1561. "dev-master": "1.4.x-dev"
  1562. }
  1563. },
  1564. "autoload": {
  1565. "classmap": [
  1566. "src/"
  1567. ]
  1568. },
  1569. "notification-url": "https://packagist.org/downloads/",
  1570. "license": [
  1571. "BSD-3-Clause"
  1572. ],
  1573. "authors": [
  1574. {
  1575. "name": "Sebastian Bergmann",
  1576. "email": "sb@sebastian-bergmann.de",
  1577. "role": "lead"
  1578. }
  1579. ],
  1580. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1581. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1582. "keywords": [
  1583. "filesystem",
  1584. "iterator"
  1585. ],
  1586. "time": "2017-11-27T13:52:08+00:00"
  1587. },
  1588. {
  1589. "name": "phpunit/php-text-template",
  1590. "version": "1.2.1",
  1591. "source": {
  1592. "type": "git",
  1593. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1594. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1595. },
  1596. "dist": {
  1597. "type": "zip",
  1598. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1599. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1600. "shasum": ""
  1601. },
  1602. "require": {
  1603. "php": ">=5.3.3"
  1604. },
  1605. "type": "library",
  1606. "autoload": {
  1607. "classmap": [
  1608. "src/"
  1609. ]
  1610. },
  1611. "notification-url": "https://packagist.org/downloads/",
  1612. "license": [
  1613. "BSD-3-Clause"
  1614. ],
  1615. "authors": [
  1616. {
  1617. "name": "Sebastian Bergmann",
  1618. "email": "sebastian@phpunit.de",
  1619. "role": "lead"
  1620. }
  1621. ],
  1622. "description": "Simple template engine.",
  1623. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1624. "keywords": [
  1625. "template"
  1626. ],
  1627. "time": "2015-06-21T13:50:34+00:00"
  1628. },
  1629. {
  1630. "name": "phpunit/php-timer",
  1631. "version": "1.0.9",
  1632. "source": {
  1633. "type": "git",
  1634. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1635. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1636. },
  1637. "dist": {
  1638. "type": "zip",
  1639. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1640. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1641. "shasum": ""
  1642. },
  1643. "require": {
  1644. "php": "^5.3.3 || ^7.0"
  1645. },
  1646. "require-dev": {
  1647. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1648. },
  1649. "type": "library",
  1650. "extra": {
  1651. "branch-alias": {
  1652. "dev-master": "1.0-dev"
  1653. }
  1654. },
  1655. "autoload": {
  1656. "classmap": [
  1657. "src/"
  1658. ]
  1659. },
  1660. "notification-url": "https://packagist.org/downloads/",
  1661. "license": [
  1662. "BSD-3-Clause"
  1663. ],
  1664. "authors": [
  1665. {
  1666. "name": "Sebastian Bergmann",
  1667. "email": "sb@sebastian-bergmann.de",
  1668. "role": "lead"
  1669. }
  1670. ],
  1671. "description": "Utility class for timing",
  1672. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1673. "keywords": [
  1674. "timer"
  1675. ],
  1676. "time": "2017-02-26T11:10:40+00:00"
  1677. },
  1678. {
  1679. "name": "phpunit/php-token-stream",
  1680. "version": "1.4.12",
  1681. "source": {
  1682. "type": "git",
  1683. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1684. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  1685. },
  1686. "dist": {
  1687. "type": "zip",
  1688. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1689. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1690. "shasum": ""
  1691. },
  1692. "require": {
  1693. "ext-tokenizer": "*",
  1694. "php": ">=5.3.3"
  1695. },
  1696. "require-dev": {
  1697. "phpunit/phpunit": "~4.2"
  1698. },
  1699. "type": "library",
  1700. "extra": {
  1701. "branch-alias": {
  1702. "dev-master": "1.4-dev"
  1703. }
  1704. },
  1705. "autoload": {
  1706. "classmap": [
  1707. "src/"
  1708. ]
  1709. },
  1710. "notification-url": "https://packagist.org/downloads/",
  1711. "license": [
  1712. "BSD-3-Clause"
  1713. ],
  1714. "authors": [
  1715. {
  1716. "name": "Sebastian Bergmann",
  1717. "email": "sebastian@phpunit.de"
  1718. }
  1719. ],
  1720. "description": "Wrapper around PHP's tokenizer extension.",
  1721. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1722. "keywords": [
  1723. "tokenizer"
  1724. ],
  1725. "time": "2017-12-04T08:55:13+00:00"
  1726. },
  1727. {
  1728. "name": "phpunit/phpunit",
  1729. "version": "4.8.36",
  1730. "source": {
  1731. "type": "git",
  1732. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1733. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  1734. },
  1735. "dist": {
  1736. "type": "zip",
  1737. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  1738. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  1739. "shasum": ""
  1740. },
  1741. "require": {
  1742. "ext-dom": "*",
  1743. "ext-json": "*",
  1744. "ext-pcre": "*",
  1745. "ext-reflection": "*",
  1746. "ext-spl": "*",
  1747. "php": ">=5.3.3",
  1748. "phpspec/prophecy": "^1.3.1",
  1749. "phpunit/php-code-coverage": "~2.1",
  1750. "phpunit/php-file-iterator": "~1.4",
  1751. "phpunit/php-text-template": "~1.2",
  1752. "phpunit/php-timer": "^1.0.6",
  1753. "phpunit/phpunit-mock-objects": "~2.3",
  1754. "sebastian/comparator": "~1.2.2",
  1755. "sebastian/diff": "~1.2",
  1756. "sebastian/environment": "~1.3",
  1757. "sebastian/exporter": "~1.2",
  1758. "sebastian/global-state": "~1.0",
  1759. "sebastian/version": "~1.0",
  1760. "symfony/yaml": "~2.1|~3.0"
  1761. },
  1762. "suggest": {
  1763. "phpunit/php-invoker": "~1.1"
  1764. },
  1765. "bin": [
  1766. "phpunit"
  1767. ],
  1768. "type": "library",
  1769. "extra": {
  1770. "branch-alias": {
  1771. "dev-master": "4.8.x-dev"
  1772. }
  1773. },
  1774. "autoload": {
  1775. "classmap": [
  1776. "src/"
  1777. ]
  1778. },
  1779. "notification-url": "https://packagist.org/downloads/",
  1780. "license": [
  1781. "BSD-3-Clause"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "Sebastian Bergmann",
  1786. "email": "sebastian@phpunit.de",
  1787. "role": "lead"
  1788. }
  1789. ],
  1790. "description": "The PHP Unit Testing framework.",
  1791. "homepage": "https://phpunit.de/",
  1792. "keywords": [
  1793. "phpunit",
  1794. "testing",
  1795. "xunit"
  1796. ],
  1797. "time": "2017-06-21T08:07:12+00:00"
  1798. },
  1799. {
  1800. "name": "phpunit/phpunit-mock-objects",
  1801. "version": "2.3.8",
  1802. "source": {
  1803. "type": "git",
  1804. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1805. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  1806. },
  1807. "dist": {
  1808. "type": "zip",
  1809. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1810. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1811. "shasum": ""
  1812. },
  1813. "require": {
  1814. "doctrine/instantiator": "^1.0.2",
  1815. "php": ">=5.3.3",
  1816. "phpunit/php-text-template": "~1.2",
  1817. "sebastian/exporter": "~1.2"
  1818. },
  1819. "require-dev": {
  1820. "phpunit/phpunit": "~4.4"
  1821. },
  1822. "suggest": {
  1823. "ext-soap": "*"
  1824. },
  1825. "type": "library",
  1826. "extra": {
  1827. "branch-alias": {
  1828. "dev-master": "2.3.x-dev"
  1829. }
  1830. },
  1831. "autoload": {
  1832. "classmap": [
  1833. "src/"
  1834. ]
  1835. },
  1836. "notification-url": "https://packagist.org/downloads/",
  1837. "license": [
  1838. "BSD-3-Clause"
  1839. ],
  1840. "authors": [
  1841. {
  1842. "name": "Sebastian Bergmann",
  1843. "email": "sb@sebastian-bergmann.de",
  1844. "role": "lead"
  1845. }
  1846. ],
  1847. "description": "Mock Object library for PHPUnit",
  1848. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1849. "keywords": [
  1850. "mock",
  1851. "xunit"
  1852. ],
  1853. "time": "2015-10-02T06:51:40+00:00"
  1854. },
  1855. {
  1856. "name": "phpunit/phpunit-selenium",
  1857. "version": "1.4.2",
  1858. "source": {
  1859. "type": "git",
  1860. "url": "https://github.com/giorgiosironi/phpunit-selenium.git",
  1861. "reference": "c84dd7ca214563868ce216123b7ae9c792beb262"
  1862. },
  1863. "dist": {
  1864. "type": "zip",
  1865. "url": "https://api.github.com/repos/giorgiosironi/phpunit-selenium/zipball/c84dd7ca214563868ce216123b7ae9c792beb262",
  1866. "reference": "c84dd7ca214563868ce216123b7ae9c792beb262",
  1867. "shasum": ""
  1868. },
  1869. "require": {
  1870. "ext-curl": "*",
  1871. "ext-dom": "*",
  1872. "php": ">=5.3.3",
  1873. "phpunit/phpunit": "~3.7|~4.0",
  1874. "sebastian/comparator": "~1.0"
  1875. },
  1876. "type": "library",
  1877. "autoload": {
  1878. "classmap": [
  1879. "PHPUnit/"
  1880. ]
  1881. },
  1882. "notification-url": "https://packagist.org/downloads/",
  1883. "include-path": [
  1884. ""
  1885. ],
  1886. "license": [
  1887. "BSD-3-Clause"
  1888. ],
  1889. "authors": [
  1890. {
  1891. "name": "Sebastian Bergmann",
  1892. "email": "sb@sebastian-bergmann.de",
  1893. "role": "lead"
  1894. },
  1895. {
  1896. "name": "Giorgio Sironi",
  1897. "email": "info@giorgiosironi.com",
  1898. "role": "developer"
  1899. }
  1900. ],
  1901. "description": "Selenium Server integration for PHPUnit",
  1902. "homepage": "http://www.phpunit.de/",
  1903. "keywords": [
  1904. "selenium",
  1905. "testing",
  1906. "xunit"
  1907. ],
  1908. "time": "2014-11-02T09:23:27+00:00"
  1909. },
  1910. {
  1911. "name": "psr/log",
  1912. "version": "1.1.0",
  1913. "source": {
  1914. "type": "git",
  1915. "url": "https://github.com/php-fig/log.git",
  1916. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  1917. },
  1918. "dist": {
  1919. "type": "zip",
  1920. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1921. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1922. "shasum": ""
  1923. },
  1924. "require": {
  1925. "php": ">=5.3.0"
  1926. },
  1927. "type": "library",
  1928. "extra": {
  1929. "branch-alias": {
  1930. "dev-master": "1.0.x-dev"
  1931. }
  1932. },
  1933. "autoload": {
  1934. "psr-4": {
  1935. "Psr\\Log\\": "Psr/Log/"
  1936. }
  1937. },
  1938. "notification-url": "https://packagist.org/downloads/",
  1939. "license": [
  1940. "MIT"
  1941. ],
  1942. "authors": [
  1943. {
  1944. "name": "PHP-FIG",
  1945. "homepage": "http://www.php-fig.org/"
  1946. }
  1947. ],
  1948. "description": "Common interface for logging libraries",
  1949. "homepage": "https://github.com/php-fig/log",
  1950. "keywords": [
  1951. "log",
  1952. "psr",
  1953. "psr-3"
  1954. ],
  1955. "time": "2018-11-20T15:27:04+00:00"
  1956. },
  1957. {
  1958. "name": "sebastian/comparator",
  1959. "version": "1.2.4",
  1960. "source": {
  1961. "type": "git",
  1962. "url": "https://github.com/sebastianbergmann/comparator.git",
  1963. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  1964. },
  1965. "dist": {
  1966. "type": "zip",
  1967. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1968. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1969. "shasum": ""
  1970. },
  1971. "require": {
  1972. "php": ">=5.3.3",
  1973. "sebastian/diff": "~1.2",
  1974. "sebastian/exporter": "~1.2 || ~2.0"
  1975. },
  1976. "require-dev": {
  1977. "phpunit/phpunit": "~4.4"
  1978. },
  1979. "type": "library",
  1980. "extra": {
  1981. "branch-alias": {
  1982. "dev-master": "1.2.x-dev"
  1983. }
  1984. },
  1985. "autoload": {
  1986. "classmap": [
  1987. "src/"
  1988. ]
  1989. },
  1990. "notification-url": "https://packagist.org/downloads/",
  1991. "license": [
  1992. "BSD-3-Clause"
  1993. ],
  1994. "authors": [
  1995. {
  1996. "name": "Jeff Welch",
  1997. "email": "whatthejeff@gmail.com"
  1998. },
  1999. {
  2000. "name": "Volker Dusch",
  2001. "email": "github@wallbash.com"
  2002. },
  2003. {
  2004. "name": "Bernhard Schussek",
  2005. "email": "bschussek@2bepublished.at"
  2006. },
  2007. {
  2008. "name": "Sebastian Bergmann",
  2009. "email": "sebastian@phpunit.de"
  2010. }
  2011. ],
  2012. "description": "Provides the functionality to compare PHP values for equality",
  2013. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  2014. "keywords": [
  2015. "comparator",
  2016. "compare",
  2017. "equality"
  2018. ],
  2019. "time": "2017-01-29T09:50:25+00:00"
  2020. },
  2021. {
  2022. "name": "sebastian/diff",
  2023. "version": "1.4.3",
  2024. "source": {
  2025. "type": "git",
  2026. "url": "https://github.com/sebastianbergmann/diff.git",
  2027. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  2028. },
  2029. "dist": {
  2030. "type": "zip",
  2031. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  2032. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  2033. "shasum": ""
  2034. },
  2035. "require": {
  2036. "php": "^5.3.3 || ^7.0"
  2037. },
  2038. "require-dev": {
  2039. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2040. },
  2041. "type": "library",
  2042. "extra": {
  2043. "branch-alias": {
  2044. "dev-master": "1.4-dev"
  2045. }
  2046. },
  2047. "autoload": {
  2048. "classmap": [
  2049. "src/"
  2050. ]
  2051. },
  2052. "notification-url": "https://packagist.org/downloads/",
  2053. "license": [
  2054. "BSD-3-Clause"
  2055. ],
  2056. "authors": [
  2057. {
  2058. "name": "Kore Nordmann",
  2059. "email": "mail@kore-nordmann.de"
  2060. },
  2061. {
  2062. "name": "Sebastian Bergmann",
  2063. "email": "sebastian@phpunit.de"
  2064. }
  2065. ],
  2066. "description": "Diff implementation",
  2067. "homepage": "https://github.com/sebastianbergmann/diff",
  2068. "keywords": [
  2069. "diff"
  2070. ],
  2071. "time": "2017-05-22T07:24:03+00:00"
  2072. },
  2073. {
  2074. "name": "sebastian/environment",
  2075. "version": "1.3.8",
  2076. "source": {
  2077. "type": "git",
  2078. "url": "https://github.com/sebastianbergmann/environment.git",
  2079. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  2080. },
  2081. "dist": {
  2082. "type": "zip",
  2083. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  2084. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  2085. "shasum": ""
  2086. },
  2087. "require": {
  2088. "php": "^5.3.3 || ^7.0"
  2089. },
  2090. "require-dev": {
  2091. "phpunit/phpunit": "^4.8 || ^5.0"
  2092. },
  2093. "type": "library",
  2094. "extra": {
  2095. "branch-alias": {
  2096. "dev-master": "1.3.x-dev"
  2097. }
  2098. },
  2099. "autoload": {
  2100. "classmap": [
  2101. "src/"
  2102. ]
  2103. },
  2104. "notification-url": "https://packagist.org/downloads/",
  2105. "license": [
  2106. "BSD-3-Clause"
  2107. ],
  2108. "authors": [
  2109. {
  2110. "name": "Sebastian Bergmann",
  2111. "email": "sebastian@phpunit.de"
  2112. }
  2113. ],
  2114. "description": "Provides functionality to handle HHVM/PHP environments",
  2115. "homepage": "http://www.github.com/sebastianbergmann/environment",
  2116. "keywords": [
  2117. "Xdebug",
  2118. "environment",
  2119. "hhvm"
  2120. ],
  2121. "time": "2016-08-18T05:49:44+00:00"
  2122. },
  2123. {
  2124. "name": "sebastian/exporter",
  2125. "version": "1.2.2",
  2126. "source": {
  2127. "type": "git",
  2128. "url": "https://github.com/sebastianbergmann/exporter.git",
  2129. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  2130. },
  2131. "dist": {
  2132. "type": "zip",
  2133. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  2134. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  2135. "shasum": ""
  2136. },
  2137. "require": {
  2138. "php": ">=5.3.3",
  2139. "sebastian/recursion-context": "~1.0"
  2140. },
  2141. "require-dev": {
  2142. "ext-mbstring": "*",
  2143. "phpunit/phpunit": "~4.4"
  2144. },
  2145. "type": "library",
  2146. "extra": {
  2147. "branch-alias": {
  2148. "dev-master": "1.3.x-dev"
  2149. }
  2150. },
  2151. "autoload": {
  2152. "classmap": [
  2153. "src/"
  2154. ]
  2155. },
  2156. "notification-url": "https://packagist.org/downloads/",
  2157. "license": [
  2158. "BSD-3-Clause"
  2159. ],
  2160. "authors": [
  2161. {
  2162. "name": "Jeff Welch",
  2163. "email": "whatthejeff@gmail.com"
  2164. },
  2165. {
  2166. "name": "Volker Dusch",
  2167. "email": "github@wallbash.com"
  2168. },
  2169. {
  2170. "name": "Bernhard Schussek",
  2171. "email": "bschussek@2bepublished.at"
  2172. },
  2173. {
  2174. "name": "Sebastian Bergmann",
  2175. "email": "sebastian@phpunit.de"
  2176. },
  2177. {
  2178. "name": "Adam Harvey",
  2179. "email": "aharvey@php.net"
  2180. }
  2181. ],
  2182. "description": "Provides the functionality to export PHP variables for visualization",
  2183. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  2184. "keywords": [
  2185. "export",
  2186. "exporter"
  2187. ],
  2188. "time": "2016-06-17T09:04:28+00:00"
  2189. },
  2190. {
  2191. "name": "sebastian/global-state",
  2192. "version": "1.1.1",
  2193. "source": {
  2194. "type": "git",
  2195. "url": "https://github.com/sebastianbergmann/global-state.git",
  2196. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  2197. },
  2198. "dist": {
  2199. "type": "zip",
  2200. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  2201. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  2202. "shasum": ""
  2203. },
  2204. "require": {
  2205. "php": ">=5.3.3"
  2206. },
  2207. "require-dev": {
  2208. "phpunit/phpunit": "~4.2"
  2209. },
  2210. "suggest": {
  2211. "ext-uopz": "*"
  2212. },
  2213. "type": "library",
  2214. "extra": {
  2215. "branch-alias": {
  2216. "dev-master": "1.0-dev"
  2217. }
  2218. },
  2219. "autoload": {
  2220. "classmap": [
  2221. "src/"
  2222. ]
  2223. },
  2224. "notification-url": "https://packagist.org/downloads/",
  2225. "license": [
  2226. "BSD-3-Clause"
  2227. ],
  2228. "authors": [
  2229. {
  2230. "name": "Sebastian Bergmann",
  2231. "email": "sebastian@phpunit.de"
  2232. }
  2233. ],
  2234. "description": "Snapshotting of global state",
  2235. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2236. "keywords": [
  2237. "global state"
  2238. ],
  2239. "time": "2015-10-12T03:26:01+00:00"
  2240. },
  2241. {
  2242. "name": "sebastian/recursion-context",
  2243. "version": "1.0.5",
  2244. "source": {
  2245. "type": "git",
  2246. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2247. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  2248. },
  2249. "dist": {
  2250. "type": "zip",
  2251. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  2252. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  2253. "shasum": ""
  2254. },
  2255. "require": {
  2256. "php": ">=5.3.3"
  2257. },
  2258. "require-dev": {
  2259. "phpunit/phpunit": "~4.4"
  2260. },
  2261. "type": "library",
  2262. "extra": {
  2263. "branch-alias": {
  2264. "dev-master": "1.0.x-dev"
  2265. }
  2266. },
  2267. "autoload": {
  2268. "classmap": [
  2269. "src/"
  2270. ]
  2271. },
  2272. "notification-url": "https://packagist.org/downloads/",
  2273. "license": [
  2274. "BSD-3-Clause"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "Jeff Welch",
  2279. "email": "whatthejeff@gmail.com"
  2280. },
  2281. {
  2282. "name": "Sebastian Bergmann",
  2283. "email": "sebastian@phpunit.de"
  2284. },
  2285. {
  2286. "name": "Adam Harvey",
  2287. "email": "aharvey@php.net"
  2288. }
  2289. ],
  2290. "description": "Provides functionality to recursively process PHP variables",
  2291. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2292. "time": "2016-10-03T07:41:43+00:00"
  2293. },
  2294. {
  2295. "name": "sebastian/version",
  2296. "version": "1.0.6",
  2297. "source": {
  2298. "type": "git",
  2299. "url": "https://github.com/sebastianbergmann/version.git",
  2300. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  2301. },
  2302. "dist": {
  2303. "type": "zip",
  2304. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  2305. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  2306. "shasum": ""
  2307. },
  2308. "type": "library",
  2309. "autoload": {
  2310. "classmap": [
  2311. "src/"
  2312. ]
  2313. },
  2314. "notification-url": "https://packagist.org/downloads/",
  2315. "license": [
  2316. "BSD-3-Clause"
  2317. ],
  2318. "authors": [
  2319. {
  2320. "name": "Sebastian Bergmann",
  2321. "email": "sebastian@phpunit.de",
  2322. "role": "lead"
  2323. }
  2324. ],
  2325. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2326. "homepage": "https://github.com/sebastianbergmann/version",
  2327. "time": "2015-06-21T13:59:46+00:00"
  2328. },
  2329. {
  2330. "name": "squizlabs/php_codesniffer",
  2331. "version": "3.4.0",
  2332. "source": {
  2333. "type": "git",
  2334. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  2335. "reference": "379deb987e26c7cd103a7b387aea178baec96e48"
  2336. },
  2337. "dist": {
  2338. "type": "zip",
  2339. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/379deb987e26c7cd103a7b387aea178baec96e48",
  2340. "reference": "379deb987e26c7cd103a7b387aea178baec96e48",
  2341. "shasum": ""
  2342. },
  2343. "require": {
  2344. "ext-simplexml": "*",
  2345. "ext-tokenizer": "*",
  2346. "ext-xmlwriter": "*",
  2347. "php": ">=5.4.0"
  2348. },
  2349. "require-dev": {
  2350. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2351. },
  2352. "bin": [
  2353. "bin/phpcs",
  2354. "bin/phpcbf"
  2355. ],
  2356. "type": "library",
  2357. "extra": {
  2358. "branch-alias": {
  2359. "dev-master": "3.x-dev"
  2360. }
  2361. },
  2362. "notification-url": "https://packagist.org/downloads/",
  2363. "license": [
  2364. "BSD-3-Clause"
  2365. ],
  2366. "authors": [
  2367. {
  2368. "name": "Greg Sherwood",
  2369. "role": "lead"
  2370. }
  2371. ],
  2372. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  2373. "homepage": "http://www.squizlabs.com/php-codesniffer",
  2374. "keywords": [
  2375. "phpcs",
  2376. "standards"
  2377. ],
  2378. "time": "2018-12-19T23:57:18+00:00"
  2379. },
  2380. {
  2381. "name": "symfony/console",
  2382. "version": "v2.8.49",
  2383. "source": {
  2384. "type": "git",
  2385. "url": "https://github.com/symfony/console.git",
  2386. "reference": "cbcf4b5e233af15cd2bbd50dee1ccc9b7927dc12"
  2387. },
  2388. "dist": {
  2389. "type": "zip",
  2390. "url": "https://api.github.com/repos/symfony/console/zipball/cbcf4b5e233af15cd2bbd50dee1ccc9b7927dc12",
  2391. "reference": "cbcf4b5e233af15cd2bbd50dee1ccc9b7927dc12",
  2392. "shasum": ""
  2393. },
  2394. "require": {
  2395. "php": ">=5.3.9",
  2396. "symfony/debug": "^2.7.2|~3.0.0",
  2397. "symfony/polyfill-mbstring": "~1.0"
  2398. },
  2399. "require-dev": {
  2400. "psr/log": "~1.0",
  2401. "symfony/event-dispatcher": "~2.1|~3.0.0",
  2402. "symfony/process": "~2.1|~3.0.0"
  2403. },
  2404. "suggest": {
  2405. "psr/log-implementation": "For using the console logger",
  2406. "symfony/event-dispatcher": "",
  2407. "symfony/process": ""
  2408. },
  2409. "type": "library",
  2410. "extra": {
  2411. "branch-alias": {
  2412. "dev-master": "2.8-dev"
  2413. }
  2414. },
  2415. "autoload": {
  2416. "psr-4": {
  2417. "Symfony\\Component\\Console\\": ""
  2418. },
  2419. "exclude-from-classmap": [
  2420. "/Tests/"
  2421. ]
  2422. },
  2423. "notification-url": "https://packagist.org/downloads/",
  2424. "license": [
  2425. "MIT"
  2426. ],
  2427. "authors": [
  2428. {
  2429. "name": "Fabien Potencier",
  2430. "email": "fabien@symfony.com"
  2431. },
  2432. {
  2433. "name": "Symfony Community",
  2434. "homepage": "https://symfony.com/contributors"
  2435. }
  2436. ],
  2437. "description": "Symfony Console Component",
  2438. "homepage": "https://symfony.com",
  2439. "time": "2018-11-20T15:55:20+00:00"
  2440. },
  2441. {
  2442. "name": "symfony/debug",
  2443. "version": "v2.8.49",
  2444. "source": {
  2445. "type": "git",
  2446. "url": "https://github.com/symfony/debug.git",
  2447. "reference": "74251c8d50dd3be7c4ce0c7b862497cdc641a5d0"
  2448. },
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://api.github.com/repos/symfony/debug/zipball/74251c8d50dd3be7c4ce0c7b862497cdc641a5d0",
  2452. "reference": "74251c8d50dd3be7c4ce0c7b862497cdc641a5d0",
  2453. "shasum": ""
  2454. },
  2455. "require": {
  2456. "php": ">=5.3.9",
  2457. "psr/log": "~1.0"
  2458. },
  2459. "conflict": {
  2460. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2461. },
  2462. "require-dev": {
  2463. "symfony/class-loader": "~2.2|~3.0.0",
  2464. "symfony/http-kernel": "~2.3.24|~2.5.9|^2.6.2|~3.0.0"
  2465. },
  2466. "type": "library",
  2467. "extra": {
  2468. "branch-alias": {
  2469. "dev-master": "2.8-dev"
  2470. }
  2471. },
  2472. "autoload": {
  2473. "psr-4": {
  2474. "Symfony\\Component\\Debug\\": ""
  2475. },
  2476. "exclude-from-classmap": [
  2477. "/Tests/"
  2478. ]
  2479. },
  2480. "notification-url": "https://packagist.org/downloads/",
  2481. "license": [
  2482. "MIT"
  2483. ],
  2484. "authors": [
  2485. {
  2486. "name": "Fabien Potencier",
  2487. "email": "fabien@symfony.com"
  2488. },
  2489. {
  2490. "name": "Symfony Community",
  2491. "homepage": "https://symfony.com/contributors"
  2492. }
  2493. ],
  2494. "description": "Symfony Debug Component",
  2495. "homepage": "https://symfony.com",
  2496. "time": "2018-11-11T11:18:13+00:00"
  2497. },
  2498. {
  2499. "name": "symfony/process",
  2500. "version": "v2.8.49",
  2501. "source": {
  2502. "type": "git",
  2503. "url": "https://github.com/symfony/process.git",
  2504. "reference": "c3591a09c78639822b0b290d44edb69bf9f05dc8"
  2505. },
  2506. "dist": {
  2507. "type": "zip",
  2508. "url": "https://api.github.com/repos/symfony/process/zipball/c3591a09c78639822b0b290d44edb69bf9f05dc8",
  2509. "reference": "c3591a09c78639822b0b290d44edb69bf9f05dc8",
  2510. "shasum": ""
  2511. },
  2512. "require": {
  2513. "php": ">=5.3.9"
  2514. },
  2515. "type": "library",
  2516. "extra": {
  2517. "branch-alias": {
  2518. "dev-master": "2.8-dev"
  2519. }
  2520. },
  2521. "autoload": {
  2522. "psr-4": {
  2523. "Symfony\\Component\\Process\\": ""
  2524. },
  2525. "exclude-from-classmap": [
  2526. "/Tests/"
  2527. ]
  2528. },
  2529. "notification-url": "https://packagist.org/downloads/",
  2530. "license": [
  2531. "MIT"
  2532. ],
  2533. "authors": [
  2534. {
  2535. "name": "Fabien Potencier",
  2536. "email": "fabien@symfony.com"
  2537. },
  2538. {
  2539. "name": "Symfony Community",
  2540. "homepage": "https://symfony.com/contributors"
  2541. }
  2542. ],
  2543. "description": "Symfony Process Component",
  2544. "homepage": "https://symfony.com",
  2545. "time": "2018-11-11T11:18:13+00:00"
  2546. },
  2547. {
  2548. "name": "symfony/yaml",
  2549. "version": "v2.8.49",
  2550. "source": {
  2551. "type": "git",
  2552. "url": "https://github.com/symfony/yaml.git",
  2553. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  2554. },
  2555. "dist": {
  2556. "type": "zip",
  2557. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  2558. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  2559. "shasum": ""
  2560. },
  2561. "require": {
  2562. "php": ">=5.3.9",
  2563. "symfony/polyfill-ctype": "~1.8"
  2564. },
  2565. "type": "library",
  2566. "extra": {
  2567. "branch-alias": {
  2568. "dev-master": "2.8-dev"
  2569. }
  2570. },
  2571. "autoload": {
  2572. "psr-4": {
  2573. "Symfony\\Component\\Yaml\\": ""
  2574. },
  2575. "exclude-from-classmap": [
  2576. "/Tests/"
  2577. ]
  2578. },
  2579. "notification-url": "https://packagist.org/downloads/",
  2580. "license": [
  2581. "MIT"
  2582. ],
  2583. "authors": [
  2584. {
  2585. "name": "Fabien Potencier",
  2586. "email": "fabien@symfony.com"
  2587. },
  2588. {
  2589. "name": "Symfony Community",
  2590. "homepage": "https://symfony.com/contributors"
  2591. }
  2592. ],
  2593. "description": "Symfony Yaml Component",
  2594. "homepage": "https://symfony.com",
  2595. "time": "2018-11-11T11:18:13+00:00"
  2596. },
  2597. {
  2598. "name": "webmozart/assert",
  2599. "version": "1.4.0",
  2600. "source": {
  2601. "type": "git",
  2602. "url": "https://github.com/webmozart/assert.git",
  2603. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  2604. },
  2605. "dist": {
  2606. "type": "zip",
  2607. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  2608. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  2609. "shasum": ""
  2610. },
  2611. "require": {
  2612. "php": "^5.3.3 || ^7.0",
  2613. "symfony/polyfill-ctype": "^1.8"
  2614. },
  2615. "require-dev": {
  2616. "phpunit/phpunit": "^4.6",
  2617. "sebastian/version": "^1.0.1"
  2618. },
  2619. "type": "library",
  2620. "extra": {
  2621. "branch-alias": {
  2622. "dev-master": "1.3-dev"
  2623. }
  2624. },
  2625. "autoload": {
  2626. "psr-4": {
  2627. "Webmozart\\Assert\\": "src/"
  2628. }
  2629. },
  2630. "notification-url": "https://packagist.org/downloads/",
  2631. "license": [
  2632. "MIT"
  2633. ],
  2634. "authors": [
  2635. {
  2636. "name": "Bernhard Schussek",
  2637. "email": "bschussek@gmail.com"
  2638. }
  2639. ],
  2640. "description": "Assertions to validate method input/output with nice error messages.",
  2641. "keywords": [
  2642. "assert",
  2643. "check",
  2644. "validate"
  2645. ],
  2646. "time": "2018-12-25T11:19:39+00:00"
  2647. }
  2648. ],
  2649. "aliases": [],
  2650. "minimum-stability": "stable",
  2651. "stability-flags": [],
  2652. "prefer-stable": false,
  2653. "prefer-lowest": false,
  2654. "platform": {
  2655. "php": ">=5.5.0",
  2656. "ext-mysqli": "*",
  2657. "ext-xml": "*",
  2658. "ext-pcre": "*",
  2659. "ext-json": "*",
  2660. "ext-ctype": "*",
  2661. "ext-hash": "*"
  2662. },
  2663. "platform-dev": [],
  2664. "platform-overrides": {
  2665. "php": "5.5"
  2666. }
  2667. }