installed.json 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863
  1. [
  2. {
  3. "name": "doctrine/annotations",
  4. "version": "v1.6.0",
  5. "version_normalized": "1.6.0.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/doctrine/annotations.git",
  9. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  14. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  15. "shasum": ""
  16. },
  17. "require": {
  18. "doctrine/lexer": "1.*",
  19. "php": "^7.1"
  20. },
  21. "require-dev": {
  22. "doctrine/cache": "1.*",
  23. "phpunit/phpunit": "^6.4"
  24. },
  25. "time": "2017-12-06T07:11:42+00:00",
  26. "type": "library",
  27. "extra": {
  28. "branch-alias": {
  29. "dev-master": "1.6.x-dev"
  30. }
  31. },
  32. "installation-source": "dist",
  33. "autoload": {
  34. "psr-4": {
  35. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Roman Borschel",
  45. "email": "roman@code-factory.org"
  46. },
  47. {
  48. "name": "Benjamin Eberlei",
  49. "email": "kontakt@beberlei.de"
  50. },
  51. {
  52. "name": "Guilherme Blanco",
  53. "email": "guilhermeblanco@gmail.com"
  54. },
  55. {
  56. "name": "Jonathan Wage",
  57. "email": "jonwage@gmail.com"
  58. },
  59. {
  60. "name": "Johannes Schmitt",
  61. "email": "schmittjoh@gmail.com"
  62. }
  63. ],
  64. "description": "Docblock Annotations Parser",
  65. "homepage": "http://www.doctrine-project.org",
  66. "keywords": [
  67. "annotations",
  68. "docblock",
  69. "parser"
  70. ]
  71. },
  72. {
  73. "name": "doctrine/instantiator",
  74. "version": "1.1.0",
  75. "version_normalized": "1.1.0.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/doctrine/instantiator.git",
  79. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  84. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": "^7.1"
  89. },
  90. "require-dev": {
  91. "athletic/athletic": "~0.1.8",
  92. "ext-pdo": "*",
  93. "ext-phar": "*",
  94. "phpunit/phpunit": "^6.2.3",
  95. "squizlabs/php_codesniffer": "^3.0.2"
  96. },
  97. "time": "2017-07-22T11:58:36+00:00",
  98. "type": "library",
  99. "extra": {
  100. "branch-alias": {
  101. "dev-master": "1.2.x-dev"
  102. }
  103. },
  104. "installation-source": "dist",
  105. "autoload": {
  106. "psr-4": {
  107. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  108. }
  109. },
  110. "notification-url": "https://packagist.org/downloads/",
  111. "license": [
  112. "MIT"
  113. ],
  114. "authors": [
  115. {
  116. "name": "Marco Pivetta",
  117. "email": "ocramius@gmail.com",
  118. "homepage": "http://ocramius.github.com/"
  119. }
  120. ],
  121. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  122. "homepage": "https://github.com/doctrine/instantiator",
  123. "keywords": [
  124. "constructor",
  125. "instantiate"
  126. ]
  127. },
  128. {
  129. "name": "doctrine/lexer",
  130. "version": "v1.0.1",
  131. "version_normalized": "1.0.1.0",
  132. "source": {
  133. "type": "git",
  134. "url": "https://github.com/doctrine/lexer.git",
  135. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  136. },
  137. "dist": {
  138. "type": "zip",
  139. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  140. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  141. "shasum": ""
  142. },
  143. "require": {
  144. "php": ">=5.3.2"
  145. },
  146. "time": "2014-09-09T13:34:57+00:00",
  147. "type": "library",
  148. "extra": {
  149. "branch-alias": {
  150. "dev-master": "1.0.x-dev"
  151. }
  152. },
  153. "installation-source": "dist",
  154. "autoload": {
  155. "psr-0": {
  156. "Doctrine\\Common\\Lexer\\": "lib/"
  157. }
  158. },
  159. "notification-url": "https://packagist.org/downloads/",
  160. "license": [
  161. "MIT"
  162. ],
  163. "authors": [
  164. {
  165. "name": "Roman Borschel",
  166. "email": "roman@code-factory.org"
  167. },
  168. {
  169. "name": "Guilherme Blanco",
  170. "email": "guilhermeblanco@gmail.com"
  171. },
  172. {
  173. "name": "Johannes Schmitt",
  174. "email": "schmittjoh@gmail.com"
  175. }
  176. ],
  177. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  178. "homepage": "http://www.doctrine-project.org",
  179. "keywords": [
  180. "lexer",
  181. "parser"
  182. ]
  183. },
  184. {
  185. "name": "eleirbag89/telegrambotphp",
  186. "version": "1.3.8",
  187. "version_normalized": "1.3.8.0",
  188. "source": {
  189. "type": "git",
  190. "url": "https://github.com/Eleirbag89/TelegramBotPHP.git",
  191. "reference": "aec5bc4f5873595d1b4f03fd0d955549ba4cfab3"
  192. },
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://api.github.com/repos/Eleirbag89/TelegramBotPHP/zipball/aec5bc4f5873595d1b4f03fd0d955549ba4cfab3",
  196. "reference": "aec5bc4f5873595d1b4f03fd0d955549ba4cfab3",
  197. "shasum": ""
  198. },
  199. "require": {
  200. "php": ">=5.0"
  201. },
  202. "time": "2017-12-27T13:46:04+00:00",
  203. "type": "library",
  204. "installation-source": "dist",
  205. "autoload": {
  206. "files": [
  207. "Telegram.php",
  208. "TelegramErrorLogger.php"
  209. ]
  210. },
  211. "notification-url": "https://packagist.org/downloads/",
  212. "license": [
  213. "MIT"
  214. ],
  215. "authors": [
  216. {
  217. "name": "Gabriele Grillo",
  218. "email": "gabry.grillo@alice.it"
  219. }
  220. ],
  221. "description": "A very simple PHP Telegram Bot API"
  222. },
  223. {
  224. "name": "myclabs/deep-copy",
  225. "version": "1.7.0",
  226. "version_normalized": "1.7.0.0",
  227. "source": {
  228. "type": "git",
  229. "url": "https://github.com/myclabs/DeepCopy.git",
  230. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  231. },
  232. "dist": {
  233. "type": "zip",
  234. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  235. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  236. "shasum": ""
  237. },
  238. "require": {
  239. "php": "^5.6 || ^7.0"
  240. },
  241. "require-dev": {
  242. "doctrine/collections": "^1.0",
  243. "doctrine/common": "^2.6",
  244. "phpunit/phpunit": "^4.1"
  245. },
  246. "time": "2017-10-19T19:58:43+00:00",
  247. "type": "library",
  248. "installation-source": "dist",
  249. "autoload": {
  250. "psr-4": {
  251. "DeepCopy\\": "src/DeepCopy/"
  252. },
  253. "files": [
  254. "src/DeepCopy/deep_copy.php"
  255. ]
  256. },
  257. "notification-url": "https://packagist.org/downloads/",
  258. "license": [
  259. "MIT"
  260. ],
  261. "description": "Create deep copies (clones) of your objects",
  262. "keywords": [
  263. "clone",
  264. "copy",
  265. "duplicate",
  266. "object",
  267. "object graph"
  268. ]
  269. },
  270. {
  271. "name": "phar-io/manifest",
  272. "version": "1.0.1",
  273. "version_normalized": "1.0.1.0",
  274. "source": {
  275. "type": "git",
  276. "url": "https://github.com/phar-io/manifest.git",
  277. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  278. },
  279. "dist": {
  280. "type": "zip",
  281. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  282. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  283. "shasum": ""
  284. },
  285. "require": {
  286. "ext-dom": "*",
  287. "ext-phar": "*",
  288. "phar-io/version": "^1.0.1",
  289. "php": "^5.6 || ^7.0"
  290. },
  291. "time": "2017-03-05T18:14:27+00:00",
  292. "type": "library",
  293. "extra": {
  294. "branch-alias": {
  295. "dev-master": "1.0.x-dev"
  296. }
  297. },
  298. "installation-source": "dist",
  299. "autoload": {
  300. "classmap": [
  301. "src/"
  302. ]
  303. },
  304. "notification-url": "https://packagist.org/downloads/",
  305. "license": [
  306. "BSD-3-Clause"
  307. ],
  308. "authors": [
  309. {
  310. "name": "Arne Blankerts",
  311. "email": "arne@blankerts.de",
  312. "role": "Developer"
  313. },
  314. {
  315. "name": "Sebastian Heuer",
  316. "email": "sebastian@phpeople.de",
  317. "role": "Developer"
  318. },
  319. {
  320. "name": "Sebastian Bergmann",
  321. "email": "sebastian@phpunit.de",
  322. "role": "Developer"
  323. }
  324. ],
  325. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)"
  326. },
  327. {
  328. "name": "phar-io/version",
  329. "version": "1.0.1",
  330. "version_normalized": "1.0.1.0",
  331. "source": {
  332. "type": "git",
  333. "url": "https://github.com/phar-io/version.git",
  334. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  335. },
  336. "dist": {
  337. "type": "zip",
  338. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  339. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  340. "shasum": ""
  341. },
  342. "require": {
  343. "php": "^5.6 || ^7.0"
  344. },
  345. "time": "2017-03-05T17:38:23+00:00",
  346. "type": "library",
  347. "installation-source": "dist",
  348. "autoload": {
  349. "classmap": [
  350. "src/"
  351. ]
  352. },
  353. "notification-url": "https://packagist.org/downloads/",
  354. "license": [
  355. "BSD-3-Clause"
  356. ],
  357. "authors": [
  358. {
  359. "name": "Arne Blankerts",
  360. "email": "arne@blankerts.de",
  361. "role": "Developer"
  362. },
  363. {
  364. "name": "Sebastian Heuer",
  365. "email": "sebastian@phpeople.de",
  366. "role": "Developer"
  367. },
  368. {
  369. "name": "Sebastian Bergmann",
  370. "email": "sebastian@phpunit.de",
  371. "role": "Developer"
  372. }
  373. ],
  374. "description": "Library for handling version information and constraints"
  375. },
  376. {
  377. "name": "phpdocumentor/reflection-common",
  378. "version": "1.0.1",
  379. "version_normalized": "1.0.1.0",
  380. "source": {
  381. "type": "git",
  382. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  383. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  384. },
  385. "dist": {
  386. "type": "zip",
  387. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  388. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  389. "shasum": ""
  390. },
  391. "require": {
  392. "php": ">=5.5"
  393. },
  394. "require-dev": {
  395. "phpunit/phpunit": "^4.6"
  396. },
  397. "time": "2017-09-11T18:02:19+00:00",
  398. "type": "library",
  399. "extra": {
  400. "branch-alias": {
  401. "dev-master": "1.0.x-dev"
  402. }
  403. },
  404. "installation-source": "dist",
  405. "autoload": {
  406. "psr-4": {
  407. "phpDocumentor\\Reflection\\": [
  408. "src"
  409. ]
  410. }
  411. },
  412. "notification-url": "https://packagist.org/downloads/",
  413. "license": [
  414. "MIT"
  415. ],
  416. "authors": [
  417. {
  418. "name": "Jaap van Otterdijk",
  419. "email": "opensource@ijaap.nl"
  420. }
  421. ],
  422. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  423. "homepage": "http://www.phpdoc.org",
  424. "keywords": [
  425. "FQSEN",
  426. "phpDocumentor",
  427. "phpdoc",
  428. "reflection",
  429. "static analysis"
  430. ]
  431. },
  432. {
  433. "name": "phpdocumentor/reflection-docblock",
  434. "version": "4.3.0",
  435. "version_normalized": "4.3.0.0",
  436. "source": {
  437. "type": "git",
  438. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  439. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  440. },
  441. "dist": {
  442. "type": "zip",
  443. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  444. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  445. "shasum": ""
  446. },
  447. "require": {
  448. "php": "^7.0",
  449. "phpdocumentor/reflection-common": "^1.0.0",
  450. "phpdocumentor/type-resolver": "^0.4.0",
  451. "webmozart/assert": "^1.0"
  452. },
  453. "require-dev": {
  454. "doctrine/instantiator": "~1.0.5",
  455. "mockery/mockery": "^1.0",
  456. "phpunit/phpunit": "^6.4"
  457. },
  458. "time": "2017-11-30T07:14:17+00:00",
  459. "type": "library",
  460. "extra": {
  461. "branch-alias": {
  462. "dev-master": "4.x-dev"
  463. }
  464. },
  465. "installation-source": "dist",
  466. "autoload": {
  467. "psr-4": {
  468. "phpDocumentor\\Reflection\\": [
  469. "src/"
  470. ]
  471. }
  472. },
  473. "notification-url": "https://packagist.org/downloads/",
  474. "license": [
  475. "MIT"
  476. ],
  477. "authors": [
  478. {
  479. "name": "Mike van Riel",
  480. "email": "me@mikevanriel.com"
  481. }
  482. ],
  483. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock."
  484. },
  485. {
  486. "name": "phpdocumentor/type-resolver",
  487. "version": "0.4.0",
  488. "version_normalized": "0.4.0.0",
  489. "source": {
  490. "type": "git",
  491. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  492. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  493. },
  494. "dist": {
  495. "type": "zip",
  496. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  497. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  498. "shasum": ""
  499. },
  500. "require": {
  501. "php": "^5.5 || ^7.0",
  502. "phpdocumentor/reflection-common": "^1.0"
  503. },
  504. "require-dev": {
  505. "mockery/mockery": "^0.9.4",
  506. "phpunit/phpunit": "^5.2||^4.8.24"
  507. },
  508. "time": "2017-07-14T14:27:02+00:00",
  509. "type": "library",
  510. "extra": {
  511. "branch-alias": {
  512. "dev-master": "1.0.x-dev"
  513. }
  514. },
  515. "installation-source": "dist",
  516. "autoload": {
  517. "psr-4": {
  518. "phpDocumentor\\Reflection\\": [
  519. "src/"
  520. ]
  521. }
  522. },
  523. "notification-url": "https://packagist.org/downloads/",
  524. "license": [
  525. "MIT"
  526. ],
  527. "authors": [
  528. {
  529. "name": "Mike van Riel",
  530. "email": "me@mikevanriel.com"
  531. }
  532. ]
  533. },
  534. {
  535. "name": "phpmailer/phpmailer",
  536. "version": "v6.0.5",
  537. "version_normalized": "6.0.5.0",
  538. "source": {
  539. "type": "git",
  540. "url": "https://github.com/PHPMailer/PHPMailer.git",
  541. "reference": "cb3ea134d4d3729e7857737d5f320cce9caf4d32"
  542. },
  543. "dist": {
  544. "type": "zip",
  545. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/cb3ea134d4d3729e7857737d5f320cce9caf4d32",
  546. "reference": "cb3ea134d4d3729e7857737d5f320cce9caf4d32",
  547. "shasum": ""
  548. },
  549. "require": {
  550. "ext-ctype": "*",
  551. "ext-filter": "*",
  552. "php": ">=5.5.0"
  553. },
  554. "require-dev": {
  555. "doctrine/annotations": "1.2.*",
  556. "friendsofphp/php-cs-fixer": "^2.2",
  557. "phpdocumentor/phpdocumentor": "2.*",
  558. "phpunit/phpunit": "^4.8 || ^5.7",
  559. "zendframework/zend-eventmanager": "3.0.*",
  560. "zendframework/zend-i18n": "2.7.3",
  561. "zendframework/zend-serializer": "2.7.*"
  562. },
  563. "suggest": {
  564. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  565. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  566. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  567. "psr/log": "For optional PSR-3 debug logging",
  568. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  569. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  570. },
  571. "time": "2018-03-27T13:49:45+00:00",
  572. "type": "library",
  573. "installation-source": "dist",
  574. "autoload": {
  575. "psr-4": {
  576. "PHPMailer\\PHPMailer\\": "src/"
  577. }
  578. },
  579. "notification-url": "https://packagist.org/downloads/",
  580. "license": [
  581. "LGPL-2.1"
  582. ],
  583. "authors": [
  584. {
  585. "name": "Jim Jagielski",
  586. "email": "jimjag@gmail.com"
  587. },
  588. {
  589. "name": "Marcus Bointon",
  590. "email": "phpmailer@synchromedia.co.uk"
  591. },
  592. {
  593. "name": "Andy Prevost",
  594. "email": "codeworxtech@users.sourceforge.net"
  595. },
  596. {
  597. "name": "Brent R. Matzelle"
  598. }
  599. ],
  600. "description": "PHPMailer is a full-featured email creation and transfer class for PHP"
  601. },
  602. {
  603. "name": "phpspec/prophecy",
  604. "version": "1.7.5",
  605. "version_normalized": "1.7.5.0",
  606. "source": {
  607. "type": "git",
  608. "url": "https://github.com/phpspec/prophecy.git",
  609. "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401"
  610. },
  611. "dist": {
  612. "type": "zip",
  613. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/dfd6be44111a7c41c2e884a336cc4f461b3b2401",
  614. "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401",
  615. "shasum": ""
  616. },
  617. "require": {
  618. "doctrine/instantiator": "^1.0.2",
  619. "php": "^5.3|^7.0",
  620. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  621. "sebastian/comparator": "^1.1|^2.0",
  622. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  623. },
  624. "require-dev": {
  625. "phpspec/phpspec": "^2.5|^3.2",
  626. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  627. },
  628. "time": "2018-02-19T10:16:54+00:00",
  629. "type": "library",
  630. "extra": {
  631. "branch-alias": {
  632. "dev-master": "1.7.x-dev"
  633. }
  634. },
  635. "installation-source": "dist",
  636. "autoload": {
  637. "psr-0": {
  638. "Prophecy\\": "src/"
  639. }
  640. },
  641. "notification-url": "https://packagist.org/downloads/",
  642. "license": [
  643. "MIT"
  644. ],
  645. "authors": [
  646. {
  647. "name": "Konstantin Kudryashov",
  648. "email": "ever.zet@gmail.com",
  649. "homepage": "http://everzet.com"
  650. },
  651. {
  652. "name": "Marcello Duarte",
  653. "email": "marcello.duarte@gmail.com"
  654. }
  655. ],
  656. "description": "Highly opinionated mocking framework for PHP 5.3+",
  657. "homepage": "https://github.com/phpspec/prophecy",
  658. "keywords": [
  659. "Double",
  660. "Dummy",
  661. "fake",
  662. "mock",
  663. "spy",
  664. "stub"
  665. ]
  666. },
  667. {
  668. "name": "phpunit/php-code-coverage",
  669. "version": "5.3.0",
  670. "version_normalized": "5.3.0.0",
  671. "source": {
  672. "type": "git",
  673. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  674. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1"
  675. },
  676. "dist": {
  677. "type": "zip",
  678. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  679. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  680. "shasum": ""
  681. },
  682. "require": {
  683. "ext-dom": "*",
  684. "ext-xmlwriter": "*",
  685. "php": "^7.0",
  686. "phpunit/php-file-iterator": "^1.4.2",
  687. "phpunit/php-text-template": "^1.2.1",
  688. "phpunit/php-token-stream": "^2.0.1",
  689. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  690. "sebastian/environment": "^3.0",
  691. "sebastian/version": "^2.0.1",
  692. "theseer/tokenizer": "^1.1"
  693. },
  694. "require-dev": {
  695. "phpunit/phpunit": "^6.0"
  696. },
  697. "suggest": {
  698. "ext-xdebug": "^2.5.5"
  699. },
  700. "time": "2017-12-06T09:29:45+00:00",
  701. "type": "library",
  702. "extra": {
  703. "branch-alias": {
  704. "dev-master": "5.3.x-dev"
  705. }
  706. },
  707. "installation-source": "dist",
  708. "autoload": {
  709. "classmap": [
  710. "src/"
  711. ]
  712. },
  713. "notification-url": "https://packagist.org/downloads/",
  714. "license": [
  715. "BSD-3-Clause"
  716. ],
  717. "authors": [
  718. {
  719. "name": "Sebastian Bergmann",
  720. "email": "sebastian@phpunit.de",
  721. "role": "lead"
  722. }
  723. ],
  724. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  725. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  726. "keywords": [
  727. "coverage",
  728. "testing",
  729. "xunit"
  730. ]
  731. },
  732. {
  733. "name": "phpunit/php-file-iterator",
  734. "version": "1.4.5",
  735. "version_normalized": "1.4.5.0",
  736. "source": {
  737. "type": "git",
  738. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  739. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  740. },
  741. "dist": {
  742. "type": "zip",
  743. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  744. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  745. "shasum": ""
  746. },
  747. "require": {
  748. "php": ">=5.3.3"
  749. },
  750. "time": "2017-11-27T13:52:08+00:00",
  751. "type": "library",
  752. "extra": {
  753. "branch-alias": {
  754. "dev-master": "1.4.x-dev"
  755. }
  756. },
  757. "installation-source": "dist",
  758. "autoload": {
  759. "classmap": [
  760. "src/"
  761. ]
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "BSD-3-Clause"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Sebastian Bergmann",
  770. "email": "sb@sebastian-bergmann.de",
  771. "role": "lead"
  772. }
  773. ],
  774. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  775. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  776. "keywords": [
  777. "filesystem",
  778. "iterator"
  779. ]
  780. },
  781. {
  782. "name": "phpunit/php-text-template",
  783. "version": "1.2.1",
  784. "version_normalized": "1.2.1.0",
  785. "source": {
  786. "type": "git",
  787. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  788. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  789. },
  790. "dist": {
  791. "type": "zip",
  792. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  793. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  794. "shasum": ""
  795. },
  796. "require": {
  797. "php": ">=5.3.3"
  798. },
  799. "time": "2015-06-21T13:50:34+00:00",
  800. "type": "library",
  801. "installation-source": "dist",
  802. "autoload": {
  803. "classmap": [
  804. "src/"
  805. ]
  806. },
  807. "notification-url": "https://packagist.org/downloads/",
  808. "license": [
  809. "BSD-3-Clause"
  810. ],
  811. "authors": [
  812. {
  813. "name": "Sebastian Bergmann",
  814. "email": "sebastian@phpunit.de",
  815. "role": "lead"
  816. }
  817. ],
  818. "description": "Simple template engine.",
  819. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  820. "keywords": [
  821. "template"
  822. ]
  823. },
  824. {
  825. "name": "phpunit/php-timer",
  826. "version": "1.0.9",
  827. "version_normalized": "1.0.9.0",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/sebastianbergmann/php-timer.git",
  831. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  836. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "php": "^5.3.3 || ^7.0"
  841. },
  842. "require-dev": {
  843. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  844. },
  845. "time": "2017-02-26T11:10:40+00:00",
  846. "type": "library",
  847. "extra": {
  848. "branch-alias": {
  849. "dev-master": "1.0-dev"
  850. }
  851. },
  852. "installation-source": "dist",
  853. "autoload": {
  854. "classmap": [
  855. "src/"
  856. ]
  857. },
  858. "notification-url": "https://packagist.org/downloads/",
  859. "license": [
  860. "BSD-3-Clause"
  861. ],
  862. "authors": [
  863. {
  864. "name": "Sebastian Bergmann",
  865. "email": "sb@sebastian-bergmann.de",
  866. "role": "lead"
  867. }
  868. ],
  869. "description": "Utility class for timing",
  870. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  871. "keywords": [
  872. "timer"
  873. ]
  874. },
  875. {
  876. "name": "phpunit/php-token-stream",
  877. "version": "2.0.2",
  878. "version_normalized": "2.0.2.0",
  879. "source": {
  880. "type": "git",
  881. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  882. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  883. },
  884. "dist": {
  885. "type": "zip",
  886. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  887. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  888. "shasum": ""
  889. },
  890. "require": {
  891. "ext-tokenizer": "*",
  892. "php": "^7.0"
  893. },
  894. "require-dev": {
  895. "phpunit/phpunit": "^6.2.4"
  896. },
  897. "time": "2017-11-27T05:48:46+00:00",
  898. "type": "library",
  899. "extra": {
  900. "branch-alias": {
  901. "dev-master": "2.0-dev"
  902. }
  903. },
  904. "installation-source": "dist",
  905. "autoload": {
  906. "classmap": [
  907. "src/"
  908. ]
  909. },
  910. "notification-url": "https://packagist.org/downloads/",
  911. "license": [
  912. "BSD-3-Clause"
  913. ],
  914. "authors": [
  915. {
  916. "name": "Sebastian Bergmann",
  917. "email": "sebastian@phpunit.de"
  918. }
  919. ],
  920. "description": "Wrapper around PHP's tokenizer extension.",
  921. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  922. "keywords": [
  923. "tokenizer"
  924. ]
  925. },
  926. {
  927. "name": "phpunit/phpunit",
  928. "version": "6.5.7",
  929. "version_normalized": "6.5.7.0",
  930. "source": {
  931. "type": "git",
  932. "url": "https://github.com/sebastianbergmann/phpunit.git",
  933. "reference": "6bd77b57707c236833d2b57b968e403df060c9d9"
  934. },
  935. "dist": {
  936. "type": "zip",
  937. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6bd77b57707c236833d2b57b968e403df060c9d9",
  938. "reference": "6bd77b57707c236833d2b57b968e403df060c9d9",
  939. "shasum": ""
  940. },
  941. "require": {
  942. "ext-dom": "*",
  943. "ext-json": "*",
  944. "ext-libxml": "*",
  945. "ext-mbstring": "*",
  946. "ext-xml": "*",
  947. "myclabs/deep-copy": "^1.6.1",
  948. "phar-io/manifest": "^1.0.1",
  949. "phar-io/version": "^1.0",
  950. "php": "^7.0",
  951. "phpspec/prophecy": "^1.7",
  952. "phpunit/php-code-coverage": "^5.3",
  953. "phpunit/php-file-iterator": "^1.4.3",
  954. "phpunit/php-text-template": "^1.2.1",
  955. "phpunit/php-timer": "^1.0.9",
  956. "phpunit/phpunit-mock-objects": "^5.0.5",
  957. "sebastian/comparator": "^2.1",
  958. "sebastian/diff": "^2.0",
  959. "sebastian/environment": "^3.1",
  960. "sebastian/exporter": "^3.1",
  961. "sebastian/global-state": "^2.0",
  962. "sebastian/object-enumerator": "^3.0.3",
  963. "sebastian/resource-operations": "^1.0",
  964. "sebastian/version": "^2.0.1"
  965. },
  966. "conflict": {
  967. "phpdocumentor/reflection-docblock": "3.0.2",
  968. "phpunit/dbunit": "<3.0"
  969. },
  970. "require-dev": {
  971. "ext-pdo": "*"
  972. },
  973. "suggest": {
  974. "ext-xdebug": "*",
  975. "phpunit/php-invoker": "^1.1"
  976. },
  977. "time": "2018-02-26T07:01:09+00:00",
  978. "bin": [
  979. "phpunit"
  980. ],
  981. "type": "library",
  982. "extra": {
  983. "branch-alias": {
  984. "dev-master": "6.5.x-dev"
  985. }
  986. },
  987. "installation-source": "dist",
  988. "autoload": {
  989. "classmap": [
  990. "src/"
  991. ]
  992. },
  993. "notification-url": "https://packagist.org/downloads/",
  994. "license": [
  995. "BSD-3-Clause"
  996. ],
  997. "authors": [
  998. {
  999. "name": "Sebastian Bergmann",
  1000. "email": "sebastian@phpunit.de",
  1001. "role": "lead"
  1002. }
  1003. ],
  1004. "description": "The PHP Unit Testing framework.",
  1005. "homepage": "https://phpunit.de/",
  1006. "keywords": [
  1007. "phpunit",
  1008. "testing",
  1009. "xunit"
  1010. ]
  1011. },
  1012. {
  1013. "name": "phpunit/phpunit-mock-objects",
  1014. "version": "5.0.6",
  1015. "version_normalized": "5.0.6.0",
  1016. "source": {
  1017. "type": "git",
  1018. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1019. "reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf"
  1020. },
  1021. "dist": {
  1022. "type": "zip",
  1023. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/33fd41a76e746b8fa96d00b49a23dadfa8334cdf",
  1024. "reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf",
  1025. "shasum": ""
  1026. },
  1027. "require": {
  1028. "doctrine/instantiator": "^1.0.5",
  1029. "php": "^7.0",
  1030. "phpunit/php-text-template": "^1.2.1",
  1031. "sebastian/exporter": "^3.1"
  1032. },
  1033. "conflict": {
  1034. "phpunit/phpunit": "<6.0"
  1035. },
  1036. "require-dev": {
  1037. "phpunit/phpunit": "^6.5"
  1038. },
  1039. "suggest": {
  1040. "ext-soap": "*"
  1041. },
  1042. "time": "2018-01-06T05:45:45+00:00",
  1043. "type": "library",
  1044. "extra": {
  1045. "branch-alias": {
  1046. "dev-master": "5.0.x-dev"
  1047. }
  1048. },
  1049. "installation-source": "dist",
  1050. "autoload": {
  1051. "classmap": [
  1052. "src/"
  1053. ]
  1054. },
  1055. "notification-url": "https://packagist.org/downloads/",
  1056. "license": [
  1057. "BSD-3-Clause"
  1058. ],
  1059. "authors": [
  1060. {
  1061. "name": "Sebastian Bergmann",
  1062. "email": "sebastian@phpunit.de",
  1063. "role": "lead"
  1064. }
  1065. ],
  1066. "description": "Mock Object library for PHPUnit",
  1067. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1068. "keywords": [
  1069. "mock",
  1070. "xunit"
  1071. ]
  1072. },
  1073. {
  1074. "name": "sebastian/code-unit-reverse-lookup",
  1075. "version": "1.0.1",
  1076. "version_normalized": "1.0.1.0",
  1077. "source": {
  1078. "type": "git",
  1079. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1080. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  1081. },
  1082. "dist": {
  1083. "type": "zip",
  1084. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1085. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1086. "shasum": ""
  1087. },
  1088. "require": {
  1089. "php": "^5.6 || ^7.0"
  1090. },
  1091. "require-dev": {
  1092. "phpunit/phpunit": "^5.7 || ^6.0"
  1093. },
  1094. "time": "2017-03-04T06:30:41+00:00",
  1095. "type": "library",
  1096. "extra": {
  1097. "branch-alias": {
  1098. "dev-master": "1.0.x-dev"
  1099. }
  1100. },
  1101. "installation-source": "dist",
  1102. "autoload": {
  1103. "classmap": [
  1104. "src/"
  1105. ]
  1106. },
  1107. "notification-url": "https://packagist.org/downloads/",
  1108. "license": [
  1109. "BSD-3-Clause"
  1110. ],
  1111. "authors": [
  1112. {
  1113. "name": "Sebastian Bergmann",
  1114. "email": "sebastian@phpunit.de"
  1115. }
  1116. ],
  1117. "description": "Looks up which function or method a line of code belongs to",
  1118. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/"
  1119. },
  1120. {
  1121. "name": "sebastian/comparator",
  1122. "version": "2.1.3",
  1123. "version_normalized": "2.1.3.0",
  1124. "source": {
  1125. "type": "git",
  1126. "url": "https://github.com/sebastianbergmann/comparator.git",
  1127. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  1128. },
  1129. "dist": {
  1130. "type": "zip",
  1131. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  1132. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  1133. "shasum": ""
  1134. },
  1135. "require": {
  1136. "php": "^7.0",
  1137. "sebastian/diff": "^2.0 || ^3.0",
  1138. "sebastian/exporter": "^3.1"
  1139. },
  1140. "require-dev": {
  1141. "phpunit/phpunit": "^6.4"
  1142. },
  1143. "time": "2018-02-01T13:46:46+00:00",
  1144. "type": "library",
  1145. "extra": {
  1146. "branch-alias": {
  1147. "dev-master": "2.1.x-dev"
  1148. }
  1149. },
  1150. "installation-source": "dist",
  1151. "autoload": {
  1152. "classmap": [
  1153. "src/"
  1154. ]
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "BSD-3-Clause"
  1159. ],
  1160. "authors": [
  1161. {
  1162. "name": "Jeff Welch",
  1163. "email": "whatthejeff@gmail.com"
  1164. },
  1165. {
  1166. "name": "Volker Dusch",
  1167. "email": "github@wallbash.com"
  1168. },
  1169. {
  1170. "name": "Bernhard Schussek",
  1171. "email": "bschussek@2bepublished.at"
  1172. },
  1173. {
  1174. "name": "Sebastian Bergmann",
  1175. "email": "sebastian@phpunit.de"
  1176. }
  1177. ],
  1178. "description": "Provides the functionality to compare PHP values for equality",
  1179. "homepage": "https://github.com/sebastianbergmann/comparator",
  1180. "keywords": [
  1181. "comparator",
  1182. "compare",
  1183. "equality"
  1184. ]
  1185. },
  1186. {
  1187. "name": "sebastian/diff",
  1188. "version": "2.0.1",
  1189. "version_normalized": "2.0.1.0",
  1190. "source": {
  1191. "type": "git",
  1192. "url": "https://github.com/sebastianbergmann/diff.git",
  1193. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  1194. },
  1195. "dist": {
  1196. "type": "zip",
  1197. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  1198. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  1199. "shasum": ""
  1200. },
  1201. "require": {
  1202. "php": "^7.0"
  1203. },
  1204. "require-dev": {
  1205. "phpunit/phpunit": "^6.2"
  1206. },
  1207. "time": "2017-08-03T08:09:46+00:00",
  1208. "type": "library",
  1209. "extra": {
  1210. "branch-alias": {
  1211. "dev-master": "2.0-dev"
  1212. }
  1213. },
  1214. "installation-source": "dist",
  1215. "autoload": {
  1216. "classmap": [
  1217. "src/"
  1218. ]
  1219. },
  1220. "notification-url": "https://packagist.org/downloads/",
  1221. "license": [
  1222. "BSD-3-Clause"
  1223. ],
  1224. "authors": [
  1225. {
  1226. "name": "Kore Nordmann",
  1227. "email": "mail@kore-nordmann.de"
  1228. },
  1229. {
  1230. "name": "Sebastian Bergmann",
  1231. "email": "sebastian@phpunit.de"
  1232. }
  1233. ],
  1234. "description": "Diff implementation",
  1235. "homepage": "https://github.com/sebastianbergmann/diff",
  1236. "keywords": [
  1237. "diff"
  1238. ]
  1239. },
  1240. {
  1241. "name": "sebastian/environment",
  1242. "version": "3.1.0",
  1243. "version_normalized": "3.1.0.0",
  1244. "source": {
  1245. "type": "git",
  1246. "url": "https://github.com/sebastianbergmann/environment.git",
  1247. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  1248. },
  1249. "dist": {
  1250. "type": "zip",
  1251. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1252. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1253. "shasum": ""
  1254. },
  1255. "require": {
  1256. "php": "^7.0"
  1257. },
  1258. "require-dev": {
  1259. "phpunit/phpunit": "^6.1"
  1260. },
  1261. "time": "2017-07-01T08:51:00+00:00",
  1262. "type": "library",
  1263. "extra": {
  1264. "branch-alias": {
  1265. "dev-master": "3.1.x-dev"
  1266. }
  1267. },
  1268. "installation-source": "dist",
  1269. "autoload": {
  1270. "classmap": [
  1271. "src/"
  1272. ]
  1273. },
  1274. "notification-url": "https://packagist.org/downloads/",
  1275. "license": [
  1276. "BSD-3-Clause"
  1277. ],
  1278. "authors": [
  1279. {
  1280. "name": "Sebastian Bergmann",
  1281. "email": "sebastian@phpunit.de"
  1282. }
  1283. ],
  1284. "description": "Provides functionality to handle HHVM/PHP environments",
  1285. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1286. "keywords": [
  1287. "Xdebug",
  1288. "environment",
  1289. "hhvm"
  1290. ]
  1291. },
  1292. {
  1293. "name": "sebastian/exporter",
  1294. "version": "3.1.0",
  1295. "version_normalized": "3.1.0.0",
  1296. "source": {
  1297. "type": "git",
  1298. "url": "https://github.com/sebastianbergmann/exporter.git",
  1299. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  1300. },
  1301. "dist": {
  1302. "type": "zip",
  1303. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  1304. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  1305. "shasum": ""
  1306. },
  1307. "require": {
  1308. "php": "^7.0",
  1309. "sebastian/recursion-context": "^3.0"
  1310. },
  1311. "require-dev": {
  1312. "ext-mbstring": "*",
  1313. "phpunit/phpunit": "^6.0"
  1314. },
  1315. "time": "2017-04-03T13:19:02+00:00",
  1316. "type": "library",
  1317. "extra": {
  1318. "branch-alias": {
  1319. "dev-master": "3.1.x-dev"
  1320. }
  1321. },
  1322. "installation-source": "dist",
  1323. "autoload": {
  1324. "classmap": [
  1325. "src/"
  1326. ]
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "BSD-3-Clause"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Jeff Welch",
  1335. "email": "whatthejeff@gmail.com"
  1336. },
  1337. {
  1338. "name": "Volker Dusch",
  1339. "email": "github@wallbash.com"
  1340. },
  1341. {
  1342. "name": "Bernhard Schussek",
  1343. "email": "bschussek@2bepublished.at"
  1344. },
  1345. {
  1346. "name": "Sebastian Bergmann",
  1347. "email": "sebastian@phpunit.de"
  1348. },
  1349. {
  1350. "name": "Adam Harvey",
  1351. "email": "aharvey@php.net"
  1352. }
  1353. ],
  1354. "description": "Provides the functionality to export PHP variables for visualization",
  1355. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1356. "keywords": [
  1357. "export",
  1358. "exporter"
  1359. ]
  1360. },
  1361. {
  1362. "name": "sebastian/global-state",
  1363. "version": "2.0.0",
  1364. "version_normalized": "2.0.0.0",
  1365. "source": {
  1366. "type": "git",
  1367. "url": "https://github.com/sebastianbergmann/global-state.git",
  1368. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  1369. },
  1370. "dist": {
  1371. "type": "zip",
  1372. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1373. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1374. "shasum": ""
  1375. },
  1376. "require": {
  1377. "php": "^7.0"
  1378. },
  1379. "require-dev": {
  1380. "phpunit/phpunit": "^6.0"
  1381. },
  1382. "suggest": {
  1383. "ext-uopz": "*"
  1384. },
  1385. "time": "2017-04-27T15:39:26+00:00",
  1386. "type": "library",
  1387. "extra": {
  1388. "branch-alias": {
  1389. "dev-master": "2.0-dev"
  1390. }
  1391. },
  1392. "installation-source": "dist",
  1393. "autoload": {
  1394. "classmap": [
  1395. "src/"
  1396. ]
  1397. },
  1398. "notification-url": "https://packagist.org/downloads/",
  1399. "license": [
  1400. "BSD-3-Clause"
  1401. ],
  1402. "authors": [
  1403. {
  1404. "name": "Sebastian Bergmann",
  1405. "email": "sebastian@phpunit.de"
  1406. }
  1407. ],
  1408. "description": "Snapshotting of global state",
  1409. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1410. "keywords": [
  1411. "global state"
  1412. ]
  1413. },
  1414. {
  1415. "name": "sebastian/object-enumerator",
  1416. "version": "3.0.3",
  1417. "version_normalized": "3.0.3.0",
  1418. "source": {
  1419. "type": "git",
  1420. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1421. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  1422. },
  1423. "dist": {
  1424. "type": "zip",
  1425. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1426. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1427. "shasum": ""
  1428. },
  1429. "require": {
  1430. "php": "^7.0",
  1431. "sebastian/object-reflector": "^1.1.1",
  1432. "sebastian/recursion-context": "^3.0"
  1433. },
  1434. "require-dev": {
  1435. "phpunit/phpunit": "^6.0"
  1436. },
  1437. "time": "2017-08-03T12:35:26+00:00",
  1438. "type": "library",
  1439. "extra": {
  1440. "branch-alias": {
  1441. "dev-master": "3.0.x-dev"
  1442. }
  1443. },
  1444. "installation-source": "dist",
  1445. "autoload": {
  1446. "classmap": [
  1447. "src/"
  1448. ]
  1449. },
  1450. "notification-url": "https://packagist.org/downloads/",
  1451. "license": [
  1452. "BSD-3-Clause"
  1453. ],
  1454. "authors": [
  1455. {
  1456. "name": "Sebastian Bergmann",
  1457. "email": "sebastian@phpunit.de"
  1458. }
  1459. ],
  1460. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1461. "homepage": "https://github.com/sebastianbergmann/object-enumerator/"
  1462. },
  1463. {
  1464. "name": "sebastian/object-reflector",
  1465. "version": "1.1.1",
  1466. "version_normalized": "1.1.1.0",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  1470. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  1475. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "php": "^7.0"
  1480. },
  1481. "require-dev": {
  1482. "phpunit/phpunit": "^6.0"
  1483. },
  1484. "time": "2017-03-29T09:07:27+00:00",
  1485. "type": "library",
  1486. "extra": {
  1487. "branch-alias": {
  1488. "dev-master": "1.1-dev"
  1489. }
  1490. },
  1491. "installation-source": "dist",
  1492. "autoload": {
  1493. "classmap": [
  1494. "src/"
  1495. ]
  1496. },
  1497. "notification-url": "https://packagist.org/downloads/",
  1498. "license": [
  1499. "BSD-3-Clause"
  1500. ],
  1501. "authors": [
  1502. {
  1503. "name": "Sebastian Bergmann",
  1504. "email": "sebastian@phpunit.de"
  1505. }
  1506. ],
  1507. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  1508. "homepage": "https://github.com/sebastianbergmann/object-reflector/"
  1509. },
  1510. {
  1511. "name": "sebastian/recursion-context",
  1512. "version": "3.0.0",
  1513. "version_normalized": "3.0.0.0",
  1514. "source": {
  1515. "type": "git",
  1516. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1517. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  1518. },
  1519. "dist": {
  1520. "type": "zip",
  1521. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  1522. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  1523. "shasum": ""
  1524. },
  1525. "require": {
  1526. "php": "^7.0"
  1527. },
  1528. "require-dev": {
  1529. "phpunit/phpunit": "^6.0"
  1530. },
  1531. "time": "2017-03-03T06:23:57+00:00",
  1532. "type": "library",
  1533. "extra": {
  1534. "branch-alias": {
  1535. "dev-master": "3.0.x-dev"
  1536. }
  1537. },
  1538. "installation-source": "dist",
  1539. "autoload": {
  1540. "classmap": [
  1541. "src/"
  1542. ]
  1543. },
  1544. "notification-url": "https://packagist.org/downloads/",
  1545. "license": [
  1546. "BSD-3-Clause"
  1547. ],
  1548. "authors": [
  1549. {
  1550. "name": "Jeff Welch",
  1551. "email": "whatthejeff@gmail.com"
  1552. },
  1553. {
  1554. "name": "Sebastian Bergmann",
  1555. "email": "sebastian@phpunit.de"
  1556. },
  1557. {
  1558. "name": "Adam Harvey",
  1559. "email": "aharvey@php.net"
  1560. }
  1561. ],
  1562. "description": "Provides functionality to recursively process PHP variables",
  1563. "homepage": "http://www.github.com/sebastianbergmann/recursion-context"
  1564. },
  1565. {
  1566. "name": "sebastian/resource-operations",
  1567. "version": "1.0.0",
  1568. "version_normalized": "1.0.0.0",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  1572. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1577. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "php": ">=5.6.0"
  1582. },
  1583. "time": "2015-07-28T20:34:47+00:00",
  1584. "type": "library",
  1585. "extra": {
  1586. "branch-alias": {
  1587. "dev-master": "1.0.x-dev"
  1588. }
  1589. },
  1590. "installation-source": "dist",
  1591. "autoload": {
  1592. "classmap": [
  1593. "src/"
  1594. ]
  1595. },
  1596. "notification-url": "https://packagist.org/downloads/",
  1597. "license": [
  1598. "BSD-3-Clause"
  1599. ],
  1600. "authors": [
  1601. {
  1602. "name": "Sebastian Bergmann",
  1603. "email": "sebastian@phpunit.de"
  1604. }
  1605. ],
  1606. "description": "Provides a list of PHP built-in functions that operate on resources",
  1607. "homepage": "https://www.github.com/sebastianbergmann/resource-operations"
  1608. },
  1609. {
  1610. "name": "sebastian/version",
  1611. "version": "2.0.1",
  1612. "version_normalized": "2.0.1.0",
  1613. "source": {
  1614. "type": "git",
  1615. "url": "https://github.com/sebastianbergmann/version.git",
  1616. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  1617. },
  1618. "dist": {
  1619. "type": "zip",
  1620. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  1621. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  1622. "shasum": ""
  1623. },
  1624. "require": {
  1625. "php": ">=5.6"
  1626. },
  1627. "time": "2016-10-03T07:35:21+00:00",
  1628. "type": "library",
  1629. "extra": {
  1630. "branch-alias": {
  1631. "dev-master": "2.0.x-dev"
  1632. }
  1633. },
  1634. "installation-source": "dist",
  1635. "autoload": {
  1636. "classmap": [
  1637. "src/"
  1638. ]
  1639. },
  1640. "notification-url": "https://packagist.org/downloads/",
  1641. "license": [
  1642. "BSD-3-Clause"
  1643. ],
  1644. "authors": [
  1645. {
  1646. "name": "Sebastian Bergmann",
  1647. "email": "sebastian@phpunit.de",
  1648. "role": "lead"
  1649. }
  1650. ],
  1651. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1652. "homepage": "https://github.com/sebastianbergmann/version"
  1653. },
  1654. {
  1655. "name": "symfony/finder",
  1656. "version": "v4.0.6",
  1657. "version_normalized": "4.0.6.0",
  1658. "source": {
  1659. "type": "git",
  1660. "url": "https://github.com/symfony/finder.git",
  1661. "reference": "44a796d2ecc2a16a5fc8f2956a34ee617934d55f"
  1662. },
  1663. "dist": {
  1664. "type": "zip",
  1665. "url": "https://api.github.com/repos/symfony/finder/zipball/44a796d2ecc2a16a5fc8f2956a34ee617934d55f",
  1666. "reference": "44a796d2ecc2a16a5fc8f2956a34ee617934d55f",
  1667. "shasum": ""
  1668. },
  1669. "require": {
  1670. "php": "^7.1.3"
  1671. },
  1672. "time": "2018-03-05T18:28:26+00:00",
  1673. "type": "library",
  1674. "extra": {
  1675. "branch-alias": {
  1676. "dev-master": "4.0-dev"
  1677. }
  1678. },
  1679. "installation-source": "dist",
  1680. "autoload": {
  1681. "psr-4": {
  1682. "Symfony\\Component\\Finder\\": ""
  1683. },
  1684. "exclude-from-classmap": [
  1685. "/Tests/"
  1686. ]
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "Fabien Potencier",
  1695. "email": "fabien@symfony.com"
  1696. },
  1697. {
  1698. "name": "Symfony Community",
  1699. "homepage": "https://symfony.com/contributors"
  1700. }
  1701. ],
  1702. "description": "Symfony Finder Component",
  1703. "homepage": "https://symfony.com"
  1704. },
  1705. {
  1706. "name": "theseer/tokenizer",
  1707. "version": "1.1.0",
  1708. "version_normalized": "1.1.0.0",
  1709. "source": {
  1710. "type": "git",
  1711. "url": "https://github.com/theseer/tokenizer.git",
  1712. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  1713. },
  1714. "dist": {
  1715. "type": "zip",
  1716. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  1717. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  1718. "shasum": ""
  1719. },
  1720. "require": {
  1721. "ext-dom": "*",
  1722. "ext-tokenizer": "*",
  1723. "ext-xmlwriter": "*",
  1724. "php": "^7.0"
  1725. },
  1726. "time": "2017-04-07T12:08:54+00:00",
  1727. "type": "library",
  1728. "installation-source": "dist",
  1729. "autoload": {
  1730. "classmap": [
  1731. "src/"
  1732. ]
  1733. },
  1734. "notification-url": "https://packagist.org/downloads/",
  1735. "license": [
  1736. "BSD-3-Clause"
  1737. ],
  1738. "authors": [
  1739. {
  1740. "name": "Arne Blankerts",
  1741. "email": "arne@blankerts.de",
  1742. "role": "Developer"
  1743. }
  1744. ],
  1745. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats"
  1746. },
  1747. {
  1748. "name": "webmozart/assert",
  1749. "version": "1.3.0",
  1750. "version_normalized": "1.3.0.0",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/webmozart/assert.git",
  1754. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  1759. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  1760. "shasum": ""
  1761. },
  1762. "require": {
  1763. "php": "^5.3.3 || ^7.0"
  1764. },
  1765. "require-dev": {
  1766. "phpunit/phpunit": "^4.6",
  1767. "sebastian/version": "^1.0.1"
  1768. },
  1769. "time": "2018-01-29T19:49:41+00:00",
  1770. "type": "library",
  1771. "extra": {
  1772. "branch-alias": {
  1773. "dev-master": "1.3-dev"
  1774. }
  1775. },
  1776. "installation-source": "dist",
  1777. "autoload": {
  1778. "psr-4": {
  1779. "Webmozart\\Assert\\": "src/"
  1780. }
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "MIT"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "Bernhard Schussek",
  1789. "email": "bschussek@gmail.com"
  1790. }
  1791. ],
  1792. "description": "Assertions to validate method input/output with nice error messages.",
  1793. "keywords": [
  1794. "assert",
  1795. "check",
  1796. "validate"
  1797. ]
  1798. },
  1799. {
  1800. "name": "zircote/swagger-php",
  1801. "version": "2.0.13",
  1802. "version_normalized": "2.0.13.0",
  1803. "source": {
  1804. "type": "git",
  1805. "url": "https://github.com/zircote/swagger-php.git",
  1806. "reference": "8b42fdc3d8c5a5e0d1f8d344aa359822c9f085e0"
  1807. },
  1808. "dist": {
  1809. "type": "zip",
  1810. "url": "https://api.github.com/repos/zircote/swagger-php/zipball/8b42fdc3d8c5a5e0d1f8d344aa359822c9f085e0",
  1811. "reference": "8b42fdc3d8c5a5e0d1f8d344aa359822c9f085e0",
  1812. "shasum": ""
  1813. },
  1814. "require": {
  1815. "doctrine/annotations": "*",
  1816. "php": ">=5.6",
  1817. "symfony/finder": ">=2.2"
  1818. },
  1819. "require-dev": {
  1820. "phpunit/phpunit": ">=4.8.35 <=5.6",
  1821. "squizlabs/php_codesniffer": ">=2.7",
  1822. "zendframework/zend-form": "<2.8"
  1823. },
  1824. "time": "2017-12-01T09:22:05+00:00",
  1825. "bin": [
  1826. "bin/swagger"
  1827. ],
  1828. "type": "library",
  1829. "installation-source": "dist",
  1830. "autoload": {
  1831. "psr-4": {
  1832. "Swagger\\": "src"
  1833. },
  1834. "files": [
  1835. "src/functions.php"
  1836. ]
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "Apache2"
  1841. ],
  1842. "authors": [
  1843. {
  1844. "name": "Robert Allen",
  1845. "email": "zircote@gmail.com",
  1846. "homepage": "http://www.zircote.com"
  1847. },
  1848. {
  1849. "name": "Bob Fanger",
  1850. "email": "bfanger@gmail.com",
  1851. "homepage": "http://bfanger.nl"
  1852. }
  1853. ],
  1854. "description": "Swagger-PHP - Generate interactive documentation for your RESTful API using phpdoc annotations",
  1855. "homepage": "https://github.com/zircote/swagger-php/",
  1856. "keywords": [
  1857. "api",
  1858. "json",
  1859. "rest",
  1860. "service discovery"
  1861. ]
  1862. }
  1863. ]