composer.lock 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190
  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": "7b4d2bad1bbad2a94927aa22a88d8862",
  8. "packages": [
  9. {
  10. "name": "symfony/polyfill-mbstring",
  11. "version": "v1.8.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/symfony/polyfill-mbstring.git",
  15. "reference": "3296adf6a6454a050679cde90f95350ad604b171"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/3296adf6a6454a050679cde90f95350ad604b171",
  20. "reference": "3296adf6a6454a050679cde90f95350ad604b171",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.3"
  25. },
  26. "suggest": {
  27. "ext-mbstring": "For best performance"
  28. },
  29. "type": "library",
  30. "extra": {
  31. "branch-alias": {
  32. "dev-master": "1.8-dev"
  33. }
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Symfony\\Polyfill\\Mbstring\\": ""
  38. },
  39. "files": [
  40. "bootstrap.php"
  41. ]
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Nicolas Grekas",
  50. "email": "p@tchwork.com"
  51. },
  52. {
  53. "name": "Symfony Community",
  54. "homepage": "https://symfony.com/contributors"
  55. }
  56. ],
  57. "description": "Symfony polyfill for the Mbstring extension",
  58. "homepage": "https://symfony.com",
  59. "keywords": [
  60. "compatibility",
  61. "mbstring",
  62. "polyfill",
  63. "portable",
  64. "shim"
  65. ],
  66. "time": "2018-04-26T10:06:28+00:00"
  67. }
  68. ],
  69. "packages-dev": [
  70. {
  71. "name": "doctrine/instantiator",
  72. "version": "1.1.0",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/doctrine/instantiator.git",
  76. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  81. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  82. "shasum": ""
  83. },
  84. "require": {
  85. "php": "^7.1"
  86. },
  87. "require-dev": {
  88. "athletic/athletic": "~0.1.8",
  89. "ext-pdo": "*",
  90. "ext-phar": "*",
  91. "phpunit/phpunit": "^6.2.3",
  92. "squizlabs/php_codesniffer": "^3.0.2"
  93. },
  94. "type": "library",
  95. "extra": {
  96. "branch-alias": {
  97. "dev-master": "1.2.x-dev"
  98. }
  99. },
  100. "autoload": {
  101. "psr-4": {
  102. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  103. }
  104. },
  105. "notification-url": "https://packagist.org/downloads/",
  106. "license": [
  107. "MIT"
  108. ],
  109. "authors": [
  110. {
  111. "name": "Marco Pivetta",
  112. "email": "ocramius@gmail.com",
  113. "homepage": "http://ocramius.github.com/"
  114. }
  115. ],
  116. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  117. "homepage": "https://github.com/doctrine/instantiator",
  118. "keywords": [
  119. "constructor",
  120. "instantiate"
  121. ],
  122. "time": "2017-07-22T11:58:36+00:00"
  123. },
  124. {
  125. "name": "guzzlehttp/guzzle",
  126. "version": "6.3.3",
  127. "source": {
  128. "type": "git",
  129. "url": "https://github.com/guzzle/guzzle.git",
  130. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  131. },
  132. "dist": {
  133. "type": "zip",
  134. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  135. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  136. "shasum": ""
  137. },
  138. "require": {
  139. "guzzlehttp/promises": "^1.0",
  140. "guzzlehttp/psr7": "^1.4",
  141. "php": ">=5.5"
  142. },
  143. "require-dev": {
  144. "ext-curl": "*",
  145. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  146. "psr/log": "^1.0"
  147. },
  148. "suggest": {
  149. "psr/log": "Required for using the Log middleware"
  150. },
  151. "type": "library",
  152. "extra": {
  153. "branch-alias": {
  154. "dev-master": "6.3-dev"
  155. }
  156. },
  157. "autoload": {
  158. "files": [
  159. "src/functions_include.php"
  160. ],
  161. "psr-4": {
  162. "GuzzleHttp\\": "src/"
  163. }
  164. },
  165. "notification-url": "https://packagist.org/downloads/",
  166. "license": [
  167. "MIT"
  168. ],
  169. "authors": [
  170. {
  171. "name": "Michael Dowling",
  172. "email": "mtdowling@gmail.com",
  173. "homepage": "https://github.com/mtdowling"
  174. }
  175. ],
  176. "description": "Guzzle is a PHP HTTP client library",
  177. "homepage": "http://guzzlephp.org/",
  178. "keywords": [
  179. "client",
  180. "curl",
  181. "framework",
  182. "http",
  183. "http client",
  184. "rest",
  185. "web service"
  186. ],
  187. "time": "2018-04-22T15:46:56+00:00"
  188. },
  189. {
  190. "name": "guzzlehttp/promises",
  191. "version": "v1.3.1",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/guzzle/promises.git",
  195. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  200. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  201. "shasum": ""
  202. },
  203. "require": {
  204. "php": ">=5.5.0"
  205. },
  206. "require-dev": {
  207. "phpunit/phpunit": "^4.0"
  208. },
  209. "type": "library",
  210. "extra": {
  211. "branch-alias": {
  212. "dev-master": "1.4-dev"
  213. }
  214. },
  215. "autoload": {
  216. "psr-4": {
  217. "GuzzleHttp\\Promise\\": "src/"
  218. },
  219. "files": [
  220. "src/functions_include.php"
  221. ]
  222. },
  223. "notification-url": "https://packagist.org/downloads/",
  224. "license": [
  225. "MIT"
  226. ],
  227. "authors": [
  228. {
  229. "name": "Michael Dowling",
  230. "email": "mtdowling@gmail.com",
  231. "homepage": "https://github.com/mtdowling"
  232. }
  233. ],
  234. "description": "Guzzle promises library",
  235. "keywords": [
  236. "promise"
  237. ],
  238. "time": "2016-12-20T10:07:11+00:00"
  239. },
  240. {
  241. "name": "guzzlehttp/psr7",
  242. "version": "1.4.2",
  243. "source": {
  244. "type": "git",
  245. "url": "https://github.com/guzzle/psr7.git",
  246. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  247. },
  248. "dist": {
  249. "type": "zip",
  250. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  251. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  252. "shasum": ""
  253. },
  254. "require": {
  255. "php": ">=5.4.0",
  256. "psr/http-message": "~1.0"
  257. },
  258. "provide": {
  259. "psr/http-message-implementation": "1.0"
  260. },
  261. "require-dev": {
  262. "phpunit/phpunit": "~4.0"
  263. },
  264. "type": "library",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-master": "1.4-dev"
  268. }
  269. },
  270. "autoload": {
  271. "psr-4": {
  272. "GuzzleHttp\\Psr7\\": "src/"
  273. },
  274. "files": [
  275. "src/functions_include.php"
  276. ]
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "MIT"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Michael Dowling",
  285. "email": "mtdowling@gmail.com",
  286. "homepage": "https://github.com/mtdowling"
  287. },
  288. {
  289. "name": "Tobias Schultze",
  290. "homepage": "https://github.com/Tobion"
  291. }
  292. ],
  293. "description": "PSR-7 message implementation that also provides common utility methods",
  294. "keywords": [
  295. "http",
  296. "message",
  297. "request",
  298. "response",
  299. "stream",
  300. "uri",
  301. "url"
  302. ],
  303. "time": "2017-03-20T17:10:46+00:00"
  304. },
  305. {
  306. "name": "myclabs/deep-copy",
  307. "version": "1.8.1",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/myclabs/DeepCopy.git",
  311. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  316. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  317. "shasum": ""
  318. },
  319. "require": {
  320. "php": "^7.1"
  321. },
  322. "replace": {
  323. "myclabs/deep-copy": "self.version"
  324. },
  325. "require-dev": {
  326. "doctrine/collections": "^1.0",
  327. "doctrine/common": "^2.6",
  328. "phpunit/phpunit": "^7.1"
  329. },
  330. "type": "library",
  331. "autoload": {
  332. "psr-4": {
  333. "DeepCopy\\": "src/DeepCopy/"
  334. },
  335. "files": [
  336. "src/DeepCopy/deep_copy.php"
  337. ]
  338. },
  339. "notification-url": "https://packagist.org/downloads/",
  340. "license": [
  341. "MIT"
  342. ],
  343. "description": "Create deep copies (clones) of your objects",
  344. "keywords": [
  345. "clone",
  346. "copy",
  347. "duplicate",
  348. "object",
  349. "object graph"
  350. ],
  351. "time": "2018-06-11T23:09:50+00:00"
  352. },
  353. {
  354. "name": "phar-io/manifest",
  355. "version": "1.0.3",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/phar-io/manifest.git",
  359. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  364. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  365. "shasum": ""
  366. },
  367. "require": {
  368. "ext-dom": "*",
  369. "ext-phar": "*",
  370. "phar-io/version": "^2.0",
  371. "php": "^5.6 || ^7.0"
  372. },
  373. "type": "library",
  374. "extra": {
  375. "branch-alias": {
  376. "dev-master": "1.0.x-dev"
  377. }
  378. },
  379. "autoload": {
  380. "classmap": [
  381. "src/"
  382. ]
  383. },
  384. "notification-url": "https://packagist.org/downloads/",
  385. "license": [
  386. "BSD-3-Clause"
  387. ],
  388. "authors": [
  389. {
  390. "name": "Arne Blankerts",
  391. "email": "arne@blankerts.de",
  392. "role": "Developer"
  393. },
  394. {
  395. "name": "Sebastian Heuer",
  396. "email": "sebastian@phpeople.de",
  397. "role": "Developer"
  398. },
  399. {
  400. "name": "Sebastian Bergmann",
  401. "email": "sebastian@phpunit.de",
  402. "role": "Developer"
  403. }
  404. ],
  405. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  406. "time": "2018-07-08T19:23:20+00:00"
  407. },
  408. {
  409. "name": "phar-io/version",
  410. "version": "2.0.1",
  411. "source": {
  412. "type": "git",
  413. "url": "https://github.com/phar-io/version.git",
  414. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  415. },
  416. "dist": {
  417. "type": "zip",
  418. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  419. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  420. "shasum": ""
  421. },
  422. "require": {
  423. "php": "^5.6 || ^7.0"
  424. },
  425. "type": "library",
  426. "autoload": {
  427. "classmap": [
  428. "src/"
  429. ]
  430. },
  431. "notification-url": "https://packagist.org/downloads/",
  432. "license": [
  433. "BSD-3-Clause"
  434. ],
  435. "authors": [
  436. {
  437. "name": "Arne Blankerts",
  438. "email": "arne@blankerts.de",
  439. "role": "Developer"
  440. },
  441. {
  442. "name": "Sebastian Heuer",
  443. "email": "sebastian@phpeople.de",
  444. "role": "Developer"
  445. },
  446. {
  447. "name": "Sebastian Bergmann",
  448. "email": "sebastian@phpunit.de",
  449. "role": "Developer"
  450. }
  451. ],
  452. "description": "Library for handling version information and constraints",
  453. "time": "2018-07-08T19:19:57+00:00"
  454. },
  455. {
  456. "name": "php-coveralls/php-coveralls",
  457. "version": "v2.1.0",
  458. "source": {
  459. "type": "git",
  460. "url": "https://github.com/php-coveralls/php-coveralls.git",
  461. "reference": "3b00c229726f892bfdadeaf01ea430ffd04a939d"
  462. },
  463. "dist": {
  464. "type": "zip",
  465. "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/3b00c229726f892bfdadeaf01ea430ffd04a939d",
  466. "reference": "3b00c229726f892bfdadeaf01ea430ffd04a939d",
  467. "shasum": ""
  468. },
  469. "require": {
  470. "ext-json": "*",
  471. "ext-simplexml": "*",
  472. "guzzlehttp/guzzle": "^6.0",
  473. "php": "^5.5 || ^7.0",
  474. "psr/log": "^1.0",
  475. "symfony/config": "^2.1 || ^3.0 || ^4.0",
  476. "symfony/console": "^2.1 || ^3.0 || ^4.0",
  477. "symfony/stopwatch": "^2.0 || ^3.0 || ^4.0",
  478. "symfony/yaml": "^2.0 || ^3.0 || ^4.0"
  479. },
  480. "require-dev": {
  481. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0"
  482. },
  483. "suggest": {
  484. "symfony/http-kernel": "Allows Symfony integration"
  485. },
  486. "bin": [
  487. "bin/php-coveralls"
  488. ],
  489. "type": "library",
  490. "extra": {
  491. "branch-alias": {
  492. "dev-master": "2.1-dev"
  493. }
  494. },
  495. "autoload": {
  496. "psr-4": {
  497. "PhpCoveralls\\": "src/"
  498. }
  499. },
  500. "notification-url": "https://packagist.org/downloads/",
  501. "license": [
  502. "MIT"
  503. ],
  504. "authors": [
  505. {
  506. "name": "Kitamura Satoshi",
  507. "email": "with.no.parachute@gmail.com",
  508. "homepage": "https://www.facebook.com/satooshi.jp",
  509. "role": "Original creator"
  510. },
  511. {
  512. "name": "Takashi Matsuo",
  513. "email": "tmatsuo@google.com"
  514. },
  515. {
  516. "name": "Google Inc"
  517. },
  518. {
  519. "name": "Dariusz Ruminski",
  520. "email": "dariusz.ruminski@gmail.com",
  521. "homepage": "https://github.com/keradus"
  522. },
  523. {
  524. "name": "Contributors",
  525. "homepage": "https://github.com/php-coveralls/php-coveralls/graphs/contributors"
  526. }
  527. ],
  528. "description": "PHP client library for Coveralls API",
  529. "homepage": "https://github.com/php-coveralls/php-coveralls",
  530. "keywords": [
  531. "ci",
  532. "coverage",
  533. "github",
  534. "test"
  535. ],
  536. "time": "2018-05-22T23:11:08+00:00"
  537. },
  538. {
  539. "name": "phpdocumentor/reflection-common",
  540. "version": "1.0.1",
  541. "source": {
  542. "type": "git",
  543. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  544. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  545. },
  546. "dist": {
  547. "type": "zip",
  548. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  549. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  550. "shasum": ""
  551. },
  552. "require": {
  553. "php": ">=5.5"
  554. },
  555. "require-dev": {
  556. "phpunit/phpunit": "^4.6"
  557. },
  558. "type": "library",
  559. "extra": {
  560. "branch-alias": {
  561. "dev-master": "1.0.x-dev"
  562. }
  563. },
  564. "autoload": {
  565. "psr-4": {
  566. "phpDocumentor\\Reflection\\": [
  567. "src"
  568. ]
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Jaap van Otterdijk",
  578. "email": "opensource@ijaap.nl"
  579. }
  580. ],
  581. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  582. "homepage": "http://www.phpdoc.org",
  583. "keywords": [
  584. "FQSEN",
  585. "phpDocumentor",
  586. "phpdoc",
  587. "reflection",
  588. "static analysis"
  589. ],
  590. "time": "2017-09-11T18:02:19+00:00"
  591. },
  592. {
  593. "name": "phpdocumentor/reflection-docblock",
  594. "version": "4.3.0",
  595. "source": {
  596. "type": "git",
  597. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  598. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  599. },
  600. "dist": {
  601. "type": "zip",
  602. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  603. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  604. "shasum": ""
  605. },
  606. "require": {
  607. "php": "^7.0",
  608. "phpdocumentor/reflection-common": "^1.0.0",
  609. "phpdocumentor/type-resolver": "^0.4.0",
  610. "webmozart/assert": "^1.0"
  611. },
  612. "require-dev": {
  613. "doctrine/instantiator": "~1.0.5",
  614. "mockery/mockery": "^1.0",
  615. "phpunit/phpunit": "^6.4"
  616. },
  617. "type": "library",
  618. "extra": {
  619. "branch-alias": {
  620. "dev-master": "4.x-dev"
  621. }
  622. },
  623. "autoload": {
  624. "psr-4": {
  625. "phpDocumentor\\Reflection\\": [
  626. "src/"
  627. ]
  628. }
  629. },
  630. "notification-url": "https://packagist.org/downloads/",
  631. "license": [
  632. "MIT"
  633. ],
  634. "authors": [
  635. {
  636. "name": "Mike van Riel",
  637. "email": "me@mikevanriel.com"
  638. }
  639. ],
  640. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  641. "time": "2017-11-30T07:14:17+00:00"
  642. },
  643. {
  644. "name": "phpdocumentor/type-resolver",
  645. "version": "0.4.0",
  646. "source": {
  647. "type": "git",
  648. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  649. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  650. },
  651. "dist": {
  652. "type": "zip",
  653. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  654. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  655. "shasum": ""
  656. },
  657. "require": {
  658. "php": "^5.5 || ^7.0",
  659. "phpdocumentor/reflection-common": "^1.0"
  660. },
  661. "require-dev": {
  662. "mockery/mockery": "^0.9.4",
  663. "phpunit/phpunit": "^5.2||^4.8.24"
  664. },
  665. "type": "library",
  666. "extra": {
  667. "branch-alias": {
  668. "dev-master": "1.0.x-dev"
  669. }
  670. },
  671. "autoload": {
  672. "psr-4": {
  673. "phpDocumentor\\Reflection\\": [
  674. "src/"
  675. ]
  676. }
  677. },
  678. "notification-url": "https://packagist.org/downloads/",
  679. "license": [
  680. "MIT"
  681. ],
  682. "authors": [
  683. {
  684. "name": "Mike van Riel",
  685. "email": "me@mikevanriel.com"
  686. }
  687. ],
  688. "time": "2017-07-14T14:27:02+00:00"
  689. },
  690. {
  691. "name": "phpspec/prophecy",
  692. "version": "1.7.6",
  693. "source": {
  694. "type": "git",
  695. "url": "https://github.com/phpspec/prophecy.git",
  696. "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712"
  697. },
  698. "dist": {
  699. "type": "zip",
  700. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
  701. "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
  702. "shasum": ""
  703. },
  704. "require": {
  705. "doctrine/instantiator": "^1.0.2",
  706. "php": "^5.3|^7.0",
  707. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  708. "sebastian/comparator": "^1.1|^2.0|^3.0",
  709. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  710. },
  711. "require-dev": {
  712. "phpspec/phpspec": "^2.5|^3.2",
  713. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  714. },
  715. "type": "library",
  716. "extra": {
  717. "branch-alias": {
  718. "dev-master": "1.7.x-dev"
  719. }
  720. },
  721. "autoload": {
  722. "psr-0": {
  723. "Prophecy\\": "src/"
  724. }
  725. },
  726. "notification-url": "https://packagist.org/downloads/",
  727. "license": [
  728. "MIT"
  729. ],
  730. "authors": [
  731. {
  732. "name": "Konstantin Kudryashov",
  733. "email": "ever.zet@gmail.com",
  734. "homepage": "http://everzet.com"
  735. },
  736. {
  737. "name": "Marcello Duarte",
  738. "email": "marcello.duarte@gmail.com"
  739. }
  740. ],
  741. "description": "Highly opinionated mocking framework for PHP 5.3+",
  742. "homepage": "https://github.com/phpspec/prophecy",
  743. "keywords": [
  744. "Double",
  745. "Dummy",
  746. "fake",
  747. "mock",
  748. "spy",
  749. "stub"
  750. ],
  751. "time": "2018-04-18T13:57:24+00:00"
  752. },
  753. {
  754. "name": "phpunit/php-code-coverage",
  755. "version": "6.0.7",
  756. "source": {
  757. "type": "git",
  758. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  759. "reference": "865662550c384bc1db7e51d29aeda1c2c161d69a"
  760. },
  761. "dist": {
  762. "type": "zip",
  763. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/865662550c384bc1db7e51d29aeda1c2c161d69a",
  764. "reference": "865662550c384bc1db7e51d29aeda1c2c161d69a",
  765. "shasum": ""
  766. },
  767. "require": {
  768. "ext-dom": "*",
  769. "ext-xmlwriter": "*",
  770. "php": "^7.1",
  771. "phpunit/php-file-iterator": "^2.0",
  772. "phpunit/php-text-template": "^1.2.1",
  773. "phpunit/php-token-stream": "^3.0",
  774. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  775. "sebastian/environment": "^3.1",
  776. "sebastian/version": "^2.0.1",
  777. "theseer/tokenizer": "^1.1"
  778. },
  779. "require-dev": {
  780. "phpunit/phpunit": "^7.0"
  781. },
  782. "suggest": {
  783. "ext-xdebug": "^2.6.0"
  784. },
  785. "type": "library",
  786. "extra": {
  787. "branch-alias": {
  788. "dev-master": "6.0-dev"
  789. }
  790. },
  791. "autoload": {
  792. "classmap": [
  793. "src/"
  794. ]
  795. },
  796. "notification-url": "https://packagist.org/downloads/",
  797. "license": [
  798. "BSD-3-Clause"
  799. ],
  800. "authors": [
  801. {
  802. "name": "Sebastian Bergmann",
  803. "email": "sebastian@phpunit.de",
  804. "role": "lead"
  805. }
  806. ],
  807. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  808. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  809. "keywords": [
  810. "coverage",
  811. "testing",
  812. "xunit"
  813. ],
  814. "time": "2018-06-01T07:51:50+00:00"
  815. },
  816. {
  817. "name": "phpunit/php-file-iterator",
  818. "version": "2.0.1",
  819. "source": {
  820. "type": "git",
  821. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  822. "reference": "cecbc684605bb0cc288828eb5d65d93d5c676d3c"
  823. },
  824. "dist": {
  825. "type": "zip",
  826. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cecbc684605bb0cc288828eb5d65d93d5c676d3c",
  827. "reference": "cecbc684605bb0cc288828eb5d65d93d5c676d3c",
  828. "shasum": ""
  829. },
  830. "require": {
  831. "php": "^7.1"
  832. },
  833. "type": "library",
  834. "extra": {
  835. "branch-alias": {
  836. "dev-master": "2.0.x-dev"
  837. }
  838. },
  839. "autoload": {
  840. "classmap": [
  841. "src/"
  842. ]
  843. },
  844. "notification-url": "https://packagist.org/downloads/",
  845. "license": [
  846. "BSD-3-Clause"
  847. ],
  848. "authors": [
  849. {
  850. "name": "Sebastian Bergmann",
  851. "email": "sebastian@phpunit.de",
  852. "role": "lead"
  853. }
  854. ],
  855. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  856. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  857. "keywords": [
  858. "filesystem",
  859. "iterator"
  860. ],
  861. "time": "2018-06-11T11:44:00+00:00"
  862. },
  863. {
  864. "name": "phpunit/php-text-template",
  865. "version": "1.2.1",
  866. "source": {
  867. "type": "git",
  868. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  869. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  870. },
  871. "dist": {
  872. "type": "zip",
  873. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  874. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  875. "shasum": ""
  876. },
  877. "require": {
  878. "php": ">=5.3.3"
  879. },
  880. "type": "library",
  881. "autoload": {
  882. "classmap": [
  883. "src/"
  884. ]
  885. },
  886. "notification-url": "https://packagist.org/downloads/",
  887. "license": [
  888. "BSD-3-Clause"
  889. ],
  890. "authors": [
  891. {
  892. "name": "Sebastian Bergmann",
  893. "email": "sebastian@phpunit.de",
  894. "role": "lead"
  895. }
  896. ],
  897. "description": "Simple template engine.",
  898. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  899. "keywords": [
  900. "template"
  901. ],
  902. "time": "2015-06-21T13:50:34+00:00"
  903. },
  904. {
  905. "name": "phpunit/php-timer",
  906. "version": "2.0.0",
  907. "source": {
  908. "type": "git",
  909. "url": "https://github.com/sebastianbergmann/php-timer.git",
  910. "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f"
  911. },
  912. "dist": {
  913. "type": "zip",
  914. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b8454ea6958c3dee38453d3bd571e023108c91f",
  915. "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f",
  916. "shasum": ""
  917. },
  918. "require": {
  919. "php": "^7.1"
  920. },
  921. "require-dev": {
  922. "phpunit/phpunit": "^7.0"
  923. },
  924. "type": "library",
  925. "extra": {
  926. "branch-alias": {
  927. "dev-master": "2.0-dev"
  928. }
  929. },
  930. "autoload": {
  931. "classmap": [
  932. "src/"
  933. ]
  934. },
  935. "notification-url": "https://packagist.org/downloads/",
  936. "license": [
  937. "BSD-3-Clause"
  938. ],
  939. "authors": [
  940. {
  941. "name": "Sebastian Bergmann",
  942. "email": "sebastian@phpunit.de",
  943. "role": "lead"
  944. }
  945. ],
  946. "description": "Utility class for timing",
  947. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  948. "keywords": [
  949. "timer"
  950. ],
  951. "time": "2018-02-01T13:07:23+00:00"
  952. },
  953. {
  954. "name": "phpunit/php-token-stream",
  955. "version": "3.0.0",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  959. "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/21ad88bbba7c3d93530d93994e0a33cd45f02ace",
  964. "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace",
  965. "shasum": ""
  966. },
  967. "require": {
  968. "ext-tokenizer": "*",
  969. "php": "^7.1"
  970. },
  971. "require-dev": {
  972. "phpunit/phpunit": "^7.0"
  973. },
  974. "type": "library",
  975. "extra": {
  976. "branch-alias": {
  977. "dev-master": "3.0-dev"
  978. }
  979. },
  980. "autoload": {
  981. "classmap": [
  982. "src/"
  983. ]
  984. },
  985. "notification-url": "https://packagist.org/downloads/",
  986. "license": [
  987. "BSD-3-Clause"
  988. ],
  989. "authors": [
  990. {
  991. "name": "Sebastian Bergmann",
  992. "email": "sebastian@phpunit.de"
  993. }
  994. ],
  995. "description": "Wrapper around PHP's tokenizer extension.",
  996. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  997. "keywords": [
  998. "tokenizer"
  999. ],
  1000. "time": "2018-02-01T13:16:43+00:00"
  1001. },
  1002. {
  1003. "name": "phpunit/phpunit",
  1004. "version": "7.2.7",
  1005. "source": {
  1006. "type": "git",
  1007. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1008. "reference": "8e878aff7917ef66e702e03d1359b16eee254e2c"
  1009. },
  1010. "dist": {
  1011. "type": "zip",
  1012. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e878aff7917ef66e702e03d1359b16eee254e2c",
  1013. "reference": "8e878aff7917ef66e702e03d1359b16eee254e2c",
  1014. "shasum": ""
  1015. },
  1016. "require": {
  1017. "doctrine/instantiator": "^1.1",
  1018. "ext-dom": "*",
  1019. "ext-json": "*",
  1020. "ext-libxml": "*",
  1021. "ext-mbstring": "*",
  1022. "ext-xml": "*",
  1023. "myclabs/deep-copy": "^1.7",
  1024. "phar-io/manifest": "^1.0.2",
  1025. "phar-io/version": "^2.0",
  1026. "php": "^7.1",
  1027. "phpspec/prophecy": "^1.7",
  1028. "phpunit/php-code-coverage": "^6.0.7",
  1029. "phpunit/php-file-iterator": "^2.0.1",
  1030. "phpunit/php-text-template": "^1.2.1",
  1031. "phpunit/php-timer": "^2.0",
  1032. "sebastian/comparator": "^3.0",
  1033. "sebastian/diff": "^3.0",
  1034. "sebastian/environment": "^3.1",
  1035. "sebastian/exporter": "^3.1",
  1036. "sebastian/global-state": "^2.0",
  1037. "sebastian/object-enumerator": "^3.0.3",
  1038. "sebastian/resource-operations": "^1.0",
  1039. "sebastian/version": "^2.0.1"
  1040. },
  1041. "conflict": {
  1042. "phpunit/phpunit-mock-objects": "*"
  1043. },
  1044. "require-dev": {
  1045. "ext-pdo": "*"
  1046. },
  1047. "suggest": {
  1048. "ext-soap": "*",
  1049. "ext-xdebug": "*",
  1050. "phpunit/php-invoker": "^2.0"
  1051. },
  1052. "bin": [
  1053. "phpunit"
  1054. ],
  1055. "type": "library",
  1056. "extra": {
  1057. "branch-alias": {
  1058. "dev-master": "7.2-dev"
  1059. }
  1060. },
  1061. "autoload": {
  1062. "classmap": [
  1063. "src/"
  1064. ]
  1065. },
  1066. "notification-url": "https://packagist.org/downloads/",
  1067. "license": [
  1068. "BSD-3-Clause"
  1069. ],
  1070. "authors": [
  1071. {
  1072. "name": "Sebastian Bergmann",
  1073. "email": "sebastian@phpunit.de",
  1074. "role": "lead"
  1075. }
  1076. ],
  1077. "description": "The PHP Unit Testing framework.",
  1078. "homepage": "https://phpunit.de/",
  1079. "keywords": [
  1080. "phpunit",
  1081. "testing",
  1082. "xunit"
  1083. ],
  1084. "time": "2018-07-15T05:20:50+00:00"
  1085. },
  1086. {
  1087. "name": "psr/http-message",
  1088. "version": "1.0.1",
  1089. "source": {
  1090. "type": "git",
  1091. "url": "https://github.com/php-fig/http-message.git",
  1092. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1093. },
  1094. "dist": {
  1095. "type": "zip",
  1096. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1097. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1098. "shasum": ""
  1099. },
  1100. "require": {
  1101. "php": ">=5.3.0"
  1102. },
  1103. "type": "library",
  1104. "extra": {
  1105. "branch-alias": {
  1106. "dev-master": "1.0.x-dev"
  1107. }
  1108. },
  1109. "autoload": {
  1110. "psr-4": {
  1111. "Psr\\Http\\Message\\": "src/"
  1112. }
  1113. },
  1114. "notification-url": "https://packagist.org/downloads/",
  1115. "license": [
  1116. "MIT"
  1117. ],
  1118. "authors": [
  1119. {
  1120. "name": "PHP-FIG",
  1121. "homepage": "http://www.php-fig.org/"
  1122. }
  1123. ],
  1124. "description": "Common interface for HTTP messages",
  1125. "homepage": "https://github.com/php-fig/http-message",
  1126. "keywords": [
  1127. "http",
  1128. "http-message",
  1129. "psr",
  1130. "psr-7",
  1131. "request",
  1132. "response"
  1133. ],
  1134. "time": "2016-08-06T14:39:51+00:00"
  1135. },
  1136. {
  1137. "name": "psr/log",
  1138. "version": "1.0.2",
  1139. "source": {
  1140. "type": "git",
  1141. "url": "https://github.com/php-fig/log.git",
  1142. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1143. },
  1144. "dist": {
  1145. "type": "zip",
  1146. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1147. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1148. "shasum": ""
  1149. },
  1150. "require": {
  1151. "php": ">=5.3.0"
  1152. },
  1153. "type": "library",
  1154. "extra": {
  1155. "branch-alias": {
  1156. "dev-master": "1.0.x-dev"
  1157. }
  1158. },
  1159. "autoload": {
  1160. "psr-4": {
  1161. "Psr\\Log\\": "Psr/Log/"
  1162. }
  1163. },
  1164. "notification-url": "https://packagist.org/downloads/",
  1165. "license": [
  1166. "MIT"
  1167. ],
  1168. "authors": [
  1169. {
  1170. "name": "PHP-FIG",
  1171. "homepage": "http://www.php-fig.org/"
  1172. }
  1173. ],
  1174. "description": "Common interface for logging libraries",
  1175. "homepage": "https://github.com/php-fig/log",
  1176. "keywords": [
  1177. "log",
  1178. "psr",
  1179. "psr-3"
  1180. ],
  1181. "time": "2016-10-10T12:19:37+00:00"
  1182. },
  1183. {
  1184. "name": "sebastian/code-unit-reverse-lookup",
  1185. "version": "1.0.1",
  1186. "source": {
  1187. "type": "git",
  1188. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1189. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  1190. },
  1191. "dist": {
  1192. "type": "zip",
  1193. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1194. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1195. "shasum": ""
  1196. },
  1197. "require": {
  1198. "php": "^5.6 || ^7.0"
  1199. },
  1200. "require-dev": {
  1201. "phpunit/phpunit": "^5.7 || ^6.0"
  1202. },
  1203. "type": "library",
  1204. "extra": {
  1205. "branch-alias": {
  1206. "dev-master": "1.0.x-dev"
  1207. }
  1208. },
  1209. "autoload": {
  1210. "classmap": [
  1211. "src/"
  1212. ]
  1213. },
  1214. "notification-url": "https://packagist.org/downloads/",
  1215. "license": [
  1216. "BSD-3-Clause"
  1217. ],
  1218. "authors": [
  1219. {
  1220. "name": "Sebastian Bergmann",
  1221. "email": "sebastian@phpunit.de"
  1222. }
  1223. ],
  1224. "description": "Looks up which function or method a line of code belongs to",
  1225. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1226. "time": "2017-03-04T06:30:41+00:00"
  1227. },
  1228. {
  1229. "name": "sebastian/comparator",
  1230. "version": "3.0.2",
  1231. "source": {
  1232. "type": "git",
  1233. "url": "https://github.com/sebastianbergmann/comparator.git",
  1234. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  1235. },
  1236. "dist": {
  1237. "type": "zip",
  1238. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  1239. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  1240. "shasum": ""
  1241. },
  1242. "require": {
  1243. "php": "^7.1",
  1244. "sebastian/diff": "^3.0",
  1245. "sebastian/exporter": "^3.1"
  1246. },
  1247. "require-dev": {
  1248. "phpunit/phpunit": "^7.1"
  1249. },
  1250. "type": "library",
  1251. "extra": {
  1252. "branch-alias": {
  1253. "dev-master": "3.0-dev"
  1254. }
  1255. },
  1256. "autoload": {
  1257. "classmap": [
  1258. "src/"
  1259. ]
  1260. },
  1261. "notification-url": "https://packagist.org/downloads/",
  1262. "license": [
  1263. "BSD-3-Clause"
  1264. ],
  1265. "authors": [
  1266. {
  1267. "name": "Jeff Welch",
  1268. "email": "whatthejeff@gmail.com"
  1269. },
  1270. {
  1271. "name": "Volker Dusch",
  1272. "email": "github@wallbash.com"
  1273. },
  1274. {
  1275. "name": "Bernhard Schussek",
  1276. "email": "bschussek@2bepublished.at"
  1277. },
  1278. {
  1279. "name": "Sebastian Bergmann",
  1280. "email": "sebastian@phpunit.de"
  1281. }
  1282. ],
  1283. "description": "Provides the functionality to compare PHP values for equality",
  1284. "homepage": "https://github.com/sebastianbergmann/comparator",
  1285. "keywords": [
  1286. "comparator",
  1287. "compare",
  1288. "equality"
  1289. ],
  1290. "time": "2018-07-12T15:12:46+00:00"
  1291. },
  1292. {
  1293. "name": "sebastian/diff",
  1294. "version": "3.0.1",
  1295. "source": {
  1296. "type": "git",
  1297. "url": "https://github.com/sebastianbergmann/diff.git",
  1298. "reference": "366541b989927187c4ca70490a35615d3fef2dce"
  1299. },
  1300. "dist": {
  1301. "type": "zip",
  1302. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/366541b989927187c4ca70490a35615d3fef2dce",
  1303. "reference": "366541b989927187c4ca70490a35615d3fef2dce",
  1304. "shasum": ""
  1305. },
  1306. "require": {
  1307. "php": "^7.1"
  1308. },
  1309. "require-dev": {
  1310. "phpunit/phpunit": "^7.0",
  1311. "symfony/process": "^2 || ^3.3 || ^4"
  1312. },
  1313. "type": "library",
  1314. "extra": {
  1315. "branch-alias": {
  1316. "dev-master": "3.0-dev"
  1317. }
  1318. },
  1319. "autoload": {
  1320. "classmap": [
  1321. "src/"
  1322. ]
  1323. },
  1324. "notification-url": "https://packagist.org/downloads/",
  1325. "license": [
  1326. "BSD-3-Clause"
  1327. ],
  1328. "authors": [
  1329. {
  1330. "name": "Kore Nordmann",
  1331. "email": "mail@kore-nordmann.de"
  1332. },
  1333. {
  1334. "name": "Sebastian Bergmann",
  1335. "email": "sebastian@phpunit.de"
  1336. }
  1337. ],
  1338. "description": "Diff implementation",
  1339. "homepage": "https://github.com/sebastianbergmann/diff",
  1340. "keywords": [
  1341. "diff",
  1342. "udiff",
  1343. "unidiff",
  1344. "unified diff"
  1345. ],
  1346. "time": "2018-06-10T07:54:39+00:00"
  1347. },
  1348. {
  1349. "name": "sebastian/environment",
  1350. "version": "3.1.0",
  1351. "source": {
  1352. "type": "git",
  1353. "url": "https://github.com/sebastianbergmann/environment.git",
  1354. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  1355. },
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1359. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1360. "shasum": ""
  1361. },
  1362. "require": {
  1363. "php": "^7.0"
  1364. },
  1365. "require-dev": {
  1366. "phpunit/phpunit": "^6.1"
  1367. },
  1368. "type": "library",
  1369. "extra": {
  1370. "branch-alias": {
  1371. "dev-master": "3.1.x-dev"
  1372. }
  1373. },
  1374. "autoload": {
  1375. "classmap": [
  1376. "src/"
  1377. ]
  1378. },
  1379. "notification-url": "https://packagist.org/downloads/",
  1380. "license": [
  1381. "BSD-3-Clause"
  1382. ],
  1383. "authors": [
  1384. {
  1385. "name": "Sebastian Bergmann",
  1386. "email": "sebastian@phpunit.de"
  1387. }
  1388. ],
  1389. "description": "Provides functionality to handle HHVM/PHP environments",
  1390. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1391. "keywords": [
  1392. "Xdebug",
  1393. "environment",
  1394. "hhvm"
  1395. ],
  1396. "time": "2017-07-01T08:51:00+00:00"
  1397. },
  1398. {
  1399. "name": "sebastian/exporter",
  1400. "version": "3.1.0",
  1401. "source": {
  1402. "type": "git",
  1403. "url": "https://github.com/sebastianbergmann/exporter.git",
  1404. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  1405. },
  1406. "dist": {
  1407. "type": "zip",
  1408. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  1409. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  1410. "shasum": ""
  1411. },
  1412. "require": {
  1413. "php": "^7.0",
  1414. "sebastian/recursion-context": "^3.0"
  1415. },
  1416. "require-dev": {
  1417. "ext-mbstring": "*",
  1418. "phpunit/phpunit": "^6.0"
  1419. },
  1420. "type": "library",
  1421. "extra": {
  1422. "branch-alias": {
  1423. "dev-master": "3.1.x-dev"
  1424. }
  1425. },
  1426. "autoload": {
  1427. "classmap": [
  1428. "src/"
  1429. ]
  1430. },
  1431. "notification-url": "https://packagist.org/downloads/",
  1432. "license": [
  1433. "BSD-3-Clause"
  1434. ],
  1435. "authors": [
  1436. {
  1437. "name": "Jeff Welch",
  1438. "email": "whatthejeff@gmail.com"
  1439. },
  1440. {
  1441. "name": "Volker Dusch",
  1442. "email": "github@wallbash.com"
  1443. },
  1444. {
  1445. "name": "Bernhard Schussek",
  1446. "email": "bschussek@2bepublished.at"
  1447. },
  1448. {
  1449. "name": "Sebastian Bergmann",
  1450. "email": "sebastian@phpunit.de"
  1451. },
  1452. {
  1453. "name": "Adam Harvey",
  1454. "email": "aharvey@php.net"
  1455. }
  1456. ],
  1457. "description": "Provides the functionality to export PHP variables for visualization",
  1458. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1459. "keywords": [
  1460. "export",
  1461. "exporter"
  1462. ],
  1463. "time": "2017-04-03T13:19:02+00:00"
  1464. },
  1465. {
  1466. "name": "sebastian/global-state",
  1467. "version": "2.0.0",
  1468. "source": {
  1469. "type": "git",
  1470. "url": "https://github.com/sebastianbergmann/global-state.git",
  1471. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  1472. },
  1473. "dist": {
  1474. "type": "zip",
  1475. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1476. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1477. "shasum": ""
  1478. },
  1479. "require": {
  1480. "php": "^7.0"
  1481. },
  1482. "require-dev": {
  1483. "phpunit/phpunit": "^6.0"
  1484. },
  1485. "suggest": {
  1486. "ext-uopz": "*"
  1487. },
  1488. "type": "library",
  1489. "extra": {
  1490. "branch-alias": {
  1491. "dev-master": "2.0-dev"
  1492. }
  1493. },
  1494. "autoload": {
  1495. "classmap": [
  1496. "src/"
  1497. ]
  1498. },
  1499. "notification-url": "https://packagist.org/downloads/",
  1500. "license": [
  1501. "BSD-3-Clause"
  1502. ],
  1503. "authors": [
  1504. {
  1505. "name": "Sebastian Bergmann",
  1506. "email": "sebastian@phpunit.de"
  1507. }
  1508. ],
  1509. "description": "Snapshotting of global state",
  1510. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1511. "keywords": [
  1512. "global state"
  1513. ],
  1514. "time": "2017-04-27T15:39:26+00:00"
  1515. },
  1516. {
  1517. "name": "sebastian/object-enumerator",
  1518. "version": "3.0.3",
  1519. "source": {
  1520. "type": "git",
  1521. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1522. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  1523. },
  1524. "dist": {
  1525. "type": "zip",
  1526. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1527. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1528. "shasum": ""
  1529. },
  1530. "require": {
  1531. "php": "^7.0",
  1532. "sebastian/object-reflector": "^1.1.1",
  1533. "sebastian/recursion-context": "^3.0"
  1534. },
  1535. "require-dev": {
  1536. "phpunit/phpunit": "^6.0"
  1537. },
  1538. "type": "library",
  1539. "extra": {
  1540. "branch-alias": {
  1541. "dev-master": "3.0.x-dev"
  1542. }
  1543. },
  1544. "autoload": {
  1545. "classmap": [
  1546. "src/"
  1547. ]
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "BSD-3-Clause"
  1552. ],
  1553. "authors": [
  1554. {
  1555. "name": "Sebastian Bergmann",
  1556. "email": "sebastian@phpunit.de"
  1557. }
  1558. ],
  1559. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1560. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1561. "time": "2017-08-03T12:35:26+00:00"
  1562. },
  1563. {
  1564. "name": "sebastian/object-reflector",
  1565. "version": "1.1.1",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  1569. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  1574. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  1575. "shasum": ""
  1576. },
  1577. "require": {
  1578. "php": "^7.0"
  1579. },
  1580. "require-dev": {
  1581. "phpunit/phpunit": "^6.0"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-master": "1.1-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "classmap": [
  1591. "src/"
  1592. ]
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "BSD-3-Clause"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Sebastian Bergmann",
  1601. "email": "sebastian@phpunit.de"
  1602. }
  1603. ],
  1604. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  1605. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  1606. "time": "2017-03-29T09:07:27+00:00"
  1607. },
  1608. {
  1609. "name": "sebastian/recursion-context",
  1610. "version": "3.0.0",
  1611. "source": {
  1612. "type": "git",
  1613. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1614. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  1615. },
  1616. "dist": {
  1617. "type": "zip",
  1618. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  1619. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  1620. "shasum": ""
  1621. },
  1622. "require": {
  1623. "php": "^7.0"
  1624. },
  1625. "require-dev": {
  1626. "phpunit/phpunit": "^6.0"
  1627. },
  1628. "type": "library",
  1629. "extra": {
  1630. "branch-alias": {
  1631. "dev-master": "3.0.x-dev"
  1632. }
  1633. },
  1634. "autoload": {
  1635. "classmap": [
  1636. "src/"
  1637. ]
  1638. },
  1639. "notification-url": "https://packagist.org/downloads/",
  1640. "license": [
  1641. "BSD-3-Clause"
  1642. ],
  1643. "authors": [
  1644. {
  1645. "name": "Jeff Welch",
  1646. "email": "whatthejeff@gmail.com"
  1647. },
  1648. {
  1649. "name": "Sebastian Bergmann",
  1650. "email": "sebastian@phpunit.de"
  1651. },
  1652. {
  1653. "name": "Adam Harvey",
  1654. "email": "aharvey@php.net"
  1655. }
  1656. ],
  1657. "description": "Provides functionality to recursively process PHP variables",
  1658. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1659. "time": "2017-03-03T06:23:57+00:00"
  1660. },
  1661. {
  1662. "name": "sebastian/resource-operations",
  1663. "version": "1.0.0",
  1664. "source": {
  1665. "type": "git",
  1666. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  1667. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  1668. },
  1669. "dist": {
  1670. "type": "zip",
  1671. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1672. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1673. "shasum": ""
  1674. },
  1675. "require": {
  1676. "php": ">=5.6.0"
  1677. },
  1678. "type": "library",
  1679. "extra": {
  1680. "branch-alias": {
  1681. "dev-master": "1.0.x-dev"
  1682. }
  1683. },
  1684. "autoload": {
  1685. "classmap": [
  1686. "src/"
  1687. ]
  1688. },
  1689. "notification-url": "https://packagist.org/downloads/",
  1690. "license": [
  1691. "BSD-3-Clause"
  1692. ],
  1693. "authors": [
  1694. {
  1695. "name": "Sebastian Bergmann",
  1696. "email": "sebastian@phpunit.de"
  1697. }
  1698. ],
  1699. "description": "Provides a list of PHP built-in functions that operate on resources",
  1700. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  1701. "time": "2015-07-28T20:34:47+00:00"
  1702. },
  1703. {
  1704. "name": "sebastian/version",
  1705. "version": "2.0.1",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/sebastianbergmann/version.git",
  1709. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  1714. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  1715. "shasum": ""
  1716. },
  1717. "require": {
  1718. "php": ">=5.6"
  1719. },
  1720. "type": "library",
  1721. "extra": {
  1722. "branch-alias": {
  1723. "dev-master": "2.0.x-dev"
  1724. }
  1725. },
  1726. "autoload": {
  1727. "classmap": [
  1728. "src/"
  1729. ]
  1730. },
  1731. "notification-url": "https://packagist.org/downloads/",
  1732. "license": [
  1733. "BSD-3-Clause"
  1734. ],
  1735. "authors": [
  1736. {
  1737. "name": "Sebastian Bergmann",
  1738. "email": "sebastian@phpunit.de",
  1739. "role": "lead"
  1740. }
  1741. ],
  1742. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1743. "homepage": "https://github.com/sebastianbergmann/version",
  1744. "time": "2016-10-03T07:35:21+00:00"
  1745. },
  1746. {
  1747. "name": "symfony/config",
  1748. "version": "v4.1.2",
  1749. "source": {
  1750. "type": "git",
  1751. "url": "https://github.com/symfony/config.git",
  1752. "reference": "e57e7b573df9d0eaa8c0152768c708ee7ea2b8e5"
  1753. },
  1754. "dist": {
  1755. "type": "zip",
  1756. "url": "https://api.github.com/repos/symfony/config/zipball/e57e7b573df9d0eaa8c0152768c708ee7ea2b8e5",
  1757. "reference": "e57e7b573df9d0eaa8c0152768c708ee7ea2b8e5",
  1758. "shasum": ""
  1759. },
  1760. "require": {
  1761. "php": "^7.1.3",
  1762. "symfony/filesystem": "~3.4|~4.0",
  1763. "symfony/polyfill-ctype": "~1.8"
  1764. },
  1765. "conflict": {
  1766. "symfony/finder": "<3.4"
  1767. },
  1768. "require-dev": {
  1769. "symfony/dependency-injection": "~3.4|~4.0",
  1770. "symfony/event-dispatcher": "~3.4|~4.0",
  1771. "symfony/finder": "~3.4|~4.0",
  1772. "symfony/yaml": "~3.4|~4.0"
  1773. },
  1774. "suggest": {
  1775. "symfony/yaml": "To use the yaml reference dumper"
  1776. },
  1777. "type": "library",
  1778. "extra": {
  1779. "branch-alias": {
  1780. "dev-master": "4.1-dev"
  1781. }
  1782. },
  1783. "autoload": {
  1784. "psr-4": {
  1785. "Symfony\\Component\\Config\\": ""
  1786. },
  1787. "exclude-from-classmap": [
  1788. "/Tests/"
  1789. ]
  1790. },
  1791. "notification-url": "https://packagist.org/downloads/",
  1792. "license": [
  1793. "MIT"
  1794. ],
  1795. "authors": [
  1796. {
  1797. "name": "Fabien Potencier",
  1798. "email": "fabien@symfony.com"
  1799. },
  1800. {
  1801. "name": "Symfony Community",
  1802. "homepage": "https://symfony.com/contributors"
  1803. }
  1804. ],
  1805. "description": "Symfony Config Component",
  1806. "homepage": "https://symfony.com",
  1807. "time": "2018-06-20T11:15:17+00:00"
  1808. },
  1809. {
  1810. "name": "symfony/console",
  1811. "version": "v4.1.2",
  1812. "source": {
  1813. "type": "git",
  1814. "url": "https://github.com/symfony/console.git",
  1815. "reference": "5c31f6a97c1c240707f6d786e7e59bfacdbc0219"
  1816. },
  1817. "dist": {
  1818. "type": "zip",
  1819. "url": "https://api.github.com/repos/symfony/console/zipball/5c31f6a97c1c240707f6d786e7e59bfacdbc0219",
  1820. "reference": "5c31f6a97c1c240707f6d786e7e59bfacdbc0219",
  1821. "shasum": ""
  1822. },
  1823. "require": {
  1824. "php": "^7.1.3",
  1825. "symfony/polyfill-mbstring": "~1.0"
  1826. },
  1827. "conflict": {
  1828. "symfony/dependency-injection": "<3.4",
  1829. "symfony/process": "<3.3"
  1830. },
  1831. "require-dev": {
  1832. "psr/log": "~1.0",
  1833. "symfony/config": "~3.4|~4.0",
  1834. "symfony/dependency-injection": "~3.4|~4.0",
  1835. "symfony/event-dispatcher": "~3.4|~4.0",
  1836. "symfony/lock": "~3.4|~4.0",
  1837. "symfony/process": "~3.4|~4.0"
  1838. },
  1839. "suggest": {
  1840. "psr/log-implementation": "For using the console logger",
  1841. "symfony/event-dispatcher": "",
  1842. "symfony/lock": "",
  1843. "symfony/process": ""
  1844. },
  1845. "type": "library",
  1846. "extra": {
  1847. "branch-alias": {
  1848. "dev-master": "4.1-dev"
  1849. }
  1850. },
  1851. "autoload": {
  1852. "psr-4": {
  1853. "Symfony\\Component\\Console\\": ""
  1854. },
  1855. "exclude-from-classmap": [
  1856. "/Tests/"
  1857. ]
  1858. },
  1859. "notification-url": "https://packagist.org/downloads/",
  1860. "license": [
  1861. "MIT"
  1862. ],
  1863. "authors": [
  1864. {
  1865. "name": "Fabien Potencier",
  1866. "email": "fabien@symfony.com"
  1867. },
  1868. {
  1869. "name": "Symfony Community",
  1870. "homepage": "https://symfony.com/contributors"
  1871. }
  1872. ],
  1873. "description": "Symfony Console Component",
  1874. "homepage": "https://symfony.com",
  1875. "time": "2018-07-16T14:05:40+00:00"
  1876. },
  1877. {
  1878. "name": "symfony/filesystem",
  1879. "version": "v4.1.2",
  1880. "source": {
  1881. "type": "git",
  1882. "url": "https://github.com/symfony/filesystem.git",
  1883. "reference": "562bf7005b55fd80d26b582d28e3e10f2dd5ae9c"
  1884. },
  1885. "dist": {
  1886. "type": "zip",
  1887. "url": "https://api.github.com/repos/symfony/filesystem/zipball/562bf7005b55fd80d26b582d28e3e10f2dd5ae9c",
  1888. "reference": "562bf7005b55fd80d26b582d28e3e10f2dd5ae9c",
  1889. "shasum": ""
  1890. },
  1891. "require": {
  1892. "php": "^7.1.3",
  1893. "symfony/polyfill-ctype": "~1.8"
  1894. },
  1895. "type": "library",
  1896. "extra": {
  1897. "branch-alias": {
  1898. "dev-master": "4.1-dev"
  1899. }
  1900. },
  1901. "autoload": {
  1902. "psr-4": {
  1903. "Symfony\\Component\\Filesystem\\": ""
  1904. },
  1905. "exclude-from-classmap": [
  1906. "/Tests/"
  1907. ]
  1908. },
  1909. "notification-url": "https://packagist.org/downloads/",
  1910. "license": [
  1911. "MIT"
  1912. ],
  1913. "authors": [
  1914. {
  1915. "name": "Fabien Potencier",
  1916. "email": "fabien@symfony.com"
  1917. },
  1918. {
  1919. "name": "Symfony Community",
  1920. "homepage": "https://symfony.com/contributors"
  1921. }
  1922. ],
  1923. "description": "Symfony Filesystem Component",
  1924. "homepage": "https://symfony.com",
  1925. "time": "2018-05-30T07:26:09+00:00"
  1926. },
  1927. {
  1928. "name": "symfony/polyfill-ctype",
  1929. "version": "v1.8.0",
  1930. "source": {
  1931. "type": "git",
  1932. "url": "https://github.com/symfony/polyfill-ctype.git",
  1933. "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae"
  1934. },
  1935. "dist": {
  1936. "type": "zip",
  1937. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
  1938. "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
  1939. "shasum": ""
  1940. },
  1941. "require": {
  1942. "php": ">=5.3.3"
  1943. },
  1944. "type": "library",
  1945. "extra": {
  1946. "branch-alias": {
  1947. "dev-master": "1.8-dev"
  1948. }
  1949. },
  1950. "autoload": {
  1951. "psr-4": {
  1952. "Symfony\\Polyfill\\Ctype\\": ""
  1953. },
  1954. "files": [
  1955. "bootstrap.php"
  1956. ]
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "MIT"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "Symfony Community",
  1965. "homepage": "https://symfony.com/contributors"
  1966. },
  1967. {
  1968. "name": "Gert de Pagter",
  1969. "email": "BackEndTea@gmail.com"
  1970. }
  1971. ],
  1972. "description": "Symfony polyfill for ctype functions",
  1973. "homepage": "https://symfony.com",
  1974. "keywords": [
  1975. "compatibility",
  1976. "ctype",
  1977. "polyfill",
  1978. "portable"
  1979. ],
  1980. "time": "2018-04-30T19:57:29+00:00"
  1981. },
  1982. {
  1983. "name": "symfony/stopwatch",
  1984. "version": "v4.1.2",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://github.com/symfony/stopwatch.git",
  1988. "reference": "07463bbbbbfe119045a24c4a516f92ebd2752784"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/07463bbbbbfe119045a24c4a516f92ebd2752784",
  1993. "reference": "07463bbbbbfe119045a24c4a516f92ebd2752784",
  1994. "shasum": ""
  1995. },
  1996. "require": {
  1997. "php": "^7.1.3"
  1998. },
  1999. "type": "library",
  2000. "extra": {
  2001. "branch-alias": {
  2002. "dev-master": "4.1-dev"
  2003. }
  2004. },
  2005. "autoload": {
  2006. "psr-4": {
  2007. "Symfony\\Component\\Stopwatch\\": ""
  2008. },
  2009. "exclude-from-classmap": [
  2010. "/Tests/"
  2011. ]
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "authors": [
  2018. {
  2019. "name": "Fabien Potencier",
  2020. "email": "fabien@symfony.com"
  2021. },
  2022. {
  2023. "name": "Symfony Community",
  2024. "homepage": "https://symfony.com/contributors"
  2025. }
  2026. ],
  2027. "description": "Symfony Stopwatch Component",
  2028. "homepage": "https://symfony.com",
  2029. "time": "2018-02-19T16:51:42+00:00"
  2030. },
  2031. {
  2032. "name": "symfony/yaml",
  2033. "version": "v4.1.2",
  2034. "source": {
  2035. "type": "git",
  2036. "url": "https://github.com/symfony/yaml.git",
  2037. "reference": "80e4bfa9685fc4a09acc4a857ec16974a9cd944e"
  2038. },
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://api.github.com/repos/symfony/yaml/zipball/80e4bfa9685fc4a09acc4a857ec16974a9cd944e",
  2042. "reference": "80e4bfa9685fc4a09acc4a857ec16974a9cd944e",
  2043. "shasum": ""
  2044. },
  2045. "require": {
  2046. "php": "^7.1.3",
  2047. "symfony/polyfill-ctype": "~1.8"
  2048. },
  2049. "conflict": {
  2050. "symfony/console": "<3.4"
  2051. },
  2052. "require-dev": {
  2053. "symfony/console": "~3.4|~4.0"
  2054. },
  2055. "suggest": {
  2056. "symfony/console": "For validating YAML files using the lint command"
  2057. },
  2058. "type": "library",
  2059. "extra": {
  2060. "branch-alias": {
  2061. "dev-master": "4.1-dev"
  2062. }
  2063. },
  2064. "autoload": {
  2065. "psr-4": {
  2066. "Symfony\\Component\\Yaml\\": ""
  2067. },
  2068. "exclude-from-classmap": [
  2069. "/Tests/"
  2070. ]
  2071. },
  2072. "notification-url": "https://packagist.org/downloads/",
  2073. "license": [
  2074. "MIT"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "Fabien Potencier",
  2079. "email": "fabien@symfony.com"
  2080. },
  2081. {
  2082. "name": "Symfony Community",
  2083. "homepage": "https://symfony.com/contributors"
  2084. }
  2085. ],
  2086. "description": "Symfony Yaml Component",
  2087. "homepage": "https://symfony.com",
  2088. "time": "2018-05-30T07:26:09+00:00"
  2089. },
  2090. {
  2091. "name": "theseer/tokenizer",
  2092. "version": "1.1.0",
  2093. "source": {
  2094. "type": "git",
  2095. "url": "https://github.com/theseer/tokenizer.git",
  2096. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  2097. },
  2098. "dist": {
  2099. "type": "zip",
  2100. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  2101. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  2102. "shasum": ""
  2103. },
  2104. "require": {
  2105. "ext-dom": "*",
  2106. "ext-tokenizer": "*",
  2107. "ext-xmlwriter": "*",
  2108. "php": "^7.0"
  2109. },
  2110. "type": "library",
  2111. "autoload": {
  2112. "classmap": [
  2113. "src/"
  2114. ]
  2115. },
  2116. "notification-url": "https://packagist.org/downloads/",
  2117. "license": [
  2118. "BSD-3-Clause"
  2119. ],
  2120. "authors": [
  2121. {
  2122. "name": "Arne Blankerts",
  2123. "email": "arne@blankerts.de",
  2124. "role": "Developer"
  2125. }
  2126. ],
  2127. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  2128. "time": "2017-04-07T12:08:54+00:00"
  2129. },
  2130. {
  2131. "name": "webmozart/assert",
  2132. "version": "1.3.0",
  2133. "source": {
  2134. "type": "git",
  2135. "url": "https://github.com/webmozart/assert.git",
  2136. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  2137. },
  2138. "dist": {
  2139. "type": "zip",
  2140. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  2141. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  2142. "shasum": ""
  2143. },
  2144. "require": {
  2145. "php": "^5.3.3 || ^7.0"
  2146. },
  2147. "require-dev": {
  2148. "phpunit/phpunit": "^4.6",
  2149. "sebastian/version": "^1.0.1"
  2150. },
  2151. "type": "library",
  2152. "extra": {
  2153. "branch-alias": {
  2154. "dev-master": "1.3-dev"
  2155. }
  2156. },
  2157. "autoload": {
  2158. "psr-4": {
  2159. "Webmozart\\Assert\\": "src/"
  2160. }
  2161. },
  2162. "notification-url": "https://packagist.org/downloads/",
  2163. "license": [
  2164. "MIT"
  2165. ],
  2166. "authors": [
  2167. {
  2168. "name": "Bernhard Schussek",
  2169. "email": "bschussek@gmail.com"
  2170. }
  2171. ],
  2172. "description": "Assertions to validate method input/output with nice error messages.",
  2173. "keywords": [
  2174. "assert",
  2175. "check",
  2176. "validate"
  2177. ],
  2178. "time": "2018-01-29T19:49:41+00:00"
  2179. }
  2180. ],
  2181. "aliases": [],
  2182. "minimum-stability": "stable",
  2183. "stability-flags": [],
  2184. "prefer-stable": false,
  2185. "prefer-lowest": false,
  2186. "platform": {
  2187. "php": ">=7.1.0"
  2188. },
  2189. "platform-dev": []
  2190. }