composer.lock 64 KB

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