Drupal investigation

composer.lock 66KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "a7ce9382007faad2be0ddde1399067a2",
  8. "packages": [
  9. {
  10. "name": "consolidation/output-formatters",
  11. "version": "3.1.8",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/consolidation/output-formatters.git",
  15. "reference": "0b50ba1134d581fd55376f3e21508dab009ced47"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0b50ba1134d581fd55376f3e21508dab009ced47",
  20. "reference": "0b50ba1134d581fd55376f3e21508dab009ced47",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.4.0",
  25. "symfony/console": "^2.8|~3",
  26. "symfony/finder": "~2.5|~3.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^4.8",
  30. "satooshi/php-coveralls": "^1.0",
  31. "squizlabs/php_codesniffer": "^2.7",
  32. "victorjonsson/markdowndocs": "^1.3"
  33. },
  34. "type": "library",
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "2.x-dev"
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Consolidation\\OutputFormatters\\": "src"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Greg Anderson",
  52. "email": "greg.1.anderson@greenknowe.org"
  53. }
  54. ],
  55. "description": "Format text by applying transformations provided by plug-in formatters.",
  56. "time": "2017-03-01T20:54:45+00:00"
  57. },
  58. {
  59. "name": "phpdocumentor/reflection-common",
  60. "version": "1.0",
  61. "source": {
  62. "type": "git",
  63. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  64. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c"
  65. },
  66. "dist": {
  67. "type": "zip",
  68. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  69. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  70. "shasum": ""
  71. },
  72. "require": {
  73. "php": ">=5.5"
  74. },
  75. "require-dev": {
  76. "phpunit/phpunit": "^4.6"
  77. },
  78. "type": "library",
  79. "extra": {
  80. "branch-alias": {
  81. "dev-master": "1.0.x-dev"
  82. }
  83. },
  84. "autoload": {
  85. "psr-4": {
  86. "phpDocumentor\\Reflection\\": [
  87. "src"
  88. ]
  89. }
  90. },
  91. "notification-url": "https://packagist.org/downloads/",
  92. "license": [
  93. "MIT"
  94. ],
  95. "authors": [
  96. {
  97. "name": "Jaap van Otterdijk",
  98. "email": "opensource@ijaap.nl"
  99. }
  100. ],
  101. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  102. "homepage": "http://www.phpdoc.org",
  103. "keywords": [
  104. "FQSEN",
  105. "phpDocumentor",
  106. "phpdoc",
  107. "reflection",
  108. "static analysis"
  109. ],
  110. "time": "2015-12-27T11:43:31+00:00"
  111. },
  112. {
  113. "name": "phpdocumentor/reflection-docblock",
  114. "version": "3.1.1",
  115. "source": {
  116. "type": "git",
  117. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  118. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e"
  119. },
  120. "dist": {
  121. "type": "zip",
  122. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  123. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  124. "shasum": ""
  125. },
  126. "require": {
  127. "php": ">=5.5",
  128. "phpdocumentor/reflection-common": "^1.0@dev",
  129. "phpdocumentor/type-resolver": "^0.2.0",
  130. "webmozart/assert": "^1.0"
  131. },
  132. "require-dev": {
  133. "mockery/mockery": "^0.9.4",
  134. "phpunit/phpunit": "^4.4"
  135. },
  136. "type": "library",
  137. "autoload": {
  138. "psr-4": {
  139. "phpDocumentor\\Reflection\\": [
  140. "src/"
  141. ]
  142. }
  143. },
  144. "notification-url": "https://packagist.org/downloads/",
  145. "license": [
  146. "MIT"
  147. ],
  148. "authors": [
  149. {
  150. "name": "Mike van Riel",
  151. "email": "me@mikevanriel.com"
  152. }
  153. ],
  154. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  155. "time": "2016-09-30T07:12:33+00:00"
  156. },
  157. {
  158. "name": "phpdocumentor/type-resolver",
  159. "version": "0.2.1",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  163. "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
  168. "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "php": ">=5.5",
  173. "phpdocumentor/reflection-common": "^1.0"
  174. },
  175. "require-dev": {
  176. "mockery/mockery": "^0.9.4",
  177. "phpunit/phpunit": "^5.2||^4.8.24"
  178. },
  179. "type": "library",
  180. "extra": {
  181. "branch-alias": {
  182. "dev-master": "1.0.x-dev"
  183. }
  184. },
  185. "autoload": {
  186. "psr-4": {
  187. "phpDocumentor\\Reflection\\": [
  188. "src/"
  189. ]
  190. }
  191. },
  192. "notification-url": "https://packagist.org/downloads/",
  193. "license": [
  194. "MIT"
  195. ],
  196. "authors": [
  197. {
  198. "name": "Mike van Riel",
  199. "email": "me@mikevanriel.com"
  200. }
  201. ],
  202. "time": "2016-11-25T06:54:22+00:00"
  203. },
  204. {
  205. "name": "psr/log",
  206. "version": "1.0.2",
  207. "source": {
  208. "type": "git",
  209. "url": "https://github.com/php-fig/log.git",
  210. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  211. },
  212. "dist": {
  213. "type": "zip",
  214. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  215. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  216. "shasum": ""
  217. },
  218. "require": {
  219. "php": ">=5.3.0"
  220. },
  221. "type": "library",
  222. "extra": {
  223. "branch-alias": {
  224. "dev-master": "1.0.x-dev"
  225. }
  226. },
  227. "autoload": {
  228. "psr-4": {
  229. "Psr\\Log\\": "Psr/Log/"
  230. }
  231. },
  232. "notification-url": "https://packagist.org/downloads/",
  233. "license": [
  234. "MIT"
  235. ],
  236. "authors": [
  237. {
  238. "name": "PHP-FIG",
  239. "homepage": "http://www.php-fig.org/"
  240. }
  241. ],
  242. "description": "Common interface for logging libraries",
  243. "homepage": "https://github.com/php-fig/log",
  244. "keywords": [
  245. "log",
  246. "psr",
  247. "psr-3"
  248. ],
  249. "time": "2016-10-10T12:19:37+00:00"
  250. },
  251. {
  252. "name": "symfony/console",
  253. "version": "v3.2.6",
  254. "source": {
  255. "type": "git",
  256. "url": "https://github.com/symfony/console.git",
  257. "reference": "28fb243a2b5727774ca309ec2d92da240f1af0dd"
  258. },
  259. "dist": {
  260. "type": "zip",
  261. "url": "https://api.github.com/repos/symfony/console/zipball/28fb243a2b5727774ca309ec2d92da240f1af0dd",
  262. "reference": "28fb243a2b5727774ca309ec2d92da240f1af0dd",
  263. "shasum": ""
  264. },
  265. "require": {
  266. "php": ">=5.5.9",
  267. "symfony/debug": "~2.8|~3.0",
  268. "symfony/polyfill-mbstring": "~1.0"
  269. },
  270. "require-dev": {
  271. "psr/log": "~1.0",
  272. "symfony/event-dispatcher": "~2.8|~3.0",
  273. "symfony/filesystem": "~2.8|~3.0",
  274. "symfony/process": "~2.8|~3.0"
  275. },
  276. "suggest": {
  277. "psr/log": "For using the console logger",
  278. "symfony/event-dispatcher": "",
  279. "symfony/filesystem": "",
  280. "symfony/process": ""
  281. },
  282. "type": "library",
  283. "extra": {
  284. "branch-alias": {
  285. "dev-master": "3.2-dev"
  286. }
  287. },
  288. "autoload": {
  289. "psr-4": {
  290. "Symfony\\Component\\Console\\": ""
  291. },
  292. "exclude-from-classmap": [
  293. "/Tests/"
  294. ]
  295. },
  296. "notification-url": "https://packagist.org/downloads/",
  297. "license": [
  298. "MIT"
  299. ],
  300. "authors": [
  301. {
  302. "name": "Fabien Potencier",
  303. "email": "fabien@symfony.com"
  304. },
  305. {
  306. "name": "Symfony Community",
  307. "homepage": "https://symfony.com/contributors"
  308. }
  309. ],
  310. "description": "Symfony Console Component",
  311. "homepage": "https://symfony.com",
  312. "time": "2017-03-06T19:30:27+00:00"
  313. },
  314. {
  315. "name": "symfony/debug",
  316. "version": "v3.2.6",
  317. "source": {
  318. "type": "git",
  319. "url": "https://github.com/symfony/debug.git",
  320. "reference": "b90c9f91ad8ac37d9f114e369042d3226b34dc1a"
  321. },
  322. "dist": {
  323. "type": "zip",
  324. "url": "https://api.github.com/repos/symfony/debug/zipball/b90c9f91ad8ac37d9f114e369042d3226b34dc1a",
  325. "reference": "b90c9f91ad8ac37d9f114e369042d3226b34dc1a",
  326. "shasum": ""
  327. },
  328. "require": {
  329. "php": ">=5.5.9",
  330. "psr/log": "~1.0"
  331. },
  332. "conflict": {
  333. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  334. },
  335. "require-dev": {
  336. "symfony/class-loader": "~2.8|~3.0",
  337. "symfony/http-kernel": "~2.8|~3.0"
  338. },
  339. "type": "library",
  340. "extra": {
  341. "branch-alias": {
  342. "dev-master": "3.2-dev"
  343. }
  344. },
  345. "autoload": {
  346. "psr-4": {
  347. "Symfony\\Component\\Debug\\": ""
  348. },
  349. "exclude-from-classmap": [
  350. "/Tests/"
  351. ]
  352. },
  353. "notification-url": "https://packagist.org/downloads/",
  354. "license": [
  355. "MIT"
  356. ],
  357. "authors": [
  358. {
  359. "name": "Fabien Potencier",
  360. "email": "fabien@symfony.com"
  361. },
  362. {
  363. "name": "Symfony Community",
  364. "homepage": "https://symfony.com/contributors"
  365. }
  366. ],
  367. "description": "Symfony Debug Component",
  368. "homepage": "https://symfony.com",
  369. "time": "2017-02-18T17:28:00+00:00"
  370. },
  371. {
  372. "name": "symfony/event-dispatcher",
  373. "version": "v3.2.6",
  374. "source": {
  375. "type": "git",
  376. "url": "https://github.com/symfony/event-dispatcher.git",
  377. "reference": "b7a1b9e0a0f623ce43b4c8d775eb138f190c9d8d"
  378. },
  379. "dist": {
  380. "type": "zip",
  381. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b7a1b9e0a0f623ce43b4c8d775eb138f190c9d8d",
  382. "reference": "b7a1b9e0a0f623ce43b4c8d775eb138f190c9d8d",
  383. "shasum": ""
  384. },
  385. "require": {
  386. "php": ">=5.5.9"
  387. },
  388. "require-dev": {
  389. "psr/log": "~1.0",
  390. "symfony/config": "~2.8|~3.0",
  391. "symfony/dependency-injection": "~2.8|~3.0",
  392. "symfony/expression-language": "~2.8|~3.0",
  393. "symfony/stopwatch": "~2.8|~3.0"
  394. },
  395. "suggest": {
  396. "symfony/dependency-injection": "",
  397. "symfony/http-kernel": ""
  398. },
  399. "type": "library",
  400. "extra": {
  401. "branch-alias": {
  402. "dev-master": "3.2-dev"
  403. }
  404. },
  405. "autoload": {
  406. "psr-4": {
  407. "Symfony\\Component\\EventDispatcher\\": ""
  408. },
  409. "exclude-from-classmap": [
  410. "/Tests/"
  411. ]
  412. },
  413. "notification-url": "https://packagist.org/downloads/",
  414. "license": [
  415. "MIT"
  416. ],
  417. "authors": [
  418. {
  419. "name": "Fabien Potencier",
  420. "email": "fabien@symfony.com"
  421. },
  422. {
  423. "name": "Symfony Community",
  424. "homepage": "https://symfony.com/contributors"
  425. }
  426. ],
  427. "description": "Symfony EventDispatcher Component",
  428. "homepage": "https://symfony.com",
  429. "time": "2017-02-21T09:12:04+00:00"
  430. },
  431. {
  432. "name": "symfony/finder",
  433. "version": "v3.2.6",
  434. "source": {
  435. "type": "git",
  436. "url": "https://github.com/symfony/finder.git",
  437. "reference": "92d7476d2df60cd851a3e13e078664b1deb8ce10"
  438. },
  439. "dist": {
  440. "type": "zip",
  441. "url": "https://api.github.com/repos/symfony/finder/zipball/92d7476d2df60cd851a3e13e078664b1deb8ce10",
  442. "reference": "92d7476d2df60cd851a3e13e078664b1deb8ce10",
  443. "shasum": ""
  444. },
  445. "require": {
  446. "php": ">=5.5.9"
  447. },
  448. "type": "library",
  449. "extra": {
  450. "branch-alias": {
  451. "dev-master": "3.2-dev"
  452. }
  453. },
  454. "autoload": {
  455. "psr-4": {
  456. "Symfony\\Component\\Finder\\": ""
  457. },
  458. "exclude-from-classmap": [
  459. "/Tests/"
  460. ]
  461. },
  462. "notification-url": "https://packagist.org/downloads/",
  463. "license": [
  464. "MIT"
  465. ],
  466. "authors": [
  467. {
  468. "name": "Fabien Potencier",
  469. "email": "fabien@symfony.com"
  470. },
  471. {
  472. "name": "Symfony Community",
  473. "homepage": "https://symfony.com/contributors"
  474. }
  475. ],
  476. "description": "Symfony Finder Component",
  477. "homepage": "https://symfony.com",
  478. "time": "2017-02-21T09:12:04+00:00"
  479. },
  480. {
  481. "name": "symfony/polyfill-mbstring",
  482. "version": "v1.3.0",
  483. "source": {
  484. "type": "git",
  485. "url": "https://github.com/symfony/polyfill-mbstring.git",
  486. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4"
  487. },
  488. "dist": {
  489. "type": "zip",
  490. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/e79d363049d1c2128f133a2667e4f4190904f7f4",
  491. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4",
  492. "shasum": ""
  493. },
  494. "require": {
  495. "php": ">=5.3.3"
  496. },
  497. "suggest": {
  498. "ext-mbstring": "For best performance"
  499. },
  500. "type": "library",
  501. "extra": {
  502. "branch-alias": {
  503. "dev-master": "1.3-dev"
  504. }
  505. },
  506. "autoload": {
  507. "psr-4": {
  508. "Symfony\\Polyfill\\Mbstring\\": ""
  509. },
  510. "files": [
  511. "bootstrap.php"
  512. ]
  513. },
  514. "notification-url": "https://packagist.org/downloads/",
  515. "license": [
  516. "MIT"
  517. ],
  518. "authors": [
  519. {
  520. "name": "Nicolas Grekas",
  521. "email": "p@tchwork.com"
  522. },
  523. {
  524. "name": "Symfony Community",
  525. "homepage": "https://symfony.com/contributors"
  526. }
  527. ],
  528. "description": "Symfony polyfill for the Mbstring extension",
  529. "homepage": "https://symfony.com",
  530. "keywords": [
  531. "compatibility",
  532. "mbstring",
  533. "polyfill",
  534. "portable",
  535. "shim"
  536. ],
  537. "time": "2016-11-14T01:06:16+00:00"
  538. },
  539. {
  540. "name": "webmozart/assert",
  541. "version": "1.2.0",
  542. "source": {
  543. "type": "git",
  544. "url": "https://github.com/webmozart/assert.git",
  545. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  546. },
  547. "dist": {
  548. "type": "zip",
  549. "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  550. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  551. "shasum": ""
  552. },
  553. "require": {
  554. "php": "^5.3.3 || ^7.0"
  555. },
  556. "require-dev": {
  557. "phpunit/phpunit": "^4.6",
  558. "sebastian/version": "^1.0.1"
  559. },
  560. "type": "library",
  561. "extra": {
  562. "branch-alias": {
  563. "dev-master": "1.3-dev"
  564. }
  565. },
  566. "autoload": {
  567. "psr-4": {
  568. "Webmozart\\Assert\\": "src/"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Bernhard Schussek",
  578. "email": "bschussek@gmail.com"
  579. }
  580. ],
  581. "description": "Assertions to validate method input/output with nice error messages.",
  582. "keywords": [
  583. "assert",
  584. "check",
  585. "validate"
  586. ],
  587. "time": "2016-11-23T20:04:58+00:00"
  588. }
  589. ],
  590. "packages-dev": [
  591. {
  592. "name": "doctrine/instantiator",
  593. "version": "1.0.5",
  594. "source": {
  595. "type": "git",
  596. "url": "https://github.com/doctrine/instantiator.git",
  597. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  598. },
  599. "dist": {
  600. "type": "zip",
  601. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  602. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  603. "shasum": ""
  604. },
  605. "require": {
  606. "php": ">=5.3,<8.0-DEV"
  607. },
  608. "require-dev": {
  609. "athletic/athletic": "~0.1.8",
  610. "ext-pdo": "*",
  611. "ext-phar": "*",
  612. "phpunit/phpunit": "~4.0",
  613. "squizlabs/php_codesniffer": "~2.0"
  614. },
  615. "type": "library",
  616. "extra": {
  617. "branch-alias": {
  618. "dev-master": "1.0.x-dev"
  619. }
  620. },
  621. "autoload": {
  622. "psr-4": {
  623. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "MIT"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Marco Pivetta",
  633. "email": "ocramius@gmail.com",
  634. "homepage": "http://ocramius.github.com/"
  635. }
  636. ],
  637. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  638. "homepage": "https://github.com/doctrine/instantiator",
  639. "keywords": [
  640. "constructor",
  641. "instantiate"
  642. ],
  643. "time": "2015-06-14T21:17:01+00:00"
  644. },
  645. {
  646. "name": "guzzle/guzzle",
  647. "version": "v3.8.1",
  648. "source": {
  649. "type": "git",
  650. "url": "https://github.com/guzzle/guzzle.git",
  651. "reference": "4de0618a01b34aa1c8c33a3f13f396dcd3882eba"
  652. },
  653. "dist": {
  654. "type": "zip",
  655. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/4de0618a01b34aa1c8c33a3f13f396dcd3882eba",
  656. "reference": "4de0618a01b34aa1c8c33a3f13f396dcd3882eba",
  657. "shasum": ""
  658. },
  659. "require": {
  660. "ext-curl": "*",
  661. "php": ">=5.3.3",
  662. "symfony/event-dispatcher": ">=2.1"
  663. },
  664. "replace": {
  665. "guzzle/batch": "self.version",
  666. "guzzle/cache": "self.version",
  667. "guzzle/common": "self.version",
  668. "guzzle/http": "self.version",
  669. "guzzle/inflection": "self.version",
  670. "guzzle/iterator": "self.version",
  671. "guzzle/log": "self.version",
  672. "guzzle/parser": "self.version",
  673. "guzzle/plugin": "self.version",
  674. "guzzle/plugin-async": "self.version",
  675. "guzzle/plugin-backoff": "self.version",
  676. "guzzle/plugin-cache": "self.version",
  677. "guzzle/plugin-cookie": "self.version",
  678. "guzzle/plugin-curlauth": "self.version",
  679. "guzzle/plugin-error-response": "self.version",
  680. "guzzle/plugin-history": "self.version",
  681. "guzzle/plugin-log": "self.version",
  682. "guzzle/plugin-md5": "self.version",
  683. "guzzle/plugin-mock": "self.version",
  684. "guzzle/plugin-oauth": "self.version",
  685. "guzzle/service": "self.version",
  686. "guzzle/stream": "self.version"
  687. },
  688. "require-dev": {
  689. "doctrine/cache": "*",
  690. "monolog/monolog": "1.*",
  691. "phpunit/phpunit": "3.7.*",
  692. "psr/log": "1.0.*",
  693. "symfony/class-loader": "*",
  694. "zendframework/zend-cache": "<2.3",
  695. "zendframework/zend-log": "<2.3"
  696. },
  697. "type": "library",
  698. "extra": {
  699. "branch-alias": {
  700. "dev-master": "3.8-dev"
  701. }
  702. },
  703. "autoload": {
  704. "psr-0": {
  705. "Guzzle": "src/",
  706. "Guzzle\\Tests": "tests/"
  707. }
  708. },
  709. "notification-url": "https://packagist.org/downloads/",
  710. "license": [
  711. "MIT"
  712. ],
  713. "authors": [
  714. {
  715. "name": "Michael Dowling",
  716. "email": "mtdowling@gmail.com",
  717. "homepage": "https://github.com/mtdowling"
  718. },
  719. {
  720. "name": "Guzzle Community",
  721. "homepage": "https://github.com/guzzle/guzzle/contributors"
  722. }
  723. ],
  724. "description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients",
  725. "homepage": "http://guzzlephp.org/",
  726. "keywords": [
  727. "client",
  728. "curl",
  729. "framework",
  730. "http",
  731. "http client",
  732. "rest",
  733. "web service"
  734. ],
  735. "abandoned": "guzzlehttp/guzzle",
  736. "time": "2014-01-28T22:29:15+00:00"
  737. },
  738. {
  739. "name": "phpspec/prophecy",
  740. "version": "v1.7.0",
  741. "source": {
  742. "type": "git",
  743. "url": "https://github.com/phpspec/prophecy.git",
  744. "reference": "93d39f1f7f9326d746203c7c056f300f7f126073"
  745. },
  746. "dist": {
  747. "type": "zip",
  748. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/93d39f1f7f9326d746203c7c056f300f7f126073",
  749. "reference": "93d39f1f7f9326d746203c7c056f300f7f126073",
  750. "shasum": ""
  751. },
  752. "require": {
  753. "doctrine/instantiator": "^1.0.2",
  754. "php": "^5.3|^7.0",
  755. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2",
  756. "sebastian/comparator": "^1.1|^2.0",
  757. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  758. },
  759. "require-dev": {
  760. "phpspec/phpspec": "^2.5|^3.2",
  761. "phpunit/phpunit": "^4.8 || ^5.6.5"
  762. },
  763. "type": "library",
  764. "extra": {
  765. "branch-alias": {
  766. "dev-master": "1.6.x-dev"
  767. }
  768. },
  769. "autoload": {
  770. "psr-0": {
  771. "Prophecy\\": "src/"
  772. }
  773. },
  774. "notification-url": "https://packagist.org/downloads/",
  775. "license": [
  776. "MIT"
  777. ],
  778. "authors": [
  779. {
  780. "name": "Konstantin Kudryashov",
  781. "email": "ever.zet@gmail.com",
  782. "homepage": "http://everzet.com"
  783. },
  784. {
  785. "name": "Marcello Duarte",
  786. "email": "marcello.duarte@gmail.com"
  787. }
  788. ],
  789. "description": "Highly opinionated mocking framework for PHP 5.3+",
  790. "homepage": "https://github.com/phpspec/prophecy",
  791. "keywords": [
  792. "Double",
  793. "Dummy",
  794. "fake",
  795. "mock",
  796. "spy",
  797. "stub"
  798. ],
  799. "time": "2017-03-02T20:05:34+00:00"
  800. },
  801. {
  802. "name": "phpunit/php-code-coverage",
  803. "version": "2.2.4",
  804. "source": {
  805. "type": "git",
  806. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  807. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  808. },
  809. "dist": {
  810. "type": "zip",
  811. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  812. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  813. "shasum": ""
  814. },
  815. "require": {
  816. "php": ">=5.3.3",
  817. "phpunit/php-file-iterator": "~1.3",
  818. "phpunit/php-text-template": "~1.2",
  819. "phpunit/php-token-stream": "~1.3",
  820. "sebastian/environment": "^1.3.2",
  821. "sebastian/version": "~1.0"
  822. },
  823. "require-dev": {
  824. "ext-xdebug": ">=2.1.4",
  825. "phpunit/phpunit": "~4"
  826. },
  827. "suggest": {
  828. "ext-dom": "*",
  829. "ext-xdebug": ">=2.2.1",
  830. "ext-xmlwriter": "*"
  831. },
  832. "type": "library",
  833. "extra": {
  834. "branch-alias": {
  835. "dev-master": "2.2.x-dev"
  836. }
  837. },
  838. "autoload": {
  839. "classmap": [
  840. "src/"
  841. ]
  842. },
  843. "notification-url": "https://packagist.org/downloads/",
  844. "license": [
  845. "BSD-3-Clause"
  846. ],
  847. "authors": [
  848. {
  849. "name": "Sebastian Bergmann",
  850. "email": "sb@sebastian-bergmann.de",
  851. "role": "lead"
  852. }
  853. ],
  854. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  855. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  856. "keywords": [
  857. "coverage",
  858. "testing",
  859. "xunit"
  860. ],
  861. "time": "2015-10-06T15:47:00+00:00"
  862. },
  863. {
  864. "name": "phpunit/php-file-iterator",
  865. "version": "1.4.2",
  866. "source": {
  867. "type": "git",
  868. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  869. "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5"
  870. },
  871. "dist": {
  872. "type": "zip",
  873. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  874. "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
  875. "shasum": ""
  876. },
  877. "require": {
  878. "php": ">=5.3.3"
  879. },
  880. "type": "library",
  881. "extra": {
  882. "branch-alias": {
  883. "dev-master": "1.4.x-dev"
  884. }
  885. },
  886. "autoload": {
  887. "classmap": [
  888. "src/"
  889. ]
  890. },
  891. "notification-url": "https://packagist.org/downloads/",
  892. "license": [
  893. "BSD-3-Clause"
  894. ],
  895. "authors": [
  896. {
  897. "name": "Sebastian Bergmann",
  898. "email": "sb@sebastian-bergmann.de",
  899. "role": "lead"
  900. }
  901. ],
  902. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  903. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  904. "keywords": [
  905. "filesystem",
  906. "iterator"
  907. ],
  908. "time": "2016-10-03T07:40:28+00:00"
  909. },
  910. {
  911. "name": "phpunit/php-text-template",
  912. "version": "1.2.1",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  916. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  921. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "php": ">=5.3.3"
  926. },
  927. "type": "library",
  928. "autoload": {
  929. "classmap": [
  930. "src/"
  931. ]
  932. },
  933. "notification-url": "https://packagist.org/downloads/",
  934. "license": [
  935. "BSD-3-Clause"
  936. ],
  937. "authors": [
  938. {
  939. "name": "Sebastian Bergmann",
  940. "email": "sebastian@phpunit.de",
  941. "role": "lead"
  942. }
  943. ],
  944. "description": "Simple template engine.",
  945. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  946. "keywords": [
  947. "template"
  948. ],
  949. "time": "2015-06-21T13:50:34+00:00"
  950. },
  951. {
  952. "name": "phpunit/php-timer",
  953. "version": "1.0.9",
  954. "source": {
  955. "type": "git",
  956. "url": "https://github.com/sebastianbergmann/php-timer.git",
  957. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  958. },
  959. "dist": {
  960. "type": "zip",
  961. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  962. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  963. "shasum": ""
  964. },
  965. "require": {
  966. "php": "^5.3.3 || ^7.0"
  967. },
  968. "require-dev": {
  969. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  970. },
  971. "type": "library",
  972. "extra": {
  973. "branch-alias": {
  974. "dev-master": "1.0-dev"
  975. }
  976. },
  977. "autoload": {
  978. "classmap": [
  979. "src/"
  980. ]
  981. },
  982. "notification-url": "https://packagist.org/downloads/",
  983. "license": [
  984. "BSD-3-Clause"
  985. ],
  986. "authors": [
  987. {
  988. "name": "Sebastian Bergmann",
  989. "email": "sb@sebastian-bergmann.de",
  990. "role": "lead"
  991. }
  992. ],
  993. "description": "Utility class for timing",
  994. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  995. "keywords": [
  996. "timer"
  997. ],
  998. "time": "2017-02-26T11:10:40+00:00"
  999. },
  1000. {
  1001. "name": "phpunit/php-token-stream",
  1002. "version": "1.4.11",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1006. "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e03f8f67534427a787e21a385a67ec3ca6978ea7",
  1011. "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "ext-tokenizer": "*",
  1016. "php": ">=5.3.3"
  1017. },
  1018. "require-dev": {
  1019. "phpunit/phpunit": "~4.2"
  1020. },
  1021. "type": "library",
  1022. "extra": {
  1023. "branch-alias": {
  1024. "dev-master": "1.4-dev"
  1025. }
  1026. },
  1027. "autoload": {
  1028. "classmap": [
  1029. "src/"
  1030. ]
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "BSD-3-Clause"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Sebastian Bergmann",
  1039. "email": "sebastian@phpunit.de"
  1040. }
  1041. ],
  1042. "description": "Wrapper around PHP's tokenizer extension.",
  1043. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1044. "keywords": [
  1045. "tokenizer"
  1046. ],
  1047. "time": "2017-02-27T10:12:30+00:00"
  1048. },
  1049. {
  1050. "name": "phpunit/phpunit",
  1051. "version": "4.8.35",
  1052. "source": {
  1053. "type": "git",
  1054. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1055. "reference": "791b1a67c25af50e230f841ee7a9c6eba507dc87"
  1056. },
  1057. "dist": {
  1058. "type": "zip",
  1059. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/791b1a67c25af50e230f841ee7a9c6eba507dc87",
  1060. "reference": "791b1a67c25af50e230f841ee7a9c6eba507dc87",
  1061. "shasum": ""
  1062. },
  1063. "require": {
  1064. "ext-dom": "*",
  1065. "ext-json": "*",
  1066. "ext-pcre": "*",
  1067. "ext-reflection": "*",
  1068. "ext-spl": "*",
  1069. "php": ">=5.3.3",
  1070. "phpspec/prophecy": "^1.3.1",
  1071. "phpunit/php-code-coverage": "~2.1",
  1072. "phpunit/php-file-iterator": "~1.4",
  1073. "phpunit/php-text-template": "~1.2",
  1074. "phpunit/php-timer": "^1.0.6",
  1075. "phpunit/phpunit-mock-objects": "~2.3",
  1076. "sebastian/comparator": "~1.2.2",
  1077. "sebastian/diff": "~1.2",
  1078. "sebastian/environment": "~1.3",
  1079. "sebastian/exporter": "~1.2",
  1080. "sebastian/global-state": "~1.0",
  1081. "sebastian/version": "~1.0",
  1082. "symfony/yaml": "~2.1|~3.0"
  1083. },
  1084. "suggest": {
  1085. "phpunit/php-invoker": "~1.1"
  1086. },
  1087. "bin": [
  1088. "phpunit"
  1089. ],
  1090. "type": "library",
  1091. "extra": {
  1092. "branch-alias": {
  1093. "dev-master": "4.8.x-dev"
  1094. }
  1095. },
  1096. "autoload": {
  1097. "classmap": [
  1098. "src/"
  1099. ]
  1100. },
  1101. "notification-url": "https://packagist.org/downloads/",
  1102. "license": [
  1103. "BSD-3-Clause"
  1104. ],
  1105. "authors": [
  1106. {
  1107. "name": "Sebastian Bergmann",
  1108. "email": "sebastian@phpunit.de",
  1109. "role": "lead"
  1110. }
  1111. ],
  1112. "description": "The PHP Unit Testing framework.",
  1113. "homepage": "https://phpunit.de/",
  1114. "keywords": [
  1115. "phpunit",
  1116. "testing",
  1117. "xunit"
  1118. ],
  1119. "time": "2017-02-06T05:18:07+00:00"
  1120. },
  1121. {
  1122. "name": "phpunit/phpunit-mock-objects",
  1123. "version": "2.3.8",
  1124. "source": {
  1125. "type": "git",
  1126. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1127. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  1128. },
  1129. "dist": {
  1130. "type": "zip",
  1131. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1132. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1133. "shasum": ""
  1134. },
  1135. "require": {
  1136. "doctrine/instantiator": "^1.0.2",
  1137. "php": ">=5.3.3",
  1138. "phpunit/php-text-template": "~1.2",
  1139. "sebastian/exporter": "~1.2"
  1140. },
  1141. "require-dev": {
  1142. "phpunit/phpunit": "~4.4"
  1143. },
  1144. "suggest": {
  1145. "ext-soap": "*"
  1146. },
  1147. "type": "library",
  1148. "extra": {
  1149. "branch-alias": {
  1150. "dev-master": "2.3.x-dev"
  1151. }
  1152. },
  1153. "autoload": {
  1154. "classmap": [
  1155. "src/"
  1156. ]
  1157. },
  1158. "notification-url": "https://packagist.org/downloads/",
  1159. "license": [
  1160. "BSD-3-Clause"
  1161. ],
  1162. "authors": [
  1163. {
  1164. "name": "Sebastian Bergmann",
  1165. "email": "sb@sebastian-bergmann.de",
  1166. "role": "lead"
  1167. }
  1168. ],
  1169. "description": "Mock Object library for PHPUnit",
  1170. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1171. "keywords": [
  1172. "mock",
  1173. "xunit"
  1174. ],
  1175. "time": "2015-10-02T06:51:40+00:00"
  1176. },
  1177. {
  1178. "name": "satooshi/php-coveralls",
  1179. "version": "v1.0.1",
  1180. "source": {
  1181. "type": "git",
  1182. "url": "https://github.com/satooshi/php-coveralls.git",
  1183. "reference": "da51d304fe8622bf9a6da39a8446e7afd432115c"
  1184. },
  1185. "dist": {
  1186. "type": "zip",
  1187. "url": "https://api.github.com/repos/satooshi/php-coveralls/zipball/da51d304fe8622bf9a6da39a8446e7afd432115c",
  1188. "reference": "da51d304fe8622bf9a6da39a8446e7afd432115c",
  1189. "shasum": ""
  1190. },
  1191. "require": {
  1192. "ext-json": "*",
  1193. "ext-simplexml": "*",
  1194. "guzzle/guzzle": "^2.8|^3.0",
  1195. "php": ">=5.3.3",
  1196. "psr/log": "^1.0",
  1197. "symfony/config": "^2.1|^3.0",
  1198. "symfony/console": "^2.1|^3.0",
  1199. "symfony/stopwatch": "^2.0|^3.0",
  1200. "symfony/yaml": "^2.0|^3.0"
  1201. },
  1202. "suggest": {
  1203. "symfony/http-kernel": "Allows Symfony integration"
  1204. },
  1205. "bin": [
  1206. "bin/coveralls"
  1207. ],
  1208. "type": "library",
  1209. "autoload": {
  1210. "psr-4": {
  1211. "Satooshi\\": "src/Satooshi/"
  1212. }
  1213. },
  1214. "notification-url": "https://packagist.org/downloads/",
  1215. "license": [
  1216. "MIT"
  1217. ],
  1218. "authors": [
  1219. {
  1220. "name": "Kitamura Satoshi",
  1221. "email": "with.no.parachute@gmail.com",
  1222. "homepage": "https://www.facebook.com/satooshi.jp"
  1223. }
  1224. ],
  1225. "description": "PHP client library for Coveralls API",
  1226. "homepage": "https://github.com/satooshi/php-coveralls",
  1227. "keywords": [
  1228. "ci",
  1229. "coverage",
  1230. "github",
  1231. "test"
  1232. ],
  1233. "time": "2016-01-20T17:35:46+00:00"
  1234. },
  1235. {
  1236. "name": "sebastian/comparator",
  1237. "version": "1.2.4",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/sebastianbergmann/comparator.git",
  1241. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1246. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "php": ">=5.3.3",
  1251. "sebastian/diff": "~1.2",
  1252. "sebastian/exporter": "~1.2 || ~2.0"
  1253. },
  1254. "require-dev": {
  1255. "phpunit/phpunit": "~4.4"
  1256. },
  1257. "type": "library",
  1258. "extra": {
  1259. "branch-alias": {
  1260. "dev-master": "1.2.x-dev"
  1261. }
  1262. },
  1263. "autoload": {
  1264. "classmap": [
  1265. "src/"
  1266. ]
  1267. },
  1268. "notification-url": "https://packagist.org/downloads/",
  1269. "license": [
  1270. "BSD-3-Clause"
  1271. ],
  1272. "authors": [
  1273. {
  1274. "name": "Jeff Welch",
  1275. "email": "whatthejeff@gmail.com"
  1276. },
  1277. {
  1278. "name": "Volker Dusch",
  1279. "email": "github@wallbash.com"
  1280. },
  1281. {
  1282. "name": "Bernhard Schussek",
  1283. "email": "bschussek@2bepublished.at"
  1284. },
  1285. {
  1286. "name": "Sebastian Bergmann",
  1287. "email": "sebastian@phpunit.de"
  1288. }
  1289. ],
  1290. "description": "Provides the functionality to compare PHP values for equality",
  1291. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1292. "keywords": [
  1293. "comparator",
  1294. "compare",
  1295. "equality"
  1296. ],
  1297. "time": "2017-01-29T09:50:25+00:00"
  1298. },
  1299. {
  1300. "name": "sebastian/diff",
  1301. "version": "1.4.1",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://github.com/sebastianbergmann/diff.git",
  1305. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
  1310. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
  1311. "shasum": ""
  1312. },
  1313. "require": {
  1314. "php": ">=5.3.3"
  1315. },
  1316. "require-dev": {
  1317. "phpunit/phpunit": "~4.8"
  1318. },
  1319. "type": "library",
  1320. "extra": {
  1321. "branch-alias": {
  1322. "dev-master": "1.4-dev"
  1323. }
  1324. },
  1325. "autoload": {
  1326. "classmap": [
  1327. "src/"
  1328. ]
  1329. },
  1330. "notification-url": "https://packagist.org/downloads/",
  1331. "license": [
  1332. "BSD-3-Clause"
  1333. ],
  1334. "authors": [
  1335. {
  1336. "name": "Kore Nordmann",
  1337. "email": "mail@kore-nordmann.de"
  1338. },
  1339. {
  1340. "name": "Sebastian Bergmann",
  1341. "email": "sebastian@phpunit.de"
  1342. }
  1343. ],
  1344. "description": "Diff implementation",
  1345. "homepage": "https://github.com/sebastianbergmann/diff",
  1346. "keywords": [
  1347. "diff"
  1348. ],
  1349. "time": "2015-12-08T07:14:41+00:00"
  1350. },
  1351. {
  1352. "name": "sebastian/environment",
  1353. "version": "1.3.8",
  1354. "source": {
  1355. "type": "git",
  1356. "url": "https://github.com/sebastianbergmann/environment.git",
  1357. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  1358. },
  1359. "dist": {
  1360. "type": "zip",
  1361. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1362. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1363. "shasum": ""
  1364. },
  1365. "require": {
  1366. "php": "^5.3.3 || ^7.0"
  1367. },
  1368. "require-dev": {
  1369. "phpunit/phpunit": "^4.8 || ^5.0"
  1370. },
  1371. "type": "library",
  1372. "extra": {
  1373. "branch-alias": {
  1374. "dev-master": "1.3.x-dev"
  1375. }
  1376. },
  1377. "autoload": {
  1378. "classmap": [
  1379. "src/"
  1380. ]
  1381. },
  1382. "notification-url": "https://packagist.org/downloads/",
  1383. "license": [
  1384. "BSD-3-Clause"
  1385. ],
  1386. "authors": [
  1387. {
  1388. "name": "Sebastian Bergmann",
  1389. "email": "sebastian@phpunit.de"
  1390. }
  1391. ],
  1392. "description": "Provides functionality to handle HHVM/PHP environments",
  1393. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1394. "keywords": [
  1395. "Xdebug",
  1396. "environment",
  1397. "hhvm"
  1398. ],
  1399. "time": "2016-08-18T05:49:44+00:00"
  1400. },
  1401. {
  1402. "name": "sebastian/exporter",
  1403. "version": "1.2.2",
  1404. "source": {
  1405. "type": "git",
  1406. "url": "https://github.com/sebastianbergmann/exporter.git",
  1407. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  1408. },
  1409. "dist": {
  1410. "type": "zip",
  1411. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  1412. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  1413. "shasum": ""
  1414. },
  1415. "require": {
  1416. "php": ">=5.3.3",
  1417. "sebastian/recursion-context": "~1.0"
  1418. },
  1419. "require-dev": {
  1420. "ext-mbstring": "*",
  1421. "phpunit/phpunit": "~4.4"
  1422. },
  1423. "type": "library",
  1424. "extra": {
  1425. "branch-alias": {
  1426. "dev-master": "1.3.x-dev"
  1427. }
  1428. },
  1429. "autoload": {
  1430. "classmap": [
  1431. "src/"
  1432. ]
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "BSD-3-Clause"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "Jeff Welch",
  1441. "email": "whatthejeff@gmail.com"
  1442. },
  1443. {
  1444. "name": "Volker Dusch",
  1445. "email": "github@wallbash.com"
  1446. },
  1447. {
  1448. "name": "Bernhard Schussek",
  1449. "email": "bschussek@2bepublished.at"
  1450. },
  1451. {
  1452. "name": "Sebastian Bergmann",
  1453. "email": "sebastian@phpunit.de"
  1454. },
  1455. {
  1456. "name": "Adam Harvey",
  1457. "email": "aharvey@php.net"
  1458. }
  1459. ],
  1460. "description": "Provides the functionality to export PHP variables for visualization",
  1461. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1462. "keywords": [
  1463. "export",
  1464. "exporter"
  1465. ],
  1466. "time": "2016-06-17T09:04:28+00:00"
  1467. },
  1468. {
  1469. "name": "sebastian/global-state",
  1470. "version": "1.1.1",
  1471. "source": {
  1472. "type": "git",
  1473. "url": "https://github.com/sebastianbergmann/global-state.git",
  1474. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  1475. },
  1476. "dist": {
  1477. "type": "zip",
  1478. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1479. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1480. "shasum": ""
  1481. },
  1482. "require": {
  1483. "php": ">=5.3.3"
  1484. },
  1485. "require-dev": {
  1486. "phpunit/phpunit": "~4.2"
  1487. },
  1488. "suggest": {
  1489. "ext-uopz": "*"
  1490. },
  1491. "type": "library",
  1492. "extra": {
  1493. "branch-alias": {
  1494. "dev-master": "1.0-dev"
  1495. }
  1496. },
  1497. "autoload": {
  1498. "classmap": [
  1499. "src/"
  1500. ]
  1501. },
  1502. "notification-url": "https://packagist.org/downloads/",
  1503. "license": [
  1504. "BSD-3-Clause"
  1505. ],
  1506. "authors": [
  1507. {
  1508. "name": "Sebastian Bergmann",
  1509. "email": "sebastian@phpunit.de"
  1510. }
  1511. ],
  1512. "description": "Snapshotting of global state",
  1513. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1514. "keywords": [
  1515. "global state"
  1516. ],
  1517. "time": "2015-10-12T03:26:01+00:00"
  1518. },
  1519. {
  1520. "name": "sebastian/recursion-context",
  1521. "version": "1.0.5",
  1522. "source": {
  1523. "type": "git",
  1524. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1525. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  1526. },
  1527. "dist": {
  1528. "type": "zip",
  1529. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  1530. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  1531. "shasum": ""
  1532. },
  1533. "require": {
  1534. "php": ">=5.3.3"
  1535. },
  1536. "require-dev": {
  1537. "phpunit/phpunit": "~4.4"
  1538. },
  1539. "type": "library",
  1540. "extra": {
  1541. "branch-alias": {
  1542. "dev-master": "1.0.x-dev"
  1543. }
  1544. },
  1545. "autoload": {
  1546. "classmap": [
  1547. "src/"
  1548. ]
  1549. },
  1550. "notification-url": "https://packagist.org/downloads/",
  1551. "license": [
  1552. "BSD-3-Clause"
  1553. ],
  1554. "authors": [
  1555. {
  1556. "name": "Jeff Welch",
  1557. "email": "whatthejeff@gmail.com"
  1558. },
  1559. {
  1560. "name": "Sebastian Bergmann",
  1561. "email": "sebastian@phpunit.de"
  1562. },
  1563. {
  1564. "name": "Adam Harvey",
  1565. "email": "aharvey@php.net"
  1566. }
  1567. ],
  1568. "description": "Provides functionality to recursively process PHP variables",
  1569. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1570. "time": "2016-10-03T07:41:43+00:00"
  1571. },
  1572. {
  1573. "name": "sebastian/version",
  1574. "version": "1.0.6",
  1575. "source": {
  1576. "type": "git",
  1577. "url": "https://github.com/sebastianbergmann/version.git",
  1578. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  1579. },
  1580. "dist": {
  1581. "type": "zip",
  1582. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1583. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1584. "shasum": ""
  1585. },
  1586. "type": "library",
  1587. "autoload": {
  1588. "classmap": [
  1589. "src/"
  1590. ]
  1591. },
  1592. "notification-url": "https://packagist.org/downloads/",
  1593. "license": [
  1594. "BSD-3-Clause"
  1595. ],
  1596. "authors": [
  1597. {
  1598. "name": "Sebastian Bergmann",
  1599. "email": "sebastian@phpunit.de",
  1600. "role": "lead"
  1601. }
  1602. ],
  1603. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1604. "homepage": "https://github.com/sebastianbergmann/version",
  1605. "time": "2015-06-21T13:59:46+00:00"
  1606. },
  1607. {
  1608. "name": "squizlabs/php_codesniffer",
  1609. "version": "2.8.1",
  1610. "source": {
  1611. "type": "git",
  1612. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  1613. "reference": "d7cf0d894e8aa4c73712ee4a331cc1eaa37cdc7d"
  1614. },
  1615. "dist": {
  1616. "type": "zip",
  1617. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/d7cf0d894e8aa4c73712ee4a331cc1eaa37cdc7d",
  1618. "reference": "d7cf0d894e8aa4c73712ee4a331cc1eaa37cdc7d",
  1619. "shasum": ""
  1620. },
  1621. "require": {
  1622. "ext-simplexml": "*",
  1623. "ext-tokenizer": "*",
  1624. "ext-xmlwriter": "*",
  1625. "php": ">=5.1.2"
  1626. },
  1627. "require-dev": {
  1628. "phpunit/phpunit": "~4.0"
  1629. },
  1630. "bin": [
  1631. "scripts/phpcs",
  1632. "scripts/phpcbf"
  1633. ],
  1634. "type": "library",
  1635. "extra": {
  1636. "branch-alias": {
  1637. "dev-master": "2.x-dev"
  1638. }
  1639. },
  1640. "autoload": {
  1641. "classmap": [
  1642. "CodeSniffer.php",
  1643. "CodeSniffer/CLI.php",
  1644. "CodeSniffer/Exception.php",
  1645. "CodeSniffer/File.php",
  1646. "CodeSniffer/Fixer.php",
  1647. "CodeSniffer/Report.php",
  1648. "CodeSniffer/Reporting.php",
  1649. "CodeSniffer/Sniff.php",
  1650. "CodeSniffer/Tokens.php",
  1651. "CodeSniffer/Reports/",
  1652. "CodeSniffer/Tokenizers/",
  1653. "CodeSniffer/DocGenerators/",
  1654. "CodeSniffer/Standards/AbstractPatternSniff.php",
  1655. "CodeSniffer/Standards/AbstractScopeSniff.php",
  1656. "CodeSniffer/Standards/AbstractVariableSniff.php",
  1657. "CodeSniffer/Standards/IncorrectPatternException.php",
  1658. "CodeSniffer/Standards/Generic/Sniffs/",
  1659. "CodeSniffer/Standards/MySource/Sniffs/",
  1660. "CodeSniffer/Standards/PEAR/Sniffs/",
  1661. "CodeSniffer/Standards/PSR1/Sniffs/",
  1662. "CodeSniffer/Standards/PSR2/Sniffs/",
  1663. "CodeSniffer/Standards/Squiz/Sniffs/",
  1664. "CodeSniffer/Standards/Zend/Sniffs/"
  1665. ]
  1666. },
  1667. "notification-url": "https://packagist.org/downloads/",
  1668. "license": [
  1669. "BSD-3-Clause"
  1670. ],
  1671. "authors": [
  1672. {
  1673. "name": "Greg Sherwood",
  1674. "role": "lead"
  1675. }
  1676. ],
  1677. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  1678. "homepage": "http://www.squizlabs.com/php-codesniffer",
  1679. "keywords": [
  1680. "phpcs",
  1681. "standards"
  1682. ],
  1683. "time": "2017-03-01T22:17:45+00:00"
  1684. },
  1685. {
  1686. "name": "symfony/config",
  1687. "version": "v3.2.6",
  1688. "source": {
  1689. "type": "git",
  1690. "url": "https://github.com/symfony/config.git",
  1691. "reference": "741d6d4cd1414d67d48eb71aba6072b46ba740c2"
  1692. },
  1693. "dist": {
  1694. "type": "zip",
  1695. "url": "https://api.github.com/repos/symfony/config/zipball/741d6d4cd1414d67d48eb71aba6072b46ba740c2",
  1696. "reference": "741d6d4cd1414d67d48eb71aba6072b46ba740c2",
  1697. "shasum": ""
  1698. },
  1699. "require": {
  1700. "php": ">=5.5.9",
  1701. "symfony/filesystem": "~2.8|~3.0"
  1702. },
  1703. "require-dev": {
  1704. "symfony/yaml": "~3.0"
  1705. },
  1706. "suggest": {
  1707. "symfony/yaml": "To use the yaml reference dumper"
  1708. },
  1709. "type": "library",
  1710. "extra": {
  1711. "branch-alias": {
  1712. "dev-master": "3.2-dev"
  1713. }
  1714. },
  1715. "autoload": {
  1716. "psr-4": {
  1717. "Symfony\\Component\\Config\\": ""
  1718. },
  1719. "exclude-from-classmap": [
  1720. "/Tests/"
  1721. ]
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "MIT"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "Fabien Potencier",
  1730. "email": "fabien@symfony.com"
  1731. },
  1732. {
  1733. "name": "Symfony Community",
  1734. "homepage": "https://symfony.com/contributors"
  1735. }
  1736. ],
  1737. "description": "Symfony Config Component",
  1738. "homepage": "https://symfony.com",
  1739. "time": "2017-03-01T18:18:25+00:00"
  1740. },
  1741. {
  1742. "name": "symfony/filesystem",
  1743. "version": "v3.2.6",
  1744. "source": {
  1745. "type": "git",
  1746. "url": "https://github.com/symfony/filesystem.git",
  1747. "reference": "bc0f17bed914df2cceb989972c3b996043c4da4a"
  1748. },
  1749. "dist": {
  1750. "type": "zip",
  1751. "url": "https://api.github.com/repos/symfony/filesystem/zipball/bc0f17bed914df2cceb989972c3b996043c4da4a",
  1752. "reference": "bc0f17bed914df2cceb989972c3b996043c4da4a",
  1753. "shasum": ""
  1754. },
  1755. "require": {
  1756. "php": ">=5.5.9"
  1757. },
  1758. "type": "library",
  1759. "extra": {
  1760. "branch-alias": {
  1761. "dev-master": "3.2-dev"
  1762. }
  1763. },
  1764. "autoload": {
  1765. "psr-4": {
  1766. "Symfony\\Component\\Filesystem\\": ""
  1767. },
  1768. "exclude-from-classmap": [
  1769. "/Tests/"
  1770. ]
  1771. },
  1772. "notification-url": "https://packagist.org/downloads/",
  1773. "license": [
  1774. "MIT"
  1775. ],
  1776. "authors": [
  1777. {
  1778. "name": "Fabien Potencier",
  1779. "email": "fabien@symfony.com"
  1780. },
  1781. {
  1782. "name": "Symfony Community",
  1783. "homepage": "https://symfony.com/contributors"
  1784. }
  1785. ],
  1786. "description": "Symfony Filesystem Component",
  1787. "homepage": "https://symfony.com",
  1788. "time": "2017-03-06T19:30:27+00:00"
  1789. },
  1790. {
  1791. "name": "symfony/stopwatch",
  1792. "version": "v3.2.6",
  1793. "source": {
  1794. "type": "git",
  1795. "url": "https://github.com/symfony/stopwatch.git",
  1796. "reference": "c5ee0f8650c84b4d36a5f76b3b504233feaabf75"
  1797. },
  1798. "dist": {
  1799. "type": "zip",
  1800. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/c5ee0f8650c84b4d36a5f76b3b504233feaabf75",
  1801. "reference": "c5ee0f8650c84b4d36a5f76b3b504233feaabf75",
  1802. "shasum": ""
  1803. },
  1804. "require": {
  1805. "php": ">=5.5.9"
  1806. },
  1807. "type": "library",
  1808. "extra": {
  1809. "branch-alias": {
  1810. "dev-master": "3.2-dev"
  1811. }
  1812. },
  1813. "autoload": {
  1814. "psr-4": {
  1815. "Symfony\\Component\\Stopwatch\\": ""
  1816. },
  1817. "exclude-from-classmap": [
  1818. "/Tests/"
  1819. ]
  1820. },
  1821. "notification-url": "https://packagist.org/downloads/",
  1822. "license": [
  1823. "MIT"
  1824. ],
  1825. "authors": [
  1826. {
  1827. "name": "Fabien Potencier",
  1828. "email": "fabien@symfony.com"
  1829. },
  1830. {
  1831. "name": "Symfony Community",
  1832. "homepage": "https://symfony.com/contributors"
  1833. }
  1834. ],
  1835. "description": "Symfony Stopwatch Component",
  1836. "homepage": "https://symfony.com",
  1837. "time": "2017-02-18T17:28:00+00:00"
  1838. },
  1839. {
  1840. "name": "symfony/yaml",
  1841. "version": "v3.2.6",
  1842. "source": {
  1843. "type": "git",
  1844. "url": "https://github.com/symfony/yaml.git",
  1845. "reference": "093e416ad096355149e265ea2e4cc1f9ee40ab1a"
  1846. },
  1847. "dist": {
  1848. "type": "zip",
  1849. "url": "https://api.github.com/repos/symfony/yaml/zipball/093e416ad096355149e265ea2e4cc1f9ee40ab1a",
  1850. "reference": "093e416ad096355149e265ea2e4cc1f9ee40ab1a",
  1851. "shasum": ""
  1852. },
  1853. "require": {
  1854. "php": ">=5.5.9"
  1855. },
  1856. "require-dev": {
  1857. "symfony/console": "~2.8|~3.0"
  1858. },
  1859. "suggest": {
  1860. "symfony/console": "For validating YAML files using the lint command"
  1861. },
  1862. "type": "library",
  1863. "extra": {
  1864. "branch-alias": {
  1865. "dev-master": "3.2-dev"
  1866. }
  1867. },
  1868. "autoload": {
  1869. "psr-4": {
  1870. "Symfony\\Component\\Yaml\\": ""
  1871. },
  1872. "exclude-from-classmap": [
  1873. "/Tests/"
  1874. ]
  1875. },
  1876. "notification-url": "https://packagist.org/downloads/",
  1877. "license": [
  1878. "MIT"
  1879. ],
  1880. "authors": [
  1881. {
  1882. "name": "Fabien Potencier",
  1883. "email": "fabien@symfony.com"
  1884. },
  1885. {
  1886. "name": "Symfony Community",
  1887. "homepage": "https://symfony.com/contributors"
  1888. }
  1889. ],
  1890. "description": "Symfony Yaml Component",
  1891. "homepage": "https://symfony.com",
  1892. "time": "2017-03-07T16:47:02+00:00"
  1893. }
  1894. ],
  1895. "aliases": [],
  1896. "minimum-stability": "stable",
  1897. "stability-flags": [],
  1898. "prefer-stable": false,
  1899. "prefer-lowest": false,
  1900. "platform": {
  1901. "php": ">=5.4.0"
  1902. },
  1903. "platform-dev": []
  1904. }