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": "0367be765bb2ea718da11dbb9b3ed793",
  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.5.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/composer/semver.git",
  71. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  76. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  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": "2019-03-19T17:25:45+00:00"
  126. },
  127. {
  128. "name": "composer/spdx-licenses",
  129. "version": "1.5.1",
  130. "source": {
  131. "type": "git",
  132. "url": "https://github.com/composer/spdx-licenses.git",
  133. "reference": "a1aa51cf3ab838b83b0867b14e56fc20fbd55b3d"
  134. },
  135. "dist": {
  136. "type": "zip",
  137. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/a1aa51cf3ab838b83b0867b14e56fc20fbd55b3d",
  138. "reference": "a1aa51cf3ab838b83b0867b14e56fc20fbd55b3d",
  139. "shasum": ""
  140. },
  141. "require": {
  142. "php": "^5.3.2 || ^7.0 || ^8.0"
  143. },
  144. "require-dev": {
  145. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  146. },
  147. "type": "library",
  148. "extra": {
  149. "branch-alias": {
  150. "dev-master": "1.x-dev"
  151. }
  152. },
  153. "autoload": {
  154. "psr-4": {
  155. "Composer\\Spdx\\": "src"
  156. }
  157. },
  158. "notification-url": "https://packagist.org/downloads/",
  159. "license": [
  160. "MIT"
  161. ],
  162. "authors": [
  163. {
  164. "name": "Nils Adermann",
  165. "email": "naderman@naderman.de",
  166. "homepage": "http://www.naderman.de"
  167. },
  168. {
  169. "name": "Jordi Boggiano",
  170. "email": "j.boggiano@seld.be",
  171. "homepage": "http://seld.be"
  172. },
  173. {
  174. "name": "Rob Bast",
  175. "email": "rob.bast@gmail.com",
  176. "homepage": "http://robbast.nl"
  177. }
  178. ],
  179. "description": "SPDX licenses list and validation library.",
  180. "keywords": [
  181. "license",
  182. "spdx",
  183. "validator"
  184. ],
  185. "time": "2019-03-26T10:23:26+00:00"
  186. },
  187. {
  188. "name": "composer/xdebug-handler",
  189. "version": "1.3.2",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/composer/xdebug-handler.git",
  193. "reference": "d17708133b6c276d6e42ef887a877866b909d892"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/d17708133b6c276d6e42ef887a877866b909d892",
  198. "reference": "d17708133b6c276d6e42ef887a877866b909d892",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "php": "^5.3.2 || ^7.0",
  203. "psr/log": "^1.0"
  204. },
  205. "require-dev": {
  206. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  207. },
  208. "type": "library",
  209. "autoload": {
  210. "psr-4": {
  211. "Composer\\XdebugHandler\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "MIT"
  217. ],
  218. "authors": [
  219. {
  220. "name": "John Stevenson",
  221. "email": "john-stevenson@blueyonder.co.uk"
  222. }
  223. ],
  224. "description": "Restarts a process without xdebug.",
  225. "keywords": [
  226. "Xdebug",
  227. "performance"
  228. ],
  229. "time": "2019-01-28T20:25:53+00:00"
  230. },
  231. {
  232. "name": "justinrainbow/json-schema",
  233. "version": "5.2.8",
  234. "source": {
  235. "type": "git",
  236. "url": "https://github.com/justinrainbow/json-schema.git",
  237. "reference": "dcb6e1006bb5fd1e392b4daa68932880f37550d4"
  238. },
  239. "dist": {
  240. "type": "zip",
  241. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/dcb6e1006bb5fd1e392b4daa68932880f37550d4",
  242. "reference": "dcb6e1006bb5fd1e392b4daa68932880f37550d4",
  243. "shasum": ""
  244. },
  245. "require": {
  246. "php": ">=5.3.3"
  247. },
  248. "require-dev": {
  249. "friendsofphp/php-cs-fixer": "~2.2.20",
  250. "json-schema/json-schema-test-suite": "1.2.0",
  251. "phpunit/phpunit": "^4.8.35"
  252. },
  253. "bin": [
  254. "bin/validate-json"
  255. ],
  256. "type": "library",
  257. "extra": {
  258. "branch-alias": {
  259. "dev-master": "5.0.x-dev"
  260. }
  261. },
  262. "autoload": {
  263. "psr-4": {
  264. "JsonSchema\\": "src/JsonSchema/"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Bruno Prieto Reis",
  274. "email": "bruno.p.reis@gmail.com"
  275. },
  276. {
  277. "name": "Justin Rainbow",
  278. "email": "justin.rainbow@gmail.com"
  279. },
  280. {
  281. "name": "Igor Wiedler",
  282. "email": "igor@wiedler.ch"
  283. },
  284. {
  285. "name": "Robert Schönthal",
  286. "email": "seroscho@googlemail.com"
  287. }
  288. ],
  289. "description": "A library to validate a json schema.",
  290. "homepage": "https://github.com/justinrainbow/json-schema",
  291. "keywords": [
  292. "json",
  293. "schema"
  294. ],
  295. "time": "2019-01-14T23:55:14+00:00"
  296. },
  297. {
  298. "name": "psr/log",
  299. "version": "1.1.0",
  300. "source": {
  301. "type": "git",
  302. "url": "https://github.com/php-fig/log.git",
  303. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  304. },
  305. "dist": {
  306. "type": "zip",
  307. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  308. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  309. "shasum": ""
  310. },
  311. "require": {
  312. "php": ">=5.3.0"
  313. },
  314. "type": "library",
  315. "extra": {
  316. "branch-alias": {
  317. "dev-master": "1.0.x-dev"
  318. }
  319. },
  320. "autoload": {
  321. "psr-4": {
  322. "Psr\\Log\\": "Psr/Log/"
  323. }
  324. },
  325. "notification-url": "https://packagist.org/downloads/",
  326. "license": [
  327. "MIT"
  328. ],
  329. "authors": [
  330. {
  331. "name": "PHP-FIG",
  332. "homepage": "http://www.php-fig.org/"
  333. }
  334. ],
  335. "description": "Common interface for logging libraries",
  336. "homepage": "https://github.com/php-fig/log",
  337. "keywords": [
  338. "log",
  339. "psr",
  340. "psr-3"
  341. ],
  342. "time": "2018-11-20T15:27:04+00:00"
  343. },
  344. {
  345. "name": "seld/jsonlint",
  346. "version": "1.7.1",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/Seldaek/jsonlint.git",
  350. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  355. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "php": "^5.3 || ^7.0"
  360. },
  361. "require-dev": {
  362. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  363. },
  364. "bin": [
  365. "bin/jsonlint"
  366. ],
  367. "type": "library",
  368. "autoload": {
  369. "psr-4": {
  370. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  371. }
  372. },
  373. "notification-url": "https://packagist.org/downloads/",
  374. "license": [
  375. "MIT"
  376. ],
  377. "authors": [
  378. {
  379. "name": "Jordi Boggiano",
  380. "email": "j.boggiano@seld.be",
  381. "homepage": "http://seld.be"
  382. }
  383. ],
  384. "description": "JSON Linter",
  385. "keywords": [
  386. "json",
  387. "linter",
  388. "parser",
  389. "validator"
  390. ],
  391. "time": "2018-01-24T12:46:19+00:00"
  392. },
  393. {
  394. "name": "seld/phar-utils",
  395. "version": "1.0.1",
  396. "source": {
  397. "type": "git",
  398. "url": "https://github.com/Seldaek/phar-utils.git",
  399. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  400. },
  401. "dist": {
  402. "type": "zip",
  403. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  404. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  405. "shasum": ""
  406. },
  407. "require": {
  408. "php": ">=5.3"
  409. },
  410. "type": "library",
  411. "extra": {
  412. "branch-alias": {
  413. "dev-master": "1.x-dev"
  414. }
  415. },
  416. "autoload": {
  417. "psr-4": {
  418. "Seld\\PharUtils\\": "src/"
  419. }
  420. },
  421. "notification-url": "https://packagist.org/downloads/",
  422. "license": [
  423. "MIT"
  424. ],
  425. "authors": [
  426. {
  427. "name": "Jordi Boggiano",
  428. "email": "j.boggiano@seld.be"
  429. }
  430. ],
  431. "description": "PHAR file format utilities, for when PHP phars you up",
  432. "keywords": [
  433. "phra"
  434. ],
  435. "time": "2015-10-13T18:44:15+00:00"
  436. },
  437. {
  438. "name": "symfony/console",
  439. "version": "v2.8.49",
  440. "source": {
  441. "type": "git",
  442. "url": "https://github.com/symfony/console.git",
  443. "reference": "cbcf4b5e233af15cd2bbd50dee1ccc9b7927dc12"
  444. },
  445. "dist": {
  446. "type": "zip",
  447. "url": "https://api.github.com/repos/symfony/console/zipball/cbcf4b5e233af15cd2bbd50dee1ccc9b7927dc12",
  448. "reference": "cbcf4b5e233af15cd2bbd50dee1ccc9b7927dc12",
  449. "shasum": ""
  450. },
  451. "require": {
  452. "php": ">=5.3.9",
  453. "symfony/debug": "^2.7.2|~3.0.0",
  454. "symfony/polyfill-mbstring": "~1.0"
  455. },
  456. "require-dev": {
  457. "psr/log": "~1.0",
  458. "symfony/event-dispatcher": "~2.1|~3.0.0",
  459. "symfony/process": "~2.1|~3.0.0"
  460. },
  461. "suggest": {
  462. "psr/log-implementation": "For using the console logger",
  463. "symfony/event-dispatcher": "",
  464. "symfony/process": ""
  465. },
  466. "type": "library",
  467. "extra": {
  468. "branch-alias": {
  469. "dev-master": "2.8-dev"
  470. }
  471. },
  472. "autoload": {
  473. "psr-4": {
  474. "Symfony\\Component\\Console\\": ""
  475. },
  476. "exclude-from-classmap": [
  477. "/Tests/"
  478. ]
  479. },
  480. "notification-url": "https://packagist.org/downloads/",
  481. "license": [
  482. "MIT"
  483. ],
  484. "authors": [
  485. {
  486. "name": "Fabien Potencier",
  487. "email": "fabien@symfony.com"
  488. },
  489. {
  490. "name": "Symfony Community",
  491. "homepage": "https://symfony.com/contributors"
  492. }
  493. ],
  494. "description": "Symfony Console Component",
  495. "homepage": "https://symfony.com",
  496. "time": "2018-11-20T15:55:20+00:00"
  497. },
  498. {
  499. "name": "symfony/debug",
  500. "version": "v2.8.49",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/symfony/debug.git",
  504. "reference": "74251c8d50dd3be7c4ce0c7b862497cdc641a5d0"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/symfony/debug/zipball/74251c8d50dd3be7c4ce0c7b862497cdc641a5d0",
  509. "reference": "74251c8d50dd3be7c4ce0c7b862497cdc641a5d0",
  510. "shasum": ""
  511. },
  512. "require": {
  513. "php": ">=5.3.9",
  514. "psr/log": "~1.0"
  515. },
  516. "conflict": {
  517. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  518. },
  519. "require-dev": {
  520. "symfony/class-loader": "~2.2|~3.0.0",
  521. "symfony/http-kernel": "~2.3.24|~2.5.9|^2.6.2|~3.0.0"
  522. },
  523. "type": "library",
  524. "extra": {
  525. "branch-alias": {
  526. "dev-master": "2.8-dev"
  527. }
  528. },
  529. "autoload": {
  530. "psr-4": {
  531. "Symfony\\Component\\Debug\\": ""
  532. },
  533. "exclude-from-classmap": [
  534. "/Tests/"
  535. ]
  536. },
  537. "notification-url": "https://packagist.org/downloads/",
  538. "license": [
  539. "MIT"
  540. ],
  541. "authors": [
  542. {
  543. "name": "Fabien Potencier",
  544. "email": "fabien@symfony.com"
  545. },
  546. {
  547. "name": "Symfony Community",
  548. "homepage": "https://symfony.com/contributors"
  549. }
  550. ],
  551. "description": "Symfony Debug Component",
  552. "homepage": "https://symfony.com",
  553. "time": "2018-11-11T11:18:13+00:00"
  554. },
  555. {
  556. "name": "symfony/filesystem",
  557. "version": "v2.8.49",
  558. "source": {
  559. "type": "git",
  560. "url": "https://github.com/symfony/filesystem.git",
  561. "reference": "7ae46872dad09dffb7fe1e93a0937097339d0080"
  562. },
  563. "dist": {
  564. "type": "zip",
  565. "url": "https://api.github.com/repos/symfony/filesystem/zipball/7ae46872dad09dffb7fe1e93a0937097339d0080",
  566. "reference": "7ae46872dad09dffb7fe1e93a0937097339d0080",
  567. "shasum": ""
  568. },
  569. "require": {
  570. "php": ">=5.3.9",
  571. "symfony/polyfill-ctype": "~1.8"
  572. },
  573. "type": "library",
  574. "extra": {
  575. "branch-alias": {
  576. "dev-master": "2.8-dev"
  577. }
  578. },
  579. "autoload": {
  580. "psr-4": {
  581. "Symfony\\Component\\Filesystem\\": ""
  582. },
  583. "exclude-from-classmap": [
  584. "/Tests/"
  585. ]
  586. },
  587. "notification-url": "https://packagist.org/downloads/",
  588. "license": [
  589. "MIT"
  590. ],
  591. "authors": [
  592. {
  593. "name": "Fabien Potencier",
  594. "email": "fabien@symfony.com"
  595. },
  596. {
  597. "name": "Symfony Community",
  598. "homepage": "https://symfony.com/contributors"
  599. }
  600. ],
  601. "description": "Symfony Filesystem Component",
  602. "homepage": "https://symfony.com",
  603. "time": "2018-11-11T11:18:13+00:00"
  604. },
  605. {
  606. "name": "symfony/finder",
  607. "version": "v2.8.49",
  608. "source": {
  609. "type": "git",
  610. "url": "https://github.com/symfony/finder.git",
  611. "reference": "1444eac52273e345d9b95129bf914639305a9ba4"
  612. },
  613. "dist": {
  614. "type": "zip",
  615. "url": "https://api.github.com/repos/symfony/finder/zipball/1444eac52273e345d9b95129bf914639305a9ba4",
  616. "reference": "1444eac52273e345d9b95129bf914639305a9ba4",
  617. "shasum": ""
  618. },
  619. "require": {
  620. "php": ">=5.3.9"
  621. },
  622. "type": "library",
  623. "extra": {
  624. "branch-alias": {
  625. "dev-master": "2.8-dev"
  626. }
  627. },
  628. "autoload": {
  629. "psr-4": {
  630. "Symfony\\Component\\Finder\\": ""
  631. },
  632. "exclude-from-classmap": [
  633. "/Tests/"
  634. ]
  635. },
  636. "notification-url": "https://packagist.org/downloads/",
  637. "license": [
  638. "MIT"
  639. ],
  640. "authors": [
  641. {
  642. "name": "Fabien Potencier",
  643. "email": "fabien@symfony.com"
  644. },
  645. {
  646. "name": "Symfony Community",
  647. "homepage": "https://symfony.com/contributors"
  648. }
  649. ],
  650. "description": "Symfony Finder Component",
  651. "homepage": "https://symfony.com",
  652. "time": "2018-11-11T11:18:13+00:00"
  653. },
  654. {
  655. "name": "symfony/polyfill-ctype",
  656. "version": "v1.10.0",
  657. "source": {
  658. "type": "git",
  659. "url": "https://github.com/symfony/polyfill-ctype.git",
  660. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  661. },
  662. "dist": {
  663. "type": "zip",
  664. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  665. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  666. "shasum": ""
  667. },
  668. "require": {
  669. "php": ">=5.3.3"
  670. },
  671. "suggest": {
  672. "ext-ctype": "For best performance"
  673. },
  674. "type": "library",
  675. "extra": {
  676. "branch-alias": {
  677. "dev-master": "1.9-dev"
  678. }
  679. },
  680. "autoload": {
  681. "psr-4": {
  682. "Symfony\\Polyfill\\Ctype\\": ""
  683. },
  684. "files": [
  685. "bootstrap.php"
  686. ]
  687. },
  688. "notification-url": "https://packagist.org/downloads/",
  689. "license": [
  690. "MIT"
  691. ],
  692. "authors": [
  693. {
  694. "name": "Symfony Community",
  695. "homepage": "https://symfony.com/contributors"
  696. },
  697. {
  698. "name": "Gert de Pagter",
  699. "email": "BackEndTea@gmail.com"
  700. }
  701. ],
  702. "description": "Symfony polyfill for ctype functions",
  703. "homepage": "https://symfony.com",
  704. "keywords": [
  705. "compatibility",
  706. "ctype",
  707. "polyfill",
  708. "portable"
  709. ],
  710. "time": "2018-08-06T14:22:27+00:00"
  711. },
  712. {
  713. "name": "symfony/polyfill-mbstring",
  714. "version": "v1.10.0",
  715. "source": {
  716. "type": "git",
  717. "url": "https://github.com/symfony/polyfill-mbstring.git",
  718. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  719. },
  720. "dist": {
  721. "type": "zip",
  722. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  723. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  724. "shasum": ""
  725. },
  726. "require": {
  727. "php": ">=5.3.3"
  728. },
  729. "suggest": {
  730. "ext-mbstring": "For best performance"
  731. },
  732. "type": "library",
  733. "extra": {
  734. "branch-alias": {
  735. "dev-master": "1.9-dev"
  736. }
  737. },
  738. "autoload": {
  739. "psr-4": {
  740. "Symfony\\Polyfill\\Mbstring\\": ""
  741. },
  742. "files": [
  743. "bootstrap.php"
  744. ]
  745. },
  746. "notification-url": "https://packagist.org/downloads/",
  747. "license": [
  748. "MIT"
  749. ],
  750. "authors": [
  751. {
  752. "name": "Nicolas Grekas",
  753. "email": "p@tchwork.com"
  754. },
  755. {
  756. "name": "Symfony Community",
  757. "homepage": "https://symfony.com/contributors"
  758. }
  759. ],
  760. "description": "Symfony polyfill for the Mbstring extension",
  761. "homepage": "https://symfony.com",
  762. "keywords": [
  763. "compatibility",
  764. "mbstring",
  765. "polyfill",
  766. "portable",
  767. "shim"
  768. ],
  769. "time": "2018-09-21T13:07:52+00:00"
  770. },
  771. {
  772. "name": "symfony/process",
  773. "version": "v2.8.49",
  774. "source": {
  775. "type": "git",
  776. "url": "https://github.com/symfony/process.git",
  777. "reference": "c3591a09c78639822b0b290d44edb69bf9f05dc8"
  778. },
  779. "dist": {
  780. "type": "zip",
  781. "url": "https://api.github.com/repos/symfony/process/zipball/c3591a09c78639822b0b290d44edb69bf9f05dc8",
  782. "reference": "c3591a09c78639822b0b290d44edb69bf9f05dc8",
  783. "shasum": ""
  784. },
  785. "require": {
  786. "php": ">=5.3.9"
  787. },
  788. "type": "library",
  789. "extra": {
  790. "branch-alias": {
  791. "dev-master": "2.8-dev"
  792. }
  793. },
  794. "autoload": {
  795. "psr-4": {
  796. "Symfony\\Component\\Process\\": ""
  797. },
  798. "exclude-from-classmap": [
  799. "/Tests/"
  800. ]
  801. },
  802. "notification-url": "https://packagist.org/downloads/",
  803. "license": [
  804. "MIT"
  805. ],
  806. "authors": [
  807. {
  808. "name": "Fabien Potencier",
  809. "email": "fabien@symfony.com"
  810. },
  811. {
  812. "name": "Symfony Community",
  813. "homepage": "https://symfony.com/contributors"
  814. }
  815. ],
  816. "description": "Symfony Process Component",
  817. "homepage": "https://symfony.com",
  818. "time": "2018-11-11T11:18:13+00:00"
  819. }
  820. ],
  821. "packages-dev": [
  822. {
  823. "name": "doctrine/instantiator",
  824. "version": "1.0.5",
  825. "source": {
  826. "type": "git",
  827. "url": "https://github.com/doctrine/instantiator.git",
  828. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  829. },
  830. "dist": {
  831. "type": "zip",
  832. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  833. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  834. "shasum": ""
  835. },
  836. "require": {
  837. "php": ">=5.3,<8.0-DEV"
  838. },
  839. "require-dev": {
  840. "athletic/athletic": "~0.1.8",
  841. "ext-pdo": "*",
  842. "ext-phar": "*",
  843. "phpunit/phpunit": "~4.0",
  844. "squizlabs/php_codesniffer": "~2.0"
  845. },
  846. "type": "library",
  847. "extra": {
  848. "branch-alias": {
  849. "dev-master": "1.0.x-dev"
  850. }
  851. },
  852. "autoload": {
  853. "psr-4": {
  854. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  855. }
  856. },
  857. "notification-url": "https://packagist.org/downloads/",
  858. "license": [
  859. "MIT"
  860. ],
  861. "authors": [
  862. {
  863. "name": "Marco Pivetta",
  864. "email": "ocramius@gmail.com",
  865. "homepage": "http://ocramius.github.com/"
  866. }
  867. ],
  868. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  869. "homepage": "https://github.com/doctrine/instantiator",
  870. "keywords": [
  871. "constructor",
  872. "instantiate"
  873. ],
  874. "time": "2015-06-14T21:17:01+00:00"
  875. },
  876. {
  877. "name": "phpdocumentor/reflection-docblock",
  878. "version": "2.0.5",
  879. "source": {
  880. "type": "git",
  881. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  882. "reference": "e6a969a640b00d8daa3c66518b0405fb41ae0c4b"
  883. },
  884. "dist": {
  885. "type": "zip",
  886. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e6a969a640b00d8daa3c66518b0405fb41ae0c4b",
  887. "reference": "e6a969a640b00d8daa3c66518b0405fb41ae0c4b",
  888. "shasum": ""
  889. },
  890. "require": {
  891. "php": ">=5.3.3"
  892. },
  893. "require-dev": {
  894. "phpunit/phpunit": "~4.0"
  895. },
  896. "suggest": {
  897. "dflydev/markdown": "~1.0",
  898. "erusev/parsedown": "~1.0"
  899. },
  900. "type": "library",
  901. "extra": {
  902. "branch-alias": {
  903. "dev-master": "2.0.x-dev"
  904. }
  905. },
  906. "autoload": {
  907. "psr-0": {
  908. "phpDocumentor": [
  909. "src/"
  910. ]
  911. }
  912. },
  913. "notification-url": "https://packagist.org/downloads/",
  914. "license": [
  915. "MIT"
  916. ],
  917. "authors": [
  918. {
  919. "name": "Mike van Riel",
  920. "email": "mike.vanriel@naenius.com"
  921. }
  922. ],
  923. "time": "2016-01-25T08:17:30+00:00"
  924. },
  925. {
  926. "name": "phpspec/prophecy",
  927. "version": "1.8.0",
  928. "source": {
  929. "type": "git",
  930. "url": "https://github.com/phpspec/prophecy.git",
  931. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  932. },
  933. "dist": {
  934. "type": "zip",
  935. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  936. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  937. "shasum": ""
  938. },
  939. "require": {
  940. "doctrine/instantiator": "^1.0.2",
  941. "php": "^5.3|^7.0",
  942. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  943. "sebastian/comparator": "^1.1|^2.0|^3.0",
  944. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  945. },
  946. "require-dev": {
  947. "phpspec/phpspec": "^2.5|^3.2",
  948. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  949. },
  950. "type": "library",
  951. "extra": {
  952. "branch-alias": {
  953. "dev-master": "1.8.x-dev"
  954. }
  955. },
  956. "autoload": {
  957. "psr-0": {
  958. "Prophecy\\": "src/"
  959. }
  960. },
  961. "notification-url": "https://packagist.org/downloads/",
  962. "license": [
  963. "MIT"
  964. ],
  965. "authors": [
  966. {
  967. "name": "Konstantin Kudryashov",
  968. "email": "ever.zet@gmail.com",
  969. "homepage": "http://everzet.com"
  970. },
  971. {
  972. "name": "Marcello Duarte",
  973. "email": "marcello.duarte@gmail.com"
  974. }
  975. ],
  976. "description": "Highly opinionated mocking framework for PHP 5.3+",
  977. "homepage": "https://github.com/phpspec/prophecy",
  978. "keywords": [
  979. "Double",
  980. "Dummy",
  981. "fake",
  982. "mock",
  983. "spy",
  984. "stub"
  985. ],
  986. "time": "2018-08-05T17:53:17+00:00"
  987. },
  988. {
  989. "name": "phpunit/php-code-coverage",
  990. "version": "2.2.4",
  991. "source": {
  992. "type": "git",
  993. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  994. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  995. },
  996. "dist": {
  997. "type": "zip",
  998. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  999. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  1000. "shasum": ""
  1001. },
  1002. "require": {
  1003. "php": ">=5.3.3",
  1004. "phpunit/php-file-iterator": "~1.3",
  1005. "phpunit/php-text-template": "~1.2",
  1006. "phpunit/php-token-stream": "~1.3",
  1007. "sebastian/environment": "^1.3.2",
  1008. "sebastian/version": "~1.0"
  1009. },
  1010. "require-dev": {
  1011. "ext-xdebug": ">=2.1.4",
  1012. "phpunit/phpunit": "~4"
  1013. },
  1014. "suggest": {
  1015. "ext-dom": "*",
  1016. "ext-xdebug": ">=2.2.1",
  1017. "ext-xmlwriter": "*"
  1018. },
  1019. "type": "library",
  1020. "extra": {
  1021. "branch-alias": {
  1022. "dev-master": "2.2.x-dev"
  1023. }
  1024. },
  1025. "autoload": {
  1026. "classmap": [
  1027. "src/"
  1028. ]
  1029. },
  1030. "notification-url": "https://packagist.org/downloads/",
  1031. "license": [
  1032. "BSD-3-Clause"
  1033. ],
  1034. "authors": [
  1035. {
  1036. "name": "Sebastian Bergmann",
  1037. "email": "sb@sebastian-bergmann.de",
  1038. "role": "lead"
  1039. }
  1040. ],
  1041. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1042. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1043. "keywords": [
  1044. "coverage",
  1045. "testing",
  1046. "xunit"
  1047. ],
  1048. "time": "2015-10-06T15:47:00+00:00"
  1049. },
  1050. {
  1051. "name": "phpunit/php-file-iterator",
  1052. "version": "1.4.5",
  1053. "source": {
  1054. "type": "git",
  1055. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1056. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  1057. },
  1058. "dist": {
  1059. "type": "zip",
  1060. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1061. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1062. "shasum": ""
  1063. },
  1064. "require": {
  1065. "php": ">=5.3.3"
  1066. },
  1067. "type": "library",
  1068. "extra": {
  1069. "branch-alias": {
  1070. "dev-master": "1.4.x-dev"
  1071. }
  1072. },
  1073. "autoload": {
  1074. "classmap": [
  1075. "src/"
  1076. ]
  1077. },
  1078. "notification-url": "https://packagist.org/downloads/",
  1079. "license": [
  1080. "BSD-3-Clause"
  1081. ],
  1082. "authors": [
  1083. {
  1084. "name": "Sebastian Bergmann",
  1085. "email": "sb@sebastian-bergmann.de",
  1086. "role": "lead"
  1087. }
  1088. ],
  1089. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1090. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1091. "keywords": [
  1092. "filesystem",
  1093. "iterator"
  1094. ],
  1095. "time": "2017-11-27T13:52:08+00:00"
  1096. },
  1097. {
  1098. "name": "phpunit/php-text-template",
  1099. "version": "1.2.1",
  1100. "source": {
  1101. "type": "git",
  1102. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1103. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1104. },
  1105. "dist": {
  1106. "type": "zip",
  1107. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1108. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1109. "shasum": ""
  1110. },
  1111. "require": {
  1112. "php": ">=5.3.3"
  1113. },
  1114. "type": "library",
  1115. "autoload": {
  1116. "classmap": [
  1117. "src/"
  1118. ]
  1119. },
  1120. "notification-url": "https://packagist.org/downloads/",
  1121. "license": [
  1122. "BSD-3-Clause"
  1123. ],
  1124. "authors": [
  1125. {
  1126. "name": "Sebastian Bergmann",
  1127. "email": "sebastian@phpunit.de",
  1128. "role": "lead"
  1129. }
  1130. ],
  1131. "description": "Simple template engine.",
  1132. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1133. "keywords": [
  1134. "template"
  1135. ],
  1136. "time": "2015-06-21T13:50:34+00:00"
  1137. },
  1138. {
  1139. "name": "phpunit/php-timer",
  1140. "version": "1.0.9",
  1141. "source": {
  1142. "type": "git",
  1143. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1144. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1145. },
  1146. "dist": {
  1147. "type": "zip",
  1148. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1149. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1150. "shasum": ""
  1151. },
  1152. "require": {
  1153. "php": "^5.3.3 || ^7.0"
  1154. },
  1155. "require-dev": {
  1156. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1157. },
  1158. "type": "library",
  1159. "extra": {
  1160. "branch-alias": {
  1161. "dev-master": "1.0-dev"
  1162. }
  1163. },
  1164. "autoload": {
  1165. "classmap": [
  1166. "src/"
  1167. ]
  1168. },
  1169. "notification-url": "https://packagist.org/downloads/",
  1170. "license": [
  1171. "BSD-3-Clause"
  1172. ],
  1173. "authors": [
  1174. {
  1175. "name": "Sebastian Bergmann",
  1176. "email": "sb@sebastian-bergmann.de",
  1177. "role": "lead"
  1178. }
  1179. ],
  1180. "description": "Utility class for timing",
  1181. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1182. "keywords": [
  1183. "timer"
  1184. ],
  1185. "time": "2017-02-26T11:10:40+00:00"
  1186. },
  1187. {
  1188. "name": "phpunit/php-token-stream",
  1189. "version": "1.4.12",
  1190. "source": {
  1191. "type": "git",
  1192. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1193. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  1194. },
  1195. "dist": {
  1196. "type": "zip",
  1197. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1198. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1199. "shasum": ""
  1200. },
  1201. "require": {
  1202. "ext-tokenizer": "*",
  1203. "php": ">=5.3.3"
  1204. },
  1205. "require-dev": {
  1206. "phpunit/phpunit": "~4.2"
  1207. },
  1208. "type": "library",
  1209. "extra": {
  1210. "branch-alias": {
  1211. "dev-master": "1.4-dev"
  1212. }
  1213. },
  1214. "autoload": {
  1215. "classmap": [
  1216. "src/"
  1217. ]
  1218. },
  1219. "notification-url": "https://packagist.org/downloads/",
  1220. "license": [
  1221. "BSD-3-Clause"
  1222. ],
  1223. "authors": [
  1224. {
  1225. "name": "Sebastian Bergmann",
  1226. "email": "sebastian@phpunit.de"
  1227. }
  1228. ],
  1229. "description": "Wrapper around PHP's tokenizer extension.",
  1230. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1231. "keywords": [
  1232. "tokenizer"
  1233. ],
  1234. "time": "2017-12-04T08:55:13+00:00"
  1235. },
  1236. {
  1237. "name": "phpunit/phpunit",
  1238. "version": "4.8.36",
  1239. "source": {
  1240. "type": "git",
  1241. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1242. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  1243. },
  1244. "dist": {
  1245. "type": "zip",
  1246. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  1247. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  1248. "shasum": ""
  1249. },
  1250. "require": {
  1251. "ext-dom": "*",
  1252. "ext-json": "*",
  1253. "ext-pcre": "*",
  1254. "ext-reflection": "*",
  1255. "ext-spl": "*",
  1256. "php": ">=5.3.3",
  1257. "phpspec/prophecy": "^1.3.1",
  1258. "phpunit/php-code-coverage": "~2.1",
  1259. "phpunit/php-file-iterator": "~1.4",
  1260. "phpunit/php-text-template": "~1.2",
  1261. "phpunit/php-timer": "^1.0.6",
  1262. "phpunit/phpunit-mock-objects": "~2.3",
  1263. "sebastian/comparator": "~1.2.2",
  1264. "sebastian/diff": "~1.2",
  1265. "sebastian/environment": "~1.3",
  1266. "sebastian/exporter": "~1.2",
  1267. "sebastian/global-state": "~1.0",
  1268. "sebastian/version": "~1.0",
  1269. "symfony/yaml": "~2.1|~3.0"
  1270. },
  1271. "suggest": {
  1272. "phpunit/php-invoker": "~1.1"
  1273. },
  1274. "bin": [
  1275. "phpunit"
  1276. ],
  1277. "type": "library",
  1278. "extra": {
  1279. "branch-alias": {
  1280. "dev-master": "4.8.x-dev"
  1281. }
  1282. },
  1283. "autoload": {
  1284. "classmap": [
  1285. "src/"
  1286. ]
  1287. },
  1288. "notification-url": "https://packagist.org/downloads/",
  1289. "license": [
  1290. "BSD-3-Clause"
  1291. ],
  1292. "authors": [
  1293. {
  1294. "name": "Sebastian Bergmann",
  1295. "email": "sebastian@phpunit.de",
  1296. "role": "lead"
  1297. }
  1298. ],
  1299. "description": "The PHP Unit Testing framework.",
  1300. "homepage": "https://phpunit.de/",
  1301. "keywords": [
  1302. "phpunit",
  1303. "testing",
  1304. "xunit"
  1305. ],
  1306. "time": "2017-06-21T08:07:12+00:00"
  1307. },
  1308. {
  1309. "name": "phpunit/phpunit-mock-objects",
  1310. "version": "2.3.8",
  1311. "source": {
  1312. "type": "git",
  1313. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1314. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  1315. },
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1319. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1320. "shasum": ""
  1321. },
  1322. "require": {
  1323. "doctrine/instantiator": "^1.0.2",
  1324. "php": ">=5.3.3",
  1325. "phpunit/php-text-template": "~1.2",
  1326. "sebastian/exporter": "~1.2"
  1327. },
  1328. "require-dev": {
  1329. "phpunit/phpunit": "~4.4"
  1330. },
  1331. "suggest": {
  1332. "ext-soap": "*"
  1333. },
  1334. "type": "library",
  1335. "extra": {
  1336. "branch-alias": {
  1337. "dev-master": "2.3.x-dev"
  1338. }
  1339. },
  1340. "autoload": {
  1341. "classmap": [
  1342. "src/"
  1343. ]
  1344. },
  1345. "notification-url": "https://packagist.org/downloads/",
  1346. "license": [
  1347. "BSD-3-Clause"
  1348. ],
  1349. "authors": [
  1350. {
  1351. "name": "Sebastian Bergmann",
  1352. "email": "sb@sebastian-bergmann.de",
  1353. "role": "lead"
  1354. }
  1355. ],
  1356. "description": "Mock Object library for PHPUnit",
  1357. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1358. "keywords": [
  1359. "mock",
  1360. "xunit"
  1361. ],
  1362. "abandoned": true,
  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.49",
  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. }