composer.lock 61 KB

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