composer.lock 60 KB

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