composer.lock 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794
  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": "222ade7c4b3bd98a3c43bbe35b9d103c",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "doctrine/instantiator",
  12. "version": "1.4.0",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/doctrine/instantiator.git",
  16. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  21. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "php": "^7.1 || ^8.0"
  26. },
  27. "require-dev": {
  28. "doctrine/coding-standard": "^8.0",
  29. "ext-pdo": "*",
  30. "ext-phar": "*",
  31. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  32. "phpstan/phpstan": "^0.12",
  33. "phpstan/phpstan-phpunit": "^0.12",
  34. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  35. },
  36. "type": "library",
  37. "autoload": {
  38. "psr-4": {
  39. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Marco Pivetta",
  49. "email": "ocramius@gmail.com",
  50. "homepage": "https://ocramius.github.io/"
  51. }
  52. ],
  53. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  54. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  55. "keywords": [
  56. "constructor",
  57. "instantiate"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/doctrine/instantiator/issues",
  61. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  62. },
  63. "funding": [
  64. {
  65. "url": "https://www.doctrine-project.org/sponsorship.html",
  66. "type": "custom"
  67. },
  68. {
  69. "url": "https://www.patreon.com/phpdoctrine",
  70. "type": "patreon"
  71. },
  72. {
  73. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  74. "type": "tidelift"
  75. }
  76. ],
  77. "time": "2020-11-10T18:47:58+00:00"
  78. },
  79. {
  80. "name": "myclabs/deep-copy",
  81. "version": "1.10.2",
  82. "source": {
  83. "type": "git",
  84. "url": "https://github.com/myclabs/DeepCopy.git",
  85. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  86. },
  87. "dist": {
  88. "type": "zip",
  89. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  90. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  91. "shasum": ""
  92. },
  93. "require": {
  94. "php": "^7.1 || ^8.0"
  95. },
  96. "replace": {
  97. "myclabs/deep-copy": "self.version"
  98. },
  99. "require-dev": {
  100. "doctrine/collections": "^1.0",
  101. "doctrine/common": "^2.6",
  102. "phpunit/phpunit": "^7.1"
  103. },
  104. "type": "library",
  105. "autoload": {
  106. "psr-4": {
  107. "DeepCopy\\": "src/DeepCopy/"
  108. },
  109. "files": [
  110. "src/DeepCopy/deep_copy.php"
  111. ]
  112. },
  113. "notification-url": "https://packagist.org/downloads/",
  114. "license": [
  115. "MIT"
  116. ],
  117. "description": "Create deep copies (clones) of your objects",
  118. "keywords": [
  119. "clone",
  120. "copy",
  121. "duplicate",
  122. "object",
  123. "object graph"
  124. ],
  125. "support": {
  126. "issues": "https://github.com/myclabs/DeepCopy/issues",
  127. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  128. },
  129. "funding": [
  130. {
  131. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  132. "type": "tidelift"
  133. }
  134. ],
  135. "time": "2020-11-13T09:40:50+00:00"
  136. },
  137. {
  138. "name": "phar-io/manifest",
  139. "version": "2.0.1",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/phar-io/manifest.git",
  143. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  148. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "ext-dom": "*",
  153. "ext-phar": "*",
  154. "ext-xmlwriter": "*",
  155. "phar-io/version": "^3.0.1",
  156. "php": "^7.2 || ^8.0"
  157. },
  158. "type": "library",
  159. "extra": {
  160. "branch-alias": {
  161. "dev-master": "2.0.x-dev"
  162. }
  163. },
  164. "autoload": {
  165. "classmap": [
  166. "src/"
  167. ]
  168. },
  169. "notification-url": "https://packagist.org/downloads/",
  170. "license": [
  171. "BSD-3-Clause"
  172. ],
  173. "authors": [
  174. {
  175. "name": "Arne Blankerts",
  176. "email": "arne@blankerts.de",
  177. "role": "Developer"
  178. },
  179. {
  180. "name": "Sebastian Heuer",
  181. "email": "sebastian@phpeople.de",
  182. "role": "Developer"
  183. },
  184. {
  185. "name": "Sebastian Bergmann",
  186. "email": "sebastian@phpunit.de",
  187. "role": "Developer"
  188. }
  189. ],
  190. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  191. "support": {
  192. "issues": "https://github.com/phar-io/manifest/issues",
  193. "source": "https://github.com/phar-io/manifest/tree/master"
  194. },
  195. "time": "2020-06-27T14:33:11+00:00"
  196. },
  197. {
  198. "name": "phar-io/version",
  199. "version": "3.1.0",
  200. "source": {
  201. "type": "git",
  202. "url": "https://github.com/phar-io/version.git",
  203. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  204. },
  205. "dist": {
  206. "type": "zip",
  207. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  208. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  209. "shasum": ""
  210. },
  211. "require": {
  212. "php": "^7.2 || ^8.0"
  213. },
  214. "type": "library",
  215. "autoload": {
  216. "classmap": [
  217. "src/"
  218. ]
  219. },
  220. "notification-url": "https://packagist.org/downloads/",
  221. "license": [
  222. "BSD-3-Clause"
  223. ],
  224. "authors": [
  225. {
  226. "name": "Arne Blankerts",
  227. "email": "arne@blankerts.de",
  228. "role": "Developer"
  229. },
  230. {
  231. "name": "Sebastian Heuer",
  232. "email": "sebastian@phpeople.de",
  233. "role": "Developer"
  234. },
  235. {
  236. "name": "Sebastian Bergmann",
  237. "email": "sebastian@phpunit.de",
  238. "role": "Developer"
  239. }
  240. ],
  241. "description": "Library for handling version information and constraints",
  242. "support": {
  243. "issues": "https://github.com/phar-io/version/issues",
  244. "source": "https://github.com/phar-io/version/tree/3.1.0"
  245. },
  246. "time": "2021-02-23T14:00:09+00:00"
  247. },
  248. {
  249. "name": "phpdocumentor/reflection-common",
  250. "version": "2.2.0",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  254. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  259. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  260. "shasum": ""
  261. },
  262. "require": {
  263. "php": "^7.2 || ^8.0"
  264. },
  265. "type": "library",
  266. "extra": {
  267. "branch-alias": {
  268. "dev-2.x": "2.x-dev"
  269. }
  270. },
  271. "autoload": {
  272. "psr-4": {
  273. "phpDocumentor\\Reflection\\": "src/"
  274. }
  275. },
  276. "notification-url": "https://packagist.org/downloads/",
  277. "license": [
  278. "MIT"
  279. ],
  280. "authors": [
  281. {
  282. "name": "Jaap van Otterdijk",
  283. "email": "opensource@ijaap.nl"
  284. }
  285. ],
  286. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  287. "homepage": "http://www.phpdoc.org",
  288. "keywords": [
  289. "FQSEN",
  290. "phpDocumentor",
  291. "phpdoc",
  292. "reflection",
  293. "static analysis"
  294. ],
  295. "support": {
  296. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  297. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  298. },
  299. "time": "2020-06-27T09:03:43+00:00"
  300. },
  301. {
  302. "name": "phpdocumentor/reflection-docblock",
  303. "version": "5.2.2",
  304. "source": {
  305. "type": "git",
  306. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  307. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  308. },
  309. "dist": {
  310. "type": "zip",
  311. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  312. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  313. "shasum": ""
  314. },
  315. "require": {
  316. "ext-filter": "*",
  317. "php": "^7.2 || ^8.0",
  318. "phpdocumentor/reflection-common": "^2.2",
  319. "phpdocumentor/type-resolver": "^1.3",
  320. "webmozart/assert": "^1.9.1"
  321. },
  322. "require-dev": {
  323. "mockery/mockery": "~1.3.2"
  324. },
  325. "type": "library",
  326. "extra": {
  327. "branch-alias": {
  328. "dev-master": "5.x-dev"
  329. }
  330. },
  331. "autoload": {
  332. "psr-4": {
  333. "phpDocumentor\\Reflection\\": "src"
  334. }
  335. },
  336. "notification-url": "https://packagist.org/downloads/",
  337. "license": [
  338. "MIT"
  339. ],
  340. "authors": [
  341. {
  342. "name": "Mike van Riel",
  343. "email": "me@mikevanriel.com"
  344. },
  345. {
  346. "name": "Jaap van Otterdijk",
  347. "email": "account@ijaap.nl"
  348. }
  349. ],
  350. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  351. "support": {
  352. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  353. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  354. },
  355. "time": "2020-09-03T19:13:55+00:00"
  356. },
  357. {
  358. "name": "phpdocumentor/type-resolver",
  359. "version": "1.4.0",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  363. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  368. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  369. "shasum": ""
  370. },
  371. "require": {
  372. "php": "^7.2 || ^8.0",
  373. "phpdocumentor/reflection-common": "^2.0"
  374. },
  375. "require-dev": {
  376. "ext-tokenizer": "*"
  377. },
  378. "type": "library",
  379. "extra": {
  380. "branch-alias": {
  381. "dev-1.x": "1.x-dev"
  382. }
  383. },
  384. "autoload": {
  385. "psr-4": {
  386. "phpDocumentor\\Reflection\\": "src"
  387. }
  388. },
  389. "notification-url": "https://packagist.org/downloads/",
  390. "license": [
  391. "MIT"
  392. ],
  393. "authors": [
  394. {
  395. "name": "Mike van Riel",
  396. "email": "me@mikevanriel.com"
  397. }
  398. ],
  399. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  400. "support": {
  401. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  402. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  403. },
  404. "time": "2020-09-17T18:55:26+00:00"
  405. },
  406. {
  407. "name": "phpspec/prophecy",
  408. "version": "1.13.0",
  409. "source": {
  410. "type": "git",
  411. "url": "https://github.com/phpspec/prophecy.git",
  412. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  413. },
  414. "dist": {
  415. "type": "zip",
  416. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  417. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  418. "shasum": ""
  419. },
  420. "require": {
  421. "doctrine/instantiator": "^1.2",
  422. "php": "^7.2 || ~8.0, <8.1",
  423. "phpdocumentor/reflection-docblock": "^5.2",
  424. "sebastian/comparator": "^3.0 || ^4.0",
  425. "sebastian/recursion-context": "^3.0 || ^4.0"
  426. },
  427. "require-dev": {
  428. "phpspec/phpspec": "^6.0",
  429. "phpunit/phpunit": "^8.0 || ^9.0"
  430. },
  431. "type": "library",
  432. "extra": {
  433. "branch-alias": {
  434. "dev-master": "1.11.x-dev"
  435. }
  436. },
  437. "autoload": {
  438. "psr-4": {
  439. "Prophecy\\": "src/Prophecy"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "MIT"
  445. ],
  446. "authors": [
  447. {
  448. "name": "Konstantin Kudryashov",
  449. "email": "ever.zet@gmail.com",
  450. "homepage": "http://everzet.com"
  451. },
  452. {
  453. "name": "Marcello Duarte",
  454. "email": "marcello.duarte@gmail.com"
  455. }
  456. ],
  457. "description": "Highly opinionated mocking framework for PHP 5.3+",
  458. "homepage": "https://github.com/phpspec/prophecy",
  459. "keywords": [
  460. "Double",
  461. "Dummy",
  462. "fake",
  463. "mock",
  464. "spy",
  465. "stub"
  466. ],
  467. "support": {
  468. "issues": "https://github.com/phpspec/prophecy/issues",
  469. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  470. },
  471. "time": "2021-03-17T13:42:18+00:00"
  472. },
  473. {
  474. "name": "phpunit/php-code-coverage",
  475. "version": "7.0.14",
  476. "source": {
  477. "type": "git",
  478. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  479. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  480. },
  481. "dist": {
  482. "type": "zip",
  483. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  484. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  485. "shasum": ""
  486. },
  487. "require": {
  488. "ext-dom": "*",
  489. "ext-xmlwriter": "*",
  490. "php": ">=7.2",
  491. "phpunit/php-file-iterator": "^2.0.2",
  492. "phpunit/php-text-template": "^1.2.1",
  493. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  494. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  495. "sebastian/environment": "^4.2.2",
  496. "sebastian/version": "^2.0.1",
  497. "theseer/tokenizer": "^1.1.3"
  498. },
  499. "require-dev": {
  500. "phpunit/phpunit": "^8.2.2"
  501. },
  502. "suggest": {
  503. "ext-xdebug": "^2.7.2"
  504. },
  505. "type": "library",
  506. "extra": {
  507. "branch-alias": {
  508. "dev-master": "7.0-dev"
  509. }
  510. },
  511. "autoload": {
  512. "classmap": [
  513. "src/"
  514. ]
  515. },
  516. "notification-url": "https://packagist.org/downloads/",
  517. "license": [
  518. "BSD-3-Clause"
  519. ],
  520. "authors": [
  521. {
  522. "name": "Sebastian Bergmann",
  523. "email": "sebastian@phpunit.de",
  524. "role": "lead"
  525. }
  526. ],
  527. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  528. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  529. "keywords": [
  530. "coverage",
  531. "testing",
  532. "xunit"
  533. ],
  534. "support": {
  535. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  536. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14"
  537. },
  538. "funding": [
  539. {
  540. "url": "https://github.com/sebastianbergmann",
  541. "type": "github"
  542. }
  543. ],
  544. "time": "2020-12-02T13:39:03+00:00"
  545. },
  546. {
  547. "name": "phpunit/php-file-iterator",
  548. "version": "2.0.3",
  549. "source": {
  550. "type": "git",
  551. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  552. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  553. },
  554. "dist": {
  555. "type": "zip",
  556. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  557. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  558. "shasum": ""
  559. },
  560. "require": {
  561. "php": ">=7.1"
  562. },
  563. "require-dev": {
  564. "phpunit/phpunit": "^8.5"
  565. },
  566. "type": "library",
  567. "extra": {
  568. "branch-alias": {
  569. "dev-master": "2.0.x-dev"
  570. }
  571. },
  572. "autoload": {
  573. "classmap": [
  574. "src/"
  575. ]
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "BSD-3-Clause"
  580. ],
  581. "authors": [
  582. {
  583. "name": "Sebastian Bergmann",
  584. "email": "sebastian@phpunit.de",
  585. "role": "lead"
  586. }
  587. ],
  588. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  589. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  590. "keywords": [
  591. "filesystem",
  592. "iterator"
  593. ],
  594. "support": {
  595. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  596. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  597. },
  598. "funding": [
  599. {
  600. "url": "https://github.com/sebastianbergmann",
  601. "type": "github"
  602. }
  603. ],
  604. "time": "2020-11-30T08:25:21+00:00"
  605. },
  606. {
  607. "name": "phpunit/php-text-template",
  608. "version": "1.2.1",
  609. "source": {
  610. "type": "git",
  611. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  612. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  613. },
  614. "dist": {
  615. "type": "zip",
  616. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  617. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  618. "shasum": ""
  619. },
  620. "require": {
  621. "php": ">=5.3.3"
  622. },
  623. "type": "library",
  624. "autoload": {
  625. "classmap": [
  626. "src/"
  627. ]
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "BSD-3-Clause"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Sebastian Bergmann",
  636. "email": "sebastian@phpunit.de",
  637. "role": "lead"
  638. }
  639. ],
  640. "description": "Simple template engine.",
  641. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  642. "keywords": [
  643. "template"
  644. ],
  645. "support": {
  646. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  647. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  648. },
  649. "time": "2015-06-21T13:50:34+00:00"
  650. },
  651. {
  652. "name": "phpunit/php-timer",
  653. "version": "2.1.3",
  654. "source": {
  655. "type": "git",
  656. "url": "https://github.com/sebastianbergmann/php-timer.git",
  657. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  658. },
  659. "dist": {
  660. "type": "zip",
  661. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  662. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  663. "shasum": ""
  664. },
  665. "require": {
  666. "php": ">=7.1"
  667. },
  668. "require-dev": {
  669. "phpunit/phpunit": "^8.5"
  670. },
  671. "type": "library",
  672. "extra": {
  673. "branch-alias": {
  674. "dev-master": "2.1-dev"
  675. }
  676. },
  677. "autoload": {
  678. "classmap": [
  679. "src/"
  680. ]
  681. },
  682. "notification-url": "https://packagist.org/downloads/",
  683. "license": [
  684. "BSD-3-Clause"
  685. ],
  686. "authors": [
  687. {
  688. "name": "Sebastian Bergmann",
  689. "email": "sebastian@phpunit.de",
  690. "role": "lead"
  691. }
  692. ],
  693. "description": "Utility class for timing",
  694. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  695. "keywords": [
  696. "timer"
  697. ],
  698. "support": {
  699. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  700. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  701. },
  702. "funding": [
  703. {
  704. "url": "https://github.com/sebastianbergmann",
  705. "type": "github"
  706. }
  707. ],
  708. "time": "2020-11-30T08:20:02+00:00"
  709. },
  710. {
  711. "name": "phpunit/php-token-stream",
  712. "version": "3.1.2",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  716. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/472b687829041c24b25f475e14c2f38a09edf1c2",
  721. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2",
  722. "shasum": ""
  723. },
  724. "require": {
  725. "ext-tokenizer": "*",
  726. "php": ">=7.1"
  727. },
  728. "require-dev": {
  729. "phpunit/phpunit": "^7.0"
  730. },
  731. "type": "library",
  732. "extra": {
  733. "branch-alias": {
  734. "dev-master": "3.1-dev"
  735. }
  736. },
  737. "autoload": {
  738. "classmap": [
  739. "src/"
  740. ]
  741. },
  742. "notification-url": "https://packagist.org/downloads/",
  743. "license": [
  744. "BSD-3-Clause"
  745. ],
  746. "authors": [
  747. {
  748. "name": "Sebastian Bergmann",
  749. "email": "sebastian@phpunit.de"
  750. }
  751. ],
  752. "description": "Wrapper around PHP's tokenizer extension.",
  753. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  754. "keywords": [
  755. "tokenizer"
  756. ],
  757. "support": {
  758. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  759. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.2"
  760. },
  761. "funding": [
  762. {
  763. "url": "https://github.com/sebastianbergmann",
  764. "type": "github"
  765. }
  766. ],
  767. "abandoned": true,
  768. "time": "2020-11-30T08:38:46+00:00"
  769. },
  770. {
  771. "name": "phpunit/phpunit",
  772. "version": "8.5.17",
  773. "source": {
  774. "type": "git",
  775. "url": "https://github.com/sebastianbergmann/phpunit.git",
  776. "reference": "79067856d85421c56d413bd238d4e2cd6b0e54da"
  777. },
  778. "dist": {
  779. "type": "zip",
  780. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/79067856d85421c56d413bd238d4e2cd6b0e54da",
  781. "reference": "79067856d85421c56d413bd238d4e2cd6b0e54da",
  782. "shasum": ""
  783. },
  784. "require": {
  785. "doctrine/instantiator": "^1.3.1",
  786. "ext-dom": "*",
  787. "ext-json": "*",
  788. "ext-libxml": "*",
  789. "ext-mbstring": "*",
  790. "ext-xml": "*",
  791. "ext-xmlwriter": "*",
  792. "myclabs/deep-copy": "^1.10.0",
  793. "phar-io/manifest": "^2.0.1",
  794. "phar-io/version": "^3.0.2",
  795. "php": ">=7.2",
  796. "phpspec/prophecy": "^1.10.3",
  797. "phpunit/php-code-coverage": "^7.0.12",
  798. "phpunit/php-file-iterator": "^2.0.2",
  799. "phpunit/php-text-template": "^1.2.1",
  800. "phpunit/php-timer": "^2.1.2",
  801. "sebastian/comparator": "^3.0.2",
  802. "sebastian/diff": "^3.0.2",
  803. "sebastian/environment": "^4.2.3",
  804. "sebastian/exporter": "^3.1.2",
  805. "sebastian/global-state": "^3.0.0",
  806. "sebastian/object-enumerator": "^3.0.3",
  807. "sebastian/resource-operations": "^2.0.1",
  808. "sebastian/type": "^1.1.3",
  809. "sebastian/version": "^2.0.1"
  810. },
  811. "require-dev": {
  812. "ext-pdo": "*"
  813. },
  814. "suggest": {
  815. "ext-soap": "*",
  816. "ext-xdebug": "*",
  817. "phpunit/php-invoker": "^2.0.0"
  818. },
  819. "bin": [
  820. "phpunit"
  821. ],
  822. "type": "library",
  823. "extra": {
  824. "branch-alias": {
  825. "dev-master": "8.5-dev"
  826. }
  827. },
  828. "autoload": {
  829. "classmap": [
  830. "src/"
  831. ]
  832. },
  833. "notification-url": "https://packagist.org/downloads/",
  834. "license": [
  835. "BSD-3-Clause"
  836. ],
  837. "authors": [
  838. {
  839. "name": "Sebastian Bergmann",
  840. "email": "sebastian@phpunit.de",
  841. "role": "lead"
  842. }
  843. ],
  844. "description": "The PHP Unit Testing framework.",
  845. "homepage": "https://phpunit.de/",
  846. "keywords": [
  847. "phpunit",
  848. "testing",
  849. "xunit"
  850. ],
  851. "support": {
  852. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  853. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.17"
  854. },
  855. "funding": [
  856. {
  857. "url": "https://phpunit.de/donate.html",
  858. "type": "custom"
  859. },
  860. {
  861. "url": "https://github.com/sebastianbergmann",
  862. "type": "github"
  863. }
  864. ],
  865. "time": "2021-06-23T05:12:43+00:00"
  866. },
  867. {
  868. "name": "sebastian/code-unit-reverse-lookup",
  869. "version": "1.0.2",
  870. "source": {
  871. "type": "git",
  872. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  873. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  874. },
  875. "dist": {
  876. "type": "zip",
  877. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  878. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  879. "shasum": ""
  880. },
  881. "require": {
  882. "php": ">=5.6"
  883. },
  884. "require-dev": {
  885. "phpunit/phpunit": "^8.5"
  886. },
  887. "type": "library",
  888. "extra": {
  889. "branch-alias": {
  890. "dev-master": "1.0.x-dev"
  891. }
  892. },
  893. "autoload": {
  894. "classmap": [
  895. "src/"
  896. ]
  897. },
  898. "notification-url": "https://packagist.org/downloads/",
  899. "license": [
  900. "BSD-3-Clause"
  901. ],
  902. "authors": [
  903. {
  904. "name": "Sebastian Bergmann",
  905. "email": "sebastian@phpunit.de"
  906. }
  907. ],
  908. "description": "Looks up which function or method a line of code belongs to",
  909. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  910. "support": {
  911. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  912. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  913. },
  914. "funding": [
  915. {
  916. "url": "https://github.com/sebastianbergmann",
  917. "type": "github"
  918. }
  919. ],
  920. "time": "2020-11-30T08:15:22+00:00"
  921. },
  922. {
  923. "name": "sebastian/comparator",
  924. "version": "3.0.3",
  925. "source": {
  926. "type": "git",
  927. "url": "https://github.com/sebastianbergmann/comparator.git",
  928. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  929. },
  930. "dist": {
  931. "type": "zip",
  932. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  933. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  934. "shasum": ""
  935. },
  936. "require": {
  937. "php": ">=7.1",
  938. "sebastian/diff": "^3.0",
  939. "sebastian/exporter": "^3.1"
  940. },
  941. "require-dev": {
  942. "phpunit/phpunit": "^8.5"
  943. },
  944. "type": "library",
  945. "extra": {
  946. "branch-alias": {
  947. "dev-master": "3.0-dev"
  948. }
  949. },
  950. "autoload": {
  951. "classmap": [
  952. "src/"
  953. ]
  954. },
  955. "notification-url": "https://packagist.org/downloads/",
  956. "license": [
  957. "BSD-3-Clause"
  958. ],
  959. "authors": [
  960. {
  961. "name": "Sebastian Bergmann",
  962. "email": "sebastian@phpunit.de"
  963. },
  964. {
  965. "name": "Jeff Welch",
  966. "email": "whatthejeff@gmail.com"
  967. },
  968. {
  969. "name": "Volker Dusch",
  970. "email": "github@wallbash.com"
  971. },
  972. {
  973. "name": "Bernhard Schussek",
  974. "email": "bschussek@2bepublished.at"
  975. }
  976. ],
  977. "description": "Provides the functionality to compare PHP values for equality",
  978. "homepage": "https://github.com/sebastianbergmann/comparator",
  979. "keywords": [
  980. "comparator",
  981. "compare",
  982. "equality"
  983. ],
  984. "support": {
  985. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  986. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  987. },
  988. "funding": [
  989. {
  990. "url": "https://github.com/sebastianbergmann",
  991. "type": "github"
  992. }
  993. ],
  994. "time": "2020-11-30T08:04:30+00:00"
  995. },
  996. {
  997. "name": "sebastian/diff",
  998. "version": "3.0.3",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/sebastianbergmann/diff.git",
  1002. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  1007. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "php": ">=7.1"
  1012. },
  1013. "require-dev": {
  1014. "phpunit/phpunit": "^7.5 || ^8.0",
  1015. "symfony/process": "^2 || ^3.3 || ^4"
  1016. },
  1017. "type": "library",
  1018. "extra": {
  1019. "branch-alias": {
  1020. "dev-master": "3.0-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": "sebastian@phpunit.de"
  1036. },
  1037. {
  1038. "name": "Kore Nordmann",
  1039. "email": "mail@kore-nordmann.de"
  1040. }
  1041. ],
  1042. "description": "Diff implementation",
  1043. "homepage": "https://github.com/sebastianbergmann/diff",
  1044. "keywords": [
  1045. "diff",
  1046. "udiff",
  1047. "unidiff",
  1048. "unified diff"
  1049. ],
  1050. "support": {
  1051. "issues": "https://github.com/sebastianbergmann/diff/issues",
  1052. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  1053. },
  1054. "funding": [
  1055. {
  1056. "url": "https://github.com/sebastianbergmann",
  1057. "type": "github"
  1058. }
  1059. ],
  1060. "time": "2020-11-30T07:59:04+00:00"
  1061. },
  1062. {
  1063. "name": "sebastian/environment",
  1064. "version": "4.2.4",
  1065. "source": {
  1066. "type": "git",
  1067. "url": "https://github.com/sebastianbergmann/environment.git",
  1068. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  1069. },
  1070. "dist": {
  1071. "type": "zip",
  1072. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  1073. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  1074. "shasum": ""
  1075. },
  1076. "require": {
  1077. "php": ">=7.1"
  1078. },
  1079. "require-dev": {
  1080. "phpunit/phpunit": "^7.5"
  1081. },
  1082. "suggest": {
  1083. "ext-posix": "*"
  1084. },
  1085. "type": "library",
  1086. "extra": {
  1087. "branch-alias": {
  1088. "dev-master": "4.2-dev"
  1089. }
  1090. },
  1091. "autoload": {
  1092. "classmap": [
  1093. "src/"
  1094. ]
  1095. },
  1096. "notification-url": "https://packagist.org/downloads/",
  1097. "license": [
  1098. "BSD-3-Clause"
  1099. ],
  1100. "authors": [
  1101. {
  1102. "name": "Sebastian Bergmann",
  1103. "email": "sebastian@phpunit.de"
  1104. }
  1105. ],
  1106. "description": "Provides functionality to handle HHVM/PHP environments",
  1107. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1108. "keywords": [
  1109. "Xdebug",
  1110. "environment",
  1111. "hhvm"
  1112. ],
  1113. "support": {
  1114. "issues": "https://github.com/sebastianbergmann/environment/issues",
  1115. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  1116. },
  1117. "funding": [
  1118. {
  1119. "url": "https://github.com/sebastianbergmann",
  1120. "type": "github"
  1121. }
  1122. ],
  1123. "time": "2020-11-30T07:53:42+00:00"
  1124. },
  1125. {
  1126. "name": "sebastian/exporter",
  1127. "version": "3.1.3",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/sebastianbergmann/exporter.git",
  1131. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  1136. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  1137. "shasum": ""
  1138. },
  1139. "require": {
  1140. "php": ">=7.0",
  1141. "sebastian/recursion-context": "^3.0"
  1142. },
  1143. "require-dev": {
  1144. "ext-mbstring": "*",
  1145. "phpunit/phpunit": "^6.0"
  1146. },
  1147. "type": "library",
  1148. "extra": {
  1149. "branch-alias": {
  1150. "dev-master": "3.1.x-dev"
  1151. }
  1152. },
  1153. "autoload": {
  1154. "classmap": [
  1155. "src/"
  1156. ]
  1157. },
  1158. "notification-url": "https://packagist.org/downloads/",
  1159. "license": [
  1160. "BSD-3-Clause"
  1161. ],
  1162. "authors": [
  1163. {
  1164. "name": "Sebastian Bergmann",
  1165. "email": "sebastian@phpunit.de"
  1166. },
  1167. {
  1168. "name": "Jeff Welch",
  1169. "email": "whatthejeff@gmail.com"
  1170. },
  1171. {
  1172. "name": "Volker Dusch",
  1173. "email": "github@wallbash.com"
  1174. },
  1175. {
  1176. "name": "Adam Harvey",
  1177. "email": "aharvey@php.net"
  1178. },
  1179. {
  1180. "name": "Bernhard Schussek",
  1181. "email": "bschussek@gmail.com"
  1182. }
  1183. ],
  1184. "description": "Provides the functionality to export PHP variables for visualization",
  1185. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1186. "keywords": [
  1187. "export",
  1188. "exporter"
  1189. ],
  1190. "support": {
  1191. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  1192. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  1193. },
  1194. "funding": [
  1195. {
  1196. "url": "https://github.com/sebastianbergmann",
  1197. "type": "github"
  1198. }
  1199. ],
  1200. "time": "2020-11-30T07:47:53+00:00"
  1201. },
  1202. {
  1203. "name": "sebastian/global-state",
  1204. "version": "3.0.1",
  1205. "source": {
  1206. "type": "git",
  1207. "url": "https://github.com/sebastianbergmann/global-state.git",
  1208. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  1209. },
  1210. "dist": {
  1211. "type": "zip",
  1212. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  1213. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  1214. "shasum": ""
  1215. },
  1216. "require": {
  1217. "php": ">=7.2",
  1218. "sebastian/object-reflector": "^1.1.1",
  1219. "sebastian/recursion-context": "^3.0"
  1220. },
  1221. "require-dev": {
  1222. "ext-dom": "*",
  1223. "phpunit/phpunit": "^8.0"
  1224. },
  1225. "suggest": {
  1226. "ext-uopz": "*"
  1227. },
  1228. "type": "library",
  1229. "extra": {
  1230. "branch-alias": {
  1231. "dev-master": "3.0-dev"
  1232. }
  1233. },
  1234. "autoload": {
  1235. "classmap": [
  1236. "src/"
  1237. ]
  1238. },
  1239. "notification-url": "https://packagist.org/downloads/",
  1240. "license": [
  1241. "BSD-3-Clause"
  1242. ],
  1243. "authors": [
  1244. {
  1245. "name": "Sebastian Bergmann",
  1246. "email": "sebastian@phpunit.de"
  1247. }
  1248. ],
  1249. "description": "Snapshotting of global state",
  1250. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1251. "keywords": [
  1252. "global state"
  1253. ],
  1254. "support": {
  1255. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  1256. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  1257. },
  1258. "funding": [
  1259. {
  1260. "url": "https://github.com/sebastianbergmann",
  1261. "type": "github"
  1262. }
  1263. ],
  1264. "time": "2020-11-30T07:43:24+00:00"
  1265. },
  1266. {
  1267. "name": "sebastian/object-enumerator",
  1268. "version": "3.0.4",
  1269. "source": {
  1270. "type": "git",
  1271. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1272. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  1273. },
  1274. "dist": {
  1275. "type": "zip",
  1276. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  1277. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  1278. "shasum": ""
  1279. },
  1280. "require": {
  1281. "php": ">=7.0",
  1282. "sebastian/object-reflector": "^1.1.1",
  1283. "sebastian/recursion-context": "^3.0"
  1284. },
  1285. "require-dev": {
  1286. "phpunit/phpunit": "^6.0"
  1287. },
  1288. "type": "library",
  1289. "extra": {
  1290. "branch-alias": {
  1291. "dev-master": "3.0.x-dev"
  1292. }
  1293. },
  1294. "autoload": {
  1295. "classmap": [
  1296. "src/"
  1297. ]
  1298. },
  1299. "notification-url": "https://packagist.org/downloads/",
  1300. "license": [
  1301. "BSD-3-Clause"
  1302. ],
  1303. "authors": [
  1304. {
  1305. "name": "Sebastian Bergmann",
  1306. "email": "sebastian@phpunit.de"
  1307. }
  1308. ],
  1309. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1310. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1311. "support": {
  1312. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  1313. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  1314. },
  1315. "funding": [
  1316. {
  1317. "url": "https://github.com/sebastianbergmann",
  1318. "type": "github"
  1319. }
  1320. ],
  1321. "time": "2020-11-30T07:40:27+00:00"
  1322. },
  1323. {
  1324. "name": "sebastian/object-reflector",
  1325. "version": "1.1.2",
  1326. "source": {
  1327. "type": "git",
  1328. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  1329. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  1330. },
  1331. "dist": {
  1332. "type": "zip",
  1333. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  1334. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  1335. "shasum": ""
  1336. },
  1337. "require": {
  1338. "php": ">=7.0"
  1339. },
  1340. "require-dev": {
  1341. "phpunit/phpunit": "^6.0"
  1342. },
  1343. "type": "library",
  1344. "extra": {
  1345. "branch-alias": {
  1346. "dev-master": "1.1-dev"
  1347. }
  1348. },
  1349. "autoload": {
  1350. "classmap": [
  1351. "src/"
  1352. ]
  1353. },
  1354. "notification-url": "https://packagist.org/downloads/",
  1355. "license": [
  1356. "BSD-3-Clause"
  1357. ],
  1358. "authors": [
  1359. {
  1360. "name": "Sebastian Bergmann",
  1361. "email": "sebastian@phpunit.de"
  1362. }
  1363. ],
  1364. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  1365. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  1366. "support": {
  1367. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  1368. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  1369. },
  1370. "funding": [
  1371. {
  1372. "url": "https://github.com/sebastianbergmann",
  1373. "type": "github"
  1374. }
  1375. ],
  1376. "time": "2020-11-30T07:37:18+00:00"
  1377. },
  1378. {
  1379. "name": "sebastian/recursion-context",
  1380. "version": "3.0.1",
  1381. "source": {
  1382. "type": "git",
  1383. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1384. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  1385. },
  1386. "dist": {
  1387. "type": "zip",
  1388. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  1389. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  1390. "shasum": ""
  1391. },
  1392. "require": {
  1393. "php": ">=7.0"
  1394. },
  1395. "require-dev": {
  1396. "phpunit/phpunit": "^6.0"
  1397. },
  1398. "type": "library",
  1399. "extra": {
  1400. "branch-alias": {
  1401. "dev-master": "3.0.x-dev"
  1402. }
  1403. },
  1404. "autoload": {
  1405. "classmap": [
  1406. "src/"
  1407. ]
  1408. },
  1409. "notification-url": "https://packagist.org/downloads/",
  1410. "license": [
  1411. "BSD-3-Clause"
  1412. ],
  1413. "authors": [
  1414. {
  1415. "name": "Sebastian Bergmann",
  1416. "email": "sebastian@phpunit.de"
  1417. },
  1418. {
  1419. "name": "Jeff Welch",
  1420. "email": "whatthejeff@gmail.com"
  1421. },
  1422. {
  1423. "name": "Adam Harvey",
  1424. "email": "aharvey@php.net"
  1425. }
  1426. ],
  1427. "description": "Provides functionality to recursively process PHP variables",
  1428. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1429. "support": {
  1430. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  1431. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  1432. },
  1433. "funding": [
  1434. {
  1435. "url": "https://github.com/sebastianbergmann",
  1436. "type": "github"
  1437. }
  1438. ],
  1439. "time": "2020-11-30T07:34:24+00:00"
  1440. },
  1441. {
  1442. "name": "sebastian/resource-operations",
  1443. "version": "2.0.2",
  1444. "source": {
  1445. "type": "git",
  1446. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  1447. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  1448. },
  1449. "dist": {
  1450. "type": "zip",
  1451. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  1452. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  1453. "shasum": ""
  1454. },
  1455. "require": {
  1456. "php": ">=7.1"
  1457. },
  1458. "type": "library",
  1459. "extra": {
  1460. "branch-alias": {
  1461. "dev-master": "2.0-dev"
  1462. }
  1463. },
  1464. "autoload": {
  1465. "classmap": [
  1466. "src/"
  1467. ]
  1468. },
  1469. "notification-url": "https://packagist.org/downloads/",
  1470. "license": [
  1471. "BSD-3-Clause"
  1472. ],
  1473. "authors": [
  1474. {
  1475. "name": "Sebastian Bergmann",
  1476. "email": "sebastian@phpunit.de"
  1477. }
  1478. ],
  1479. "description": "Provides a list of PHP built-in functions that operate on resources",
  1480. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  1481. "support": {
  1482. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  1483. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  1484. },
  1485. "funding": [
  1486. {
  1487. "url": "https://github.com/sebastianbergmann",
  1488. "type": "github"
  1489. }
  1490. ],
  1491. "time": "2020-11-30T07:30:19+00:00"
  1492. },
  1493. {
  1494. "name": "sebastian/type",
  1495. "version": "1.1.4",
  1496. "source": {
  1497. "type": "git",
  1498. "url": "https://github.com/sebastianbergmann/type.git",
  1499. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  1500. },
  1501. "dist": {
  1502. "type": "zip",
  1503. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  1504. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  1505. "shasum": ""
  1506. },
  1507. "require": {
  1508. "php": ">=7.2"
  1509. },
  1510. "require-dev": {
  1511. "phpunit/phpunit": "^8.2"
  1512. },
  1513. "type": "library",
  1514. "extra": {
  1515. "branch-alias": {
  1516. "dev-master": "1.1-dev"
  1517. }
  1518. },
  1519. "autoload": {
  1520. "classmap": [
  1521. "src/"
  1522. ]
  1523. },
  1524. "notification-url": "https://packagist.org/downloads/",
  1525. "license": [
  1526. "BSD-3-Clause"
  1527. ],
  1528. "authors": [
  1529. {
  1530. "name": "Sebastian Bergmann",
  1531. "email": "sebastian@phpunit.de",
  1532. "role": "lead"
  1533. }
  1534. ],
  1535. "description": "Collection of value objects that represent the types of the PHP type system",
  1536. "homepage": "https://github.com/sebastianbergmann/type",
  1537. "support": {
  1538. "issues": "https://github.com/sebastianbergmann/type/issues",
  1539. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  1540. },
  1541. "funding": [
  1542. {
  1543. "url": "https://github.com/sebastianbergmann",
  1544. "type": "github"
  1545. }
  1546. ],
  1547. "time": "2020-11-30T07:25:11+00:00"
  1548. },
  1549. {
  1550. "name": "sebastian/version",
  1551. "version": "2.0.1",
  1552. "source": {
  1553. "type": "git",
  1554. "url": "https://github.com/sebastianbergmann/version.git",
  1555. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  1556. },
  1557. "dist": {
  1558. "type": "zip",
  1559. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  1560. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  1561. "shasum": ""
  1562. },
  1563. "require": {
  1564. "php": ">=5.6"
  1565. },
  1566. "type": "library",
  1567. "extra": {
  1568. "branch-alias": {
  1569. "dev-master": "2.0.x-dev"
  1570. }
  1571. },
  1572. "autoload": {
  1573. "classmap": [
  1574. "src/"
  1575. ]
  1576. },
  1577. "notification-url": "https://packagist.org/downloads/",
  1578. "license": [
  1579. "BSD-3-Clause"
  1580. ],
  1581. "authors": [
  1582. {
  1583. "name": "Sebastian Bergmann",
  1584. "email": "sebastian@phpunit.de",
  1585. "role": "lead"
  1586. }
  1587. ],
  1588. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1589. "homepage": "https://github.com/sebastianbergmann/version",
  1590. "support": {
  1591. "issues": "https://github.com/sebastianbergmann/version/issues",
  1592. "source": "https://github.com/sebastianbergmann/version/tree/master"
  1593. },
  1594. "time": "2016-10-03T07:35:21+00:00"
  1595. },
  1596. {
  1597. "name": "symfony/polyfill-ctype",
  1598. "version": "v1.23.0",
  1599. "source": {
  1600. "type": "git",
  1601. "url": "https://github.com/symfony/polyfill-ctype.git",
  1602. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  1603. },
  1604. "dist": {
  1605. "type": "zip",
  1606. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  1607. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  1608. "shasum": ""
  1609. },
  1610. "require": {
  1611. "php": ">=7.1"
  1612. },
  1613. "suggest": {
  1614. "ext-ctype": "For best performance"
  1615. },
  1616. "type": "library",
  1617. "extra": {
  1618. "branch-alias": {
  1619. "dev-main": "1.23-dev"
  1620. },
  1621. "thanks": {
  1622. "name": "symfony/polyfill",
  1623. "url": "https://github.com/symfony/polyfill"
  1624. }
  1625. },
  1626. "autoload": {
  1627. "psr-4": {
  1628. "Symfony\\Polyfill\\Ctype\\": ""
  1629. },
  1630. "files": [
  1631. "bootstrap.php"
  1632. ]
  1633. },
  1634. "notification-url": "https://packagist.org/downloads/",
  1635. "license": [
  1636. "MIT"
  1637. ],
  1638. "authors": [
  1639. {
  1640. "name": "Gert de Pagter",
  1641. "email": "BackEndTea@gmail.com"
  1642. },
  1643. {
  1644. "name": "Symfony Community",
  1645. "homepage": "https://symfony.com/contributors"
  1646. }
  1647. ],
  1648. "description": "Symfony polyfill for ctype functions",
  1649. "homepage": "https://symfony.com",
  1650. "keywords": [
  1651. "compatibility",
  1652. "ctype",
  1653. "polyfill",
  1654. "portable"
  1655. ],
  1656. "support": {
  1657. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  1658. },
  1659. "funding": [
  1660. {
  1661. "url": "https://symfony.com/sponsor",
  1662. "type": "custom"
  1663. },
  1664. {
  1665. "url": "https://github.com/fabpot",
  1666. "type": "github"
  1667. },
  1668. {
  1669. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1670. "type": "tidelift"
  1671. }
  1672. ],
  1673. "time": "2021-02-19T12:13:01+00:00"
  1674. },
  1675. {
  1676. "name": "theseer/tokenizer",
  1677. "version": "1.2.0",
  1678. "source": {
  1679. "type": "git",
  1680. "url": "https://github.com/theseer/tokenizer.git",
  1681. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  1682. },
  1683. "dist": {
  1684. "type": "zip",
  1685. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  1686. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  1687. "shasum": ""
  1688. },
  1689. "require": {
  1690. "ext-dom": "*",
  1691. "ext-tokenizer": "*",
  1692. "ext-xmlwriter": "*",
  1693. "php": "^7.2 || ^8.0"
  1694. },
  1695. "type": "library",
  1696. "autoload": {
  1697. "classmap": [
  1698. "src/"
  1699. ]
  1700. },
  1701. "notification-url": "https://packagist.org/downloads/",
  1702. "license": [
  1703. "BSD-3-Clause"
  1704. ],
  1705. "authors": [
  1706. {
  1707. "name": "Arne Blankerts",
  1708. "email": "arne@blankerts.de",
  1709. "role": "Developer"
  1710. }
  1711. ],
  1712. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  1713. "support": {
  1714. "issues": "https://github.com/theseer/tokenizer/issues",
  1715. "source": "https://github.com/theseer/tokenizer/tree/master"
  1716. },
  1717. "funding": [
  1718. {
  1719. "url": "https://github.com/theseer",
  1720. "type": "github"
  1721. }
  1722. ],
  1723. "time": "2020-07-12T23:59:07+00:00"
  1724. },
  1725. {
  1726. "name": "webmozart/assert",
  1727. "version": "1.10.0",
  1728. "source": {
  1729. "type": "git",
  1730. "url": "https://github.com/webmozarts/assert.git",
  1731. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  1732. },
  1733. "dist": {
  1734. "type": "zip",
  1735. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  1736. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  1737. "shasum": ""
  1738. },
  1739. "require": {
  1740. "php": "^7.2 || ^8.0",
  1741. "symfony/polyfill-ctype": "^1.8"
  1742. },
  1743. "conflict": {
  1744. "phpstan/phpstan": "<0.12.20",
  1745. "vimeo/psalm": "<4.6.1 || 4.6.2"
  1746. },
  1747. "require-dev": {
  1748. "phpunit/phpunit": "^8.5.13"
  1749. },
  1750. "type": "library",
  1751. "extra": {
  1752. "branch-alias": {
  1753. "dev-master": "1.10-dev"
  1754. }
  1755. },
  1756. "autoload": {
  1757. "psr-4": {
  1758. "Webmozart\\Assert\\": "src/"
  1759. }
  1760. },
  1761. "notification-url": "https://packagist.org/downloads/",
  1762. "license": [
  1763. "MIT"
  1764. ],
  1765. "authors": [
  1766. {
  1767. "name": "Bernhard Schussek",
  1768. "email": "bschussek@gmail.com"
  1769. }
  1770. ],
  1771. "description": "Assertions to validate method input/output with nice error messages.",
  1772. "keywords": [
  1773. "assert",
  1774. "check",
  1775. "validate"
  1776. ],
  1777. "support": {
  1778. "issues": "https://github.com/webmozarts/assert/issues",
  1779. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  1780. },
  1781. "time": "2021-03-09T10:59:23+00:00"
  1782. }
  1783. ],
  1784. "aliases": [],
  1785. "minimum-stability": "stable",
  1786. "stability-flags": [],
  1787. "prefer-stable": false,
  1788. "prefer-lowest": false,
  1789. "platform": {
  1790. "php": ">=7.2.0"
  1791. },
  1792. "platform-dev": [],
  1793. "plugin-api-version": "2.0.0"
  1794. }