composer.lock 61 KB

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