composer.lock 62 KB

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