composer.lock 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914
  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": "7e35e91a225d5fe5dcfff3f996c53981",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "myclabs/deep-copy",
  12. "version": "1.13.0",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/myclabs/DeepCopy.git",
  16. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  21. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "php": "^7.1 || ^8.0"
  26. },
  27. "conflict": {
  28. "doctrine/collections": "<1.6.8",
  29. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  30. },
  31. "require-dev": {
  32. "doctrine/collections": "^1.6.8",
  33. "doctrine/common": "^2.13.3 || ^3.2.2",
  34. "phpspec/prophecy": "^1.10",
  35. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/DeepCopy/deep_copy.php"
  41. ],
  42. "psr-4": {
  43. "DeepCopy\\": "src/DeepCopy/"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "description": "Create deep copies (clones) of your objects",
  51. "keywords": [
  52. "clone",
  53. "copy",
  54. "duplicate",
  55. "object",
  56. "object graph"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/myclabs/DeepCopy/issues",
  60. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  65. "type": "tidelift"
  66. }
  67. ],
  68. "time": "2025-02-12T12:17:51+00:00"
  69. },
  70. {
  71. "name": "nikic/php-parser",
  72. "version": "v5.4.0",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/nikic/PHP-Parser.git",
  76. "reference": "447a020a1f875a434d62f2a401f53b82a396e494"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494",
  81. "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
  82. "shasum": ""
  83. },
  84. "require": {
  85. "ext-ctype": "*",
  86. "ext-json": "*",
  87. "ext-tokenizer": "*",
  88. "php": ">=7.4"
  89. },
  90. "require-dev": {
  91. "ircmaxell/php-yacc": "^0.0.7",
  92. "phpunit/phpunit": "^9.0"
  93. },
  94. "bin": [
  95. "bin/php-parse"
  96. ],
  97. "type": "library",
  98. "extra": {
  99. "branch-alias": {
  100. "dev-master": "5.0-dev"
  101. }
  102. },
  103. "autoload": {
  104. "psr-4": {
  105. "PhpParser\\": "lib/PhpParser"
  106. }
  107. },
  108. "notification-url": "https://packagist.org/downloads/",
  109. "license": [
  110. "BSD-3-Clause"
  111. ],
  112. "authors": [
  113. {
  114. "name": "Nikita Popov"
  115. }
  116. ],
  117. "description": "A PHP parser written in PHP",
  118. "keywords": [
  119. "parser",
  120. "php"
  121. ],
  122. "support": {
  123. "issues": "https://github.com/nikic/PHP-Parser/issues",
  124. "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0"
  125. },
  126. "time": "2024-12-30T11:07:19+00:00"
  127. },
  128. {
  129. "name": "phar-io/manifest",
  130. "version": "2.0.4",
  131. "source": {
  132. "type": "git",
  133. "url": "https://github.com/phar-io/manifest.git",
  134. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  135. },
  136. "dist": {
  137. "type": "zip",
  138. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  139. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  140. "shasum": ""
  141. },
  142. "require": {
  143. "ext-dom": "*",
  144. "ext-libxml": "*",
  145. "ext-phar": "*",
  146. "ext-xmlwriter": "*",
  147. "phar-io/version": "^3.0.1",
  148. "php": "^7.2 || ^8.0"
  149. },
  150. "type": "library",
  151. "extra": {
  152. "branch-alias": {
  153. "dev-master": "2.0.x-dev"
  154. }
  155. },
  156. "autoload": {
  157. "classmap": [
  158. "src/"
  159. ]
  160. },
  161. "notification-url": "https://packagist.org/downloads/",
  162. "license": [
  163. "BSD-3-Clause"
  164. ],
  165. "authors": [
  166. {
  167. "name": "Arne Blankerts",
  168. "email": "arne@blankerts.de",
  169. "role": "Developer"
  170. },
  171. {
  172. "name": "Sebastian Heuer",
  173. "email": "sebastian@phpeople.de",
  174. "role": "Developer"
  175. },
  176. {
  177. "name": "Sebastian Bergmann",
  178. "email": "sebastian@phpunit.de",
  179. "role": "Developer"
  180. }
  181. ],
  182. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  183. "support": {
  184. "issues": "https://github.com/phar-io/manifest/issues",
  185. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  186. },
  187. "funding": [
  188. {
  189. "url": "https://github.com/theseer",
  190. "type": "github"
  191. }
  192. ],
  193. "time": "2024-03-03T12:33:53+00:00"
  194. },
  195. {
  196. "name": "phar-io/version",
  197. "version": "3.2.1",
  198. "source": {
  199. "type": "git",
  200. "url": "https://github.com/phar-io/version.git",
  201. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  202. },
  203. "dist": {
  204. "type": "zip",
  205. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  206. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  207. "shasum": ""
  208. },
  209. "require": {
  210. "php": "^7.2 || ^8.0"
  211. },
  212. "type": "library",
  213. "autoload": {
  214. "classmap": [
  215. "src/"
  216. ]
  217. },
  218. "notification-url": "https://packagist.org/downloads/",
  219. "license": [
  220. "BSD-3-Clause"
  221. ],
  222. "authors": [
  223. {
  224. "name": "Arne Blankerts",
  225. "email": "arne@blankerts.de",
  226. "role": "Developer"
  227. },
  228. {
  229. "name": "Sebastian Heuer",
  230. "email": "sebastian@phpeople.de",
  231. "role": "Developer"
  232. },
  233. {
  234. "name": "Sebastian Bergmann",
  235. "email": "sebastian@phpunit.de",
  236. "role": "Developer"
  237. }
  238. ],
  239. "description": "Library for handling version information and constraints",
  240. "support": {
  241. "issues": "https://github.com/phar-io/version/issues",
  242. "source": "https://github.com/phar-io/version/tree/3.2.1"
  243. },
  244. "time": "2022-02-21T01:04:05+00:00"
  245. },
  246. {
  247. "name": "phpstan/phpstan",
  248. "version": "2.1.6",
  249. "source": {
  250. "type": "git",
  251. "url": "https://github.com/phpstan/phpstan.git",
  252. "reference": "6eaec7c6c9e90dcfe46ad1e1ffa5171e2dab641c"
  253. },
  254. "dist": {
  255. "type": "zip",
  256. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/6eaec7c6c9e90dcfe46ad1e1ffa5171e2dab641c",
  257. "reference": "6eaec7c6c9e90dcfe46ad1e1ffa5171e2dab641c",
  258. "shasum": ""
  259. },
  260. "require": {
  261. "php": "^7.4|^8.0"
  262. },
  263. "conflict": {
  264. "phpstan/phpstan-shim": "*"
  265. },
  266. "bin": [
  267. "phpstan",
  268. "phpstan.phar"
  269. ],
  270. "type": "library",
  271. "autoload": {
  272. "files": [
  273. "bootstrap.php"
  274. ]
  275. },
  276. "notification-url": "https://packagist.org/downloads/",
  277. "license": [
  278. "MIT"
  279. ],
  280. "description": "PHPStan - PHP Static Analysis Tool",
  281. "keywords": [
  282. "dev",
  283. "static analysis"
  284. ],
  285. "support": {
  286. "docs": "https://phpstan.org/user-guide/getting-started",
  287. "forum": "https://github.com/phpstan/phpstan/discussions",
  288. "issues": "https://github.com/phpstan/phpstan/issues",
  289. "security": "https://github.com/phpstan/phpstan/security/policy",
  290. "source": "https://github.com/phpstan/phpstan-src"
  291. },
  292. "funding": [
  293. {
  294. "url": "https://github.com/ondrejmirtes",
  295. "type": "github"
  296. },
  297. {
  298. "url": "https://github.com/phpstan",
  299. "type": "github"
  300. }
  301. ],
  302. "time": "2025-02-19T15:46:42+00:00"
  303. },
  304. {
  305. "name": "phpstan/phpstan-phpunit",
  306. "version": "2.0.4",
  307. "source": {
  308. "type": "git",
  309. "url": "https://github.com/phpstan/phpstan-phpunit.git",
  310. "reference": "d09e152f403c843998d7a52b5d87040c937525dd"
  311. },
  312. "dist": {
  313. "type": "zip",
  314. "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/d09e152f403c843998d7a52b5d87040c937525dd",
  315. "reference": "d09e152f403c843998d7a52b5d87040c937525dd",
  316. "shasum": ""
  317. },
  318. "require": {
  319. "php": "^7.4 || ^8.0",
  320. "phpstan/phpstan": "^2.0.4"
  321. },
  322. "conflict": {
  323. "phpunit/phpunit": "<7.0"
  324. },
  325. "require-dev": {
  326. "php-parallel-lint/php-parallel-lint": "^1.2",
  327. "phpstan/phpstan-strict-rules": "^2.0",
  328. "phpunit/phpunit": "^9.6"
  329. },
  330. "type": "phpstan-extension",
  331. "extra": {
  332. "phpstan": {
  333. "includes": [
  334. "extension.neon",
  335. "rules.neon"
  336. ]
  337. }
  338. },
  339. "autoload": {
  340. "psr-4": {
  341. "PHPStan\\": "src/"
  342. }
  343. },
  344. "notification-url": "https://packagist.org/downloads/",
  345. "license": [
  346. "MIT"
  347. ],
  348. "description": "PHPUnit extensions and rules for PHPStan",
  349. "support": {
  350. "issues": "https://github.com/phpstan/phpstan-phpunit/issues",
  351. "source": "https://github.com/phpstan/phpstan-phpunit/tree/2.0.4"
  352. },
  353. "time": "2025-01-22T13:07:38+00:00"
  354. },
  355. {
  356. "name": "phpstan/phpstan-strict-rules",
  357. "version": "2.0.3",
  358. "source": {
  359. "type": "git",
  360. "url": "https://github.com/phpstan/phpstan-strict-rules.git",
  361. "reference": "8b88b5f818bfa301e0c99154ab622dace071c3ba"
  362. },
  363. "dist": {
  364. "type": "zip",
  365. "url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/8b88b5f818bfa301e0c99154ab622dace071c3ba",
  366. "reference": "8b88b5f818bfa301e0c99154ab622dace071c3ba",
  367. "shasum": ""
  368. },
  369. "require": {
  370. "php": "^7.4 || ^8.0",
  371. "phpstan/phpstan": "^2.0.4"
  372. },
  373. "require-dev": {
  374. "php-parallel-lint/php-parallel-lint": "^1.2",
  375. "phpstan/phpstan-deprecation-rules": "^2.0",
  376. "phpstan/phpstan-phpunit": "^2.0",
  377. "phpunit/phpunit": "^9.6"
  378. },
  379. "type": "phpstan-extension",
  380. "extra": {
  381. "phpstan": {
  382. "includes": [
  383. "rules.neon"
  384. ]
  385. }
  386. },
  387. "autoload": {
  388. "psr-4": {
  389. "PHPStan\\": "src/"
  390. }
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "description": "Extra strict and opinionated rules for PHPStan",
  397. "support": {
  398. "issues": "https://github.com/phpstan/phpstan-strict-rules/issues",
  399. "source": "https://github.com/phpstan/phpstan-strict-rules/tree/2.0.3"
  400. },
  401. "time": "2025-01-21T10:52:14+00:00"
  402. },
  403. {
  404. "name": "phpunit/php-code-coverage",
  405. "version": "10.1.16",
  406. "source": {
  407. "type": "git",
  408. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  409. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  410. },
  411. "dist": {
  412. "type": "zip",
  413. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  414. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  415. "shasum": ""
  416. },
  417. "require": {
  418. "ext-dom": "*",
  419. "ext-libxml": "*",
  420. "ext-xmlwriter": "*",
  421. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  422. "php": ">=8.1",
  423. "phpunit/php-file-iterator": "^4.1.0",
  424. "phpunit/php-text-template": "^3.0.1",
  425. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  426. "sebastian/complexity": "^3.2.0",
  427. "sebastian/environment": "^6.1.0",
  428. "sebastian/lines-of-code": "^2.0.2",
  429. "sebastian/version": "^4.0.1",
  430. "theseer/tokenizer": "^1.2.3"
  431. },
  432. "require-dev": {
  433. "phpunit/phpunit": "^10.1"
  434. },
  435. "suggest": {
  436. "ext-pcov": "PHP extension that provides line coverage",
  437. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  438. },
  439. "type": "library",
  440. "extra": {
  441. "branch-alias": {
  442. "dev-main": "10.1.x-dev"
  443. }
  444. },
  445. "autoload": {
  446. "classmap": [
  447. "src/"
  448. ]
  449. },
  450. "notification-url": "https://packagist.org/downloads/",
  451. "license": [
  452. "BSD-3-Clause"
  453. ],
  454. "authors": [
  455. {
  456. "name": "Sebastian Bergmann",
  457. "email": "sebastian@phpunit.de",
  458. "role": "lead"
  459. }
  460. ],
  461. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  462. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  463. "keywords": [
  464. "coverage",
  465. "testing",
  466. "xunit"
  467. ],
  468. "support": {
  469. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  470. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  471. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  472. },
  473. "funding": [
  474. {
  475. "url": "https://github.com/sebastianbergmann",
  476. "type": "github"
  477. }
  478. ],
  479. "time": "2024-08-22T04:31:57+00:00"
  480. },
  481. {
  482. "name": "phpunit/php-file-iterator",
  483. "version": "4.1.0",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  487. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  492. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  493. "shasum": ""
  494. },
  495. "require": {
  496. "php": ">=8.1"
  497. },
  498. "require-dev": {
  499. "phpunit/phpunit": "^10.0"
  500. },
  501. "type": "library",
  502. "extra": {
  503. "branch-alias": {
  504. "dev-main": "4.0-dev"
  505. }
  506. },
  507. "autoload": {
  508. "classmap": [
  509. "src/"
  510. ]
  511. },
  512. "notification-url": "https://packagist.org/downloads/",
  513. "license": [
  514. "BSD-3-Clause"
  515. ],
  516. "authors": [
  517. {
  518. "name": "Sebastian Bergmann",
  519. "email": "sebastian@phpunit.de",
  520. "role": "lead"
  521. }
  522. ],
  523. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  524. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  525. "keywords": [
  526. "filesystem",
  527. "iterator"
  528. ],
  529. "support": {
  530. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  531. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  532. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  533. },
  534. "funding": [
  535. {
  536. "url": "https://github.com/sebastianbergmann",
  537. "type": "github"
  538. }
  539. ],
  540. "time": "2023-08-31T06:24:48+00:00"
  541. },
  542. {
  543. "name": "phpunit/php-invoker",
  544. "version": "4.0.0",
  545. "source": {
  546. "type": "git",
  547. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  548. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  549. },
  550. "dist": {
  551. "type": "zip",
  552. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  553. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  554. "shasum": ""
  555. },
  556. "require": {
  557. "php": ">=8.1"
  558. },
  559. "require-dev": {
  560. "ext-pcntl": "*",
  561. "phpunit/phpunit": "^10.0"
  562. },
  563. "suggest": {
  564. "ext-pcntl": "*"
  565. },
  566. "type": "library",
  567. "extra": {
  568. "branch-alias": {
  569. "dev-main": "4.0-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": "Invoke callables with a timeout",
  589. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  590. "keywords": [
  591. "process"
  592. ],
  593. "support": {
  594. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  595. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  596. },
  597. "funding": [
  598. {
  599. "url": "https://github.com/sebastianbergmann",
  600. "type": "github"
  601. }
  602. ],
  603. "time": "2023-02-03T06:56:09+00:00"
  604. },
  605. {
  606. "name": "phpunit/php-text-template",
  607. "version": "3.0.1",
  608. "source": {
  609. "type": "git",
  610. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  611. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  612. },
  613. "dist": {
  614. "type": "zip",
  615. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  616. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  617. "shasum": ""
  618. },
  619. "require": {
  620. "php": ">=8.1"
  621. },
  622. "require-dev": {
  623. "phpunit/phpunit": "^10.0"
  624. },
  625. "type": "library",
  626. "extra": {
  627. "branch-alias": {
  628. "dev-main": "3.0-dev"
  629. }
  630. },
  631. "autoload": {
  632. "classmap": [
  633. "src/"
  634. ]
  635. },
  636. "notification-url": "https://packagist.org/downloads/",
  637. "license": [
  638. "BSD-3-Clause"
  639. ],
  640. "authors": [
  641. {
  642. "name": "Sebastian Bergmann",
  643. "email": "sebastian@phpunit.de",
  644. "role": "lead"
  645. }
  646. ],
  647. "description": "Simple template engine.",
  648. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  649. "keywords": [
  650. "template"
  651. ],
  652. "support": {
  653. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  654. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  655. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  656. },
  657. "funding": [
  658. {
  659. "url": "https://github.com/sebastianbergmann",
  660. "type": "github"
  661. }
  662. ],
  663. "time": "2023-08-31T14:07:24+00:00"
  664. },
  665. {
  666. "name": "phpunit/php-timer",
  667. "version": "6.0.0",
  668. "source": {
  669. "type": "git",
  670. "url": "https://github.com/sebastianbergmann/php-timer.git",
  671. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  672. },
  673. "dist": {
  674. "type": "zip",
  675. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  676. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  677. "shasum": ""
  678. },
  679. "require": {
  680. "php": ">=8.1"
  681. },
  682. "require-dev": {
  683. "phpunit/phpunit": "^10.0"
  684. },
  685. "type": "library",
  686. "extra": {
  687. "branch-alias": {
  688. "dev-main": "6.0-dev"
  689. }
  690. },
  691. "autoload": {
  692. "classmap": [
  693. "src/"
  694. ]
  695. },
  696. "notification-url": "https://packagist.org/downloads/",
  697. "license": [
  698. "BSD-3-Clause"
  699. ],
  700. "authors": [
  701. {
  702. "name": "Sebastian Bergmann",
  703. "email": "sebastian@phpunit.de",
  704. "role": "lead"
  705. }
  706. ],
  707. "description": "Utility class for timing",
  708. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  709. "keywords": [
  710. "timer"
  711. ],
  712. "support": {
  713. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  714. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  715. },
  716. "funding": [
  717. {
  718. "url": "https://github.com/sebastianbergmann",
  719. "type": "github"
  720. }
  721. ],
  722. "time": "2023-02-03T06:57:52+00:00"
  723. },
  724. {
  725. "name": "phpunit/phpunit",
  726. "version": "10.5.45",
  727. "source": {
  728. "type": "git",
  729. "url": "https://github.com/sebastianbergmann/phpunit.git",
  730. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8"
  731. },
  732. "dist": {
  733. "type": "zip",
  734. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bd68a781d8e30348bc297449f5234b3458267ae8",
  735. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8",
  736. "shasum": ""
  737. },
  738. "require": {
  739. "ext-dom": "*",
  740. "ext-json": "*",
  741. "ext-libxml": "*",
  742. "ext-mbstring": "*",
  743. "ext-xml": "*",
  744. "ext-xmlwriter": "*",
  745. "myclabs/deep-copy": "^1.12.1",
  746. "phar-io/manifest": "^2.0.4",
  747. "phar-io/version": "^3.2.1",
  748. "php": ">=8.1",
  749. "phpunit/php-code-coverage": "^10.1.16",
  750. "phpunit/php-file-iterator": "^4.1.0",
  751. "phpunit/php-invoker": "^4.0.0",
  752. "phpunit/php-text-template": "^3.0.1",
  753. "phpunit/php-timer": "^6.0.0",
  754. "sebastian/cli-parser": "^2.0.1",
  755. "sebastian/code-unit": "^2.0.0",
  756. "sebastian/comparator": "^5.0.3",
  757. "sebastian/diff": "^5.1.1",
  758. "sebastian/environment": "^6.1.0",
  759. "sebastian/exporter": "^5.1.2",
  760. "sebastian/global-state": "^6.0.2",
  761. "sebastian/object-enumerator": "^5.0.0",
  762. "sebastian/recursion-context": "^5.0.0",
  763. "sebastian/type": "^4.0.0",
  764. "sebastian/version": "^4.0.1"
  765. },
  766. "suggest": {
  767. "ext-soap": "To be able to generate mocks based on WSDL files"
  768. },
  769. "bin": [
  770. "phpunit"
  771. ],
  772. "type": "library",
  773. "extra": {
  774. "branch-alias": {
  775. "dev-main": "10.5-dev"
  776. }
  777. },
  778. "autoload": {
  779. "files": [
  780. "src/Framework/Assert/Functions.php"
  781. ],
  782. "classmap": [
  783. "src/"
  784. ]
  785. },
  786. "notification-url": "https://packagist.org/downloads/",
  787. "license": [
  788. "BSD-3-Clause"
  789. ],
  790. "authors": [
  791. {
  792. "name": "Sebastian Bergmann",
  793. "email": "sebastian@phpunit.de",
  794. "role": "lead"
  795. }
  796. ],
  797. "description": "The PHP Unit Testing framework.",
  798. "homepage": "https://phpunit.de/",
  799. "keywords": [
  800. "phpunit",
  801. "testing",
  802. "xunit"
  803. ],
  804. "support": {
  805. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  806. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  807. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.45"
  808. },
  809. "funding": [
  810. {
  811. "url": "https://phpunit.de/sponsors.html",
  812. "type": "custom"
  813. },
  814. {
  815. "url": "https://github.com/sebastianbergmann",
  816. "type": "github"
  817. },
  818. {
  819. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  820. "type": "tidelift"
  821. }
  822. ],
  823. "time": "2025-02-06T16:08:12+00:00"
  824. },
  825. {
  826. "name": "sebastian/cli-parser",
  827. "version": "2.0.1",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  831. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  836. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "php": ">=8.1"
  841. },
  842. "require-dev": {
  843. "phpunit/phpunit": "^10.0"
  844. },
  845. "type": "library",
  846. "extra": {
  847. "branch-alias": {
  848. "dev-main": "2.0-dev"
  849. }
  850. },
  851. "autoload": {
  852. "classmap": [
  853. "src/"
  854. ]
  855. },
  856. "notification-url": "https://packagist.org/downloads/",
  857. "license": [
  858. "BSD-3-Clause"
  859. ],
  860. "authors": [
  861. {
  862. "name": "Sebastian Bergmann",
  863. "email": "sebastian@phpunit.de",
  864. "role": "lead"
  865. }
  866. ],
  867. "description": "Library for parsing CLI options",
  868. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  869. "support": {
  870. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  871. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  872. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  873. },
  874. "funding": [
  875. {
  876. "url": "https://github.com/sebastianbergmann",
  877. "type": "github"
  878. }
  879. ],
  880. "time": "2024-03-02T07:12:49+00:00"
  881. },
  882. {
  883. "name": "sebastian/code-unit",
  884. "version": "2.0.0",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/sebastianbergmann/code-unit.git",
  888. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  893. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  894. "shasum": ""
  895. },
  896. "require": {
  897. "php": ">=8.1"
  898. },
  899. "require-dev": {
  900. "phpunit/phpunit": "^10.0"
  901. },
  902. "type": "library",
  903. "extra": {
  904. "branch-alias": {
  905. "dev-main": "2.0-dev"
  906. }
  907. },
  908. "autoload": {
  909. "classmap": [
  910. "src/"
  911. ]
  912. },
  913. "notification-url": "https://packagist.org/downloads/",
  914. "license": [
  915. "BSD-3-Clause"
  916. ],
  917. "authors": [
  918. {
  919. "name": "Sebastian Bergmann",
  920. "email": "sebastian@phpunit.de",
  921. "role": "lead"
  922. }
  923. ],
  924. "description": "Collection of value objects that represent the PHP code units",
  925. "homepage": "https://github.com/sebastianbergmann/code-unit",
  926. "support": {
  927. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  928. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  929. },
  930. "funding": [
  931. {
  932. "url": "https://github.com/sebastianbergmann",
  933. "type": "github"
  934. }
  935. ],
  936. "time": "2023-02-03T06:58:43+00:00"
  937. },
  938. {
  939. "name": "sebastian/code-unit-reverse-lookup",
  940. "version": "3.0.0",
  941. "source": {
  942. "type": "git",
  943. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  944. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  945. },
  946. "dist": {
  947. "type": "zip",
  948. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  949. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  950. "shasum": ""
  951. },
  952. "require": {
  953. "php": ">=8.1"
  954. },
  955. "require-dev": {
  956. "phpunit/phpunit": "^10.0"
  957. },
  958. "type": "library",
  959. "extra": {
  960. "branch-alias": {
  961. "dev-main": "3.0-dev"
  962. }
  963. },
  964. "autoload": {
  965. "classmap": [
  966. "src/"
  967. ]
  968. },
  969. "notification-url": "https://packagist.org/downloads/",
  970. "license": [
  971. "BSD-3-Clause"
  972. ],
  973. "authors": [
  974. {
  975. "name": "Sebastian Bergmann",
  976. "email": "sebastian@phpunit.de"
  977. }
  978. ],
  979. "description": "Looks up which function or method a line of code belongs to",
  980. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  981. "support": {
  982. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  983. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  984. },
  985. "funding": [
  986. {
  987. "url": "https://github.com/sebastianbergmann",
  988. "type": "github"
  989. }
  990. ],
  991. "time": "2023-02-03T06:59:15+00:00"
  992. },
  993. {
  994. "name": "sebastian/comparator",
  995. "version": "5.0.3",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/sebastianbergmann/comparator.git",
  999. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  1004. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  1005. "shasum": ""
  1006. },
  1007. "require": {
  1008. "ext-dom": "*",
  1009. "ext-mbstring": "*",
  1010. "php": ">=8.1",
  1011. "sebastian/diff": "^5.0",
  1012. "sebastian/exporter": "^5.0"
  1013. },
  1014. "require-dev": {
  1015. "phpunit/phpunit": "^10.5"
  1016. },
  1017. "type": "library",
  1018. "extra": {
  1019. "branch-alias": {
  1020. "dev-main": "5.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": "Jeff Welch",
  1039. "email": "whatthejeff@gmail.com"
  1040. },
  1041. {
  1042. "name": "Volker Dusch",
  1043. "email": "github@wallbash.com"
  1044. },
  1045. {
  1046. "name": "Bernhard Schussek",
  1047. "email": "bschussek@2bepublished.at"
  1048. }
  1049. ],
  1050. "description": "Provides the functionality to compare PHP values for equality",
  1051. "homepage": "https://github.com/sebastianbergmann/comparator",
  1052. "keywords": [
  1053. "comparator",
  1054. "compare",
  1055. "equality"
  1056. ],
  1057. "support": {
  1058. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  1059. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  1060. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  1061. },
  1062. "funding": [
  1063. {
  1064. "url": "https://github.com/sebastianbergmann",
  1065. "type": "github"
  1066. }
  1067. ],
  1068. "time": "2024-10-18T14:56:07+00:00"
  1069. },
  1070. {
  1071. "name": "sebastian/complexity",
  1072. "version": "3.2.0",
  1073. "source": {
  1074. "type": "git",
  1075. "url": "https://github.com/sebastianbergmann/complexity.git",
  1076. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  1077. },
  1078. "dist": {
  1079. "type": "zip",
  1080. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  1081. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  1082. "shasum": ""
  1083. },
  1084. "require": {
  1085. "nikic/php-parser": "^4.18 || ^5.0",
  1086. "php": ">=8.1"
  1087. },
  1088. "require-dev": {
  1089. "phpunit/phpunit": "^10.0"
  1090. },
  1091. "type": "library",
  1092. "extra": {
  1093. "branch-alias": {
  1094. "dev-main": "3.2-dev"
  1095. }
  1096. },
  1097. "autoload": {
  1098. "classmap": [
  1099. "src/"
  1100. ]
  1101. },
  1102. "notification-url": "https://packagist.org/downloads/",
  1103. "license": [
  1104. "BSD-3-Clause"
  1105. ],
  1106. "authors": [
  1107. {
  1108. "name": "Sebastian Bergmann",
  1109. "email": "sebastian@phpunit.de",
  1110. "role": "lead"
  1111. }
  1112. ],
  1113. "description": "Library for calculating the complexity of PHP code units",
  1114. "homepage": "https://github.com/sebastianbergmann/complexity",
  1115. "support": {
  1116. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  1117. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  1118. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  1119. },
  1120. "funding": [
  1121. {
  1122. "url": "https://github.com/sebastianbergmann",
  1123. "type": "github"
  1124. }
  1125. ],
  1126. "time": "2023-12-21T08:37:17+00:00"
  1127. },
  1128. {
  1129. "name": "sebastian/diff",
  1130. "version": "5.1.1",
  1131. "source": {
  1132. "type": "git",
  1133. "url": "https://github.com/sebastianbergmann/diff.git",
  1134. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  1135. },
  1136. "dist": {
  1137. "type": "zip",
  1138. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  1139. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  1140. "shasum": ""
  1141. },
  1142. "require": {
  1143. "php": ">=8.1"
  1144. },
  1145. "require-dev": {
  1146. "phpunit/phpunit": "^10.0",
  1147. "symfony/process": "^6.4"
  1148. },
  1149. "type": "library",
  1150. "extra": {
  1151. "branch-alias": {
  1152. "dev-main": "5.1-dev"
  1153. }
  1154. },
  1155. "autoload": {
  1156. "classmap": [
  1157. "src/"
  1158. ]
  1159. },
  1160. "notification-url": "https://packagist.org/downloads/",
  1161. "license": [
  1162. "BSD-3-Clause"
  1163. ],
  1164. "authors": [
  1165. {
  1166. "name": "Sebastian Bergmann",
  1167. "email": "sebastian@phpunit.de"
  1168. },
  1169. {
  1170. "name": "Kore Nordmann",
  1171. "email": "mail@kore-nordmann.de"
  1172. }
  1173. ],
  1174. "description": "Diff implementation",
  1175. "homepage": "https://github.com/sebastianbergmann/diff",
  1176. "keywords": [
  1177. "diff",
  1178. "udiff",
  1179. "unidiff",
  1180. "unified diff"
  1181. ],
  1182. "support": {
  1183. "issues": "https://github.com/sebastianbergmann/diff/issues",
  1184. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  1185. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  1186. },
  1187. "funding": [
  1188. {
  1189. "url": "https://github.com/sebastianbergmann",
  1190. "type": "github"
  1191. }
  1192. ],
  1193. "time": "2024-03-02T07:15:17+00:00"
  1194. },
  1195. {
  1196. "name": "sebastian/environment",
  1197. "version": "6.1.0",
  1198. "source": {
  1199. "type": "git",
  1200. "url": "https://github.com/sebastianbergmann/environment.git",
  1201. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  1202. },
  1203. "dist": {
  1204. "type": "zip",
  1205. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  1206. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  1207. "shasum": ""
  1208. },
  1209. "require": {
  1210. "php": ">=8.1"
  1211. },
  1212. "require-dev": {
  1213. "phpunit/phpunit": "^10.0"
  1214. },
  1215. "suggest": {
  1216. "ext-posix": "*"
  1217. },
  1218. "type": "library",
  1219. "extra": {
  1220. "branch-alias": {
  1221. "dev-main": "6.1-dev"
  1222. }
  1223. },
  1224. "autoload": {
  1225. "classmap": [
  1226. "src/"
  1227. ]
  1228. },
  1229. "notification-url": "https://packagist.org/downloads/",
  1230. "license": [
  1231. "BSD-3-Clause"
  1232. ],
  1233. "authors": [
  1234. {
  1235. "name": "Sebastian Bergmann",
  1236. "email": "sebastian@phpunit.de"
  1237. }
  1238. ],
  1239. "description": "Provides functionality to handle HHVM/PHP environments",
  1240. "homepage": "https://github.com/sebastianbergmann/environment",
  1241. "keywords": [
  1242. "Xdebug",
  1243. "environment",
  1244. "hhvm"
  1245. ],
  1246. "support": {
  1247. "issues": "https://github.com/sebastianbergmann/environment/issues",
  1248. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  1249. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  1250. },
  1251. "funding": [
  1252. {
  1253. "url": "https://github.com/sebastianbergmann",
  1254. "type": "github"
  1255. }
  1256. ],
  1257. "time": "2024-03-23T08:47:14+00:00"
  1258. },
  1259. {
  1260. "name": "sebastian/exporter",
  1261. "version": "5.1.2",
  1262. "source": {
  1263. "type": "git",
  1264. "url": "https://github.com/sebastianbergmann/exporter.git",
  1265. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  1266. },
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  1270. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  1271. "shasum": ""
  1272. },
  1273. "require": {
  1274. "ext-mbstring": "*",
  1275. "php": ">=8.1",
  1276. "sebastian/recursion-context": "^5.0"
  1277. },
  1278. "require-dev": {
  1279. "phpunit/phpunit": "^10.0"
  1280. },
  1281. "type": "library",
  1282. "extra": {
  1283. "branch-alias": {
  1284. "dev-main": "5.1-dev"
  1285. }
  1286. },
  1287. "autoload": {
  1288. "classmap": [
  1289. "src/"
  1290. ]
  1291. },
  1292. "notification-url": "https://packagist.org/downloads/",
  1293. "license": [
  1294. "BSD-3-Clause"
  1295. ],
  1296. "authors": [
  1297. {
  1298. "name": "Sebastian Bergmann",
  1299. "email": "sebastian@phpunit.de"
  1300. },
  1301. {
  1302. "name": "Jeff Welch",
  1303. "email": "whatthejeff@gmail.com"
  1304. },
  1305. {
  1306. "name": "Volker Dusch",
  1307. "email": "github@wallbash.com"
  1308. },
  1309. {
  1310. "name": "Adam Harvey",
  1311. "email": "aharvey@php.net"
  1312. },
  1313. {
  1314. "name": "Bernhard Schussek",
  1315. "email": "bschussek@gmail.com"
  1316. }
  1317. ],
  1318. "description": "Provides the functionality to export PHP variables for visualization",
  1319. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  1320. "keywords": [
  1321. "export",
  1322. "exporter"
  1323. ],
  1324. "support": {
  1325. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  1326. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  1327. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  1328. },
  1329. "funding": [
  1330. {
  1331. "url": "https://github.com/sebastianbergmann",
  1332. "type": "github"
  1333. }
  1334. ],
  1335. "time": "2024-03-02T07:17:12+00:00"
  1336. },
  1337. {
  1338. "name": "sebastian/global-state",
  1339. "version": "6.0.2",
  1340. "source": {
  1341. "type": "git",
  1342. "url": "https://github.com/sebastianbergmann/global-state.git",
  1343. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  1344. },
  1345. "dist": {
  1346. "type": "zip",
  1347. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  1348. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  1349. "shasum": ""
  1350. },
  1351. "require": {
  1352. "php": ">=8.1",
  1353. "sebastian/object-reflector": "^3.0",
  1354. "sebastian/recursion-context": "^5.0"
  1355. },
  1356. "require-dev": {
  1357. "ext-dom": "*",
  1358. "phpunit/phpunit": "^10.0"
  1359. },
  1360. "type": "library",
  1361. "extra": {
  1362. "branch-alias": {
  1363. "dev-main": "6.0-dev"
  1364. }
  1365. },
  1366. "autoload": {
  1367. "classmap": [
  1368. "src/"
  1369. ]
  1370. },
  1371. "notification-url": "https://packagist.org/downloads/",
  1372. "license": [
  1373. "BSD-3-Clause"
  1374. ],
  1375. "authors": [
  1376. {
  1377. "name": "Sebastian Bergmann",
  1378. "email": "sebastian@phpunit.de"
  1379. }
  1380. ],
  1381. "description": "Snapshotting of global state",
  1382. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  1383. "keywords": [
  1384. "global state"
  1385. ],
  1386. "support": {
  1387. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  1388. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  1389. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  1390. },
  1391. "funding": [
  1392. {
  1393. "url": "https://github.com/sebastianbergmann",
  1394. "type": "github"
  1395. }
  1396. ],
  1397. "time": "2024-03-02T07:19:19+00:00"
  1398. },
  1399. {
  1400. "name": "sebastian/lines-of-code",
  1401. "version": "2.0.2",
  1402. "source": {
  1403. "type": "git",
  1404. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  1405. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  1406. },
  1407. "dist": {
  1408. "type": "zip",
  1409. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  1410. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  1411. "shasum": ""
  1412. },
  1413. "require": {
  1414. "nikic/php-parser": "^4.18 || ^5.0",
  1415. "php": ">=8.1"
  1416. },
  1417. "require-dev": {
  1418. "phpunit/phpunit": "^10.0"
  1419. },
  1420. "type": "library",
  1421. "extra": {
  1422. "branch-alias": {
  1423. "dev-main": "2.0-dev"
  1424. }
  1425. },
  1426. "autoload": {
  1427. "classmap": [
  1428. "src/"
  1429. ]
  1430. },
  1431. "notification-url": "https://packagist.org/downloads/",
  1432. "license": [
  1433. "BSD-3-Clause"
  1434. ],
  1435. "authors": [
  1436. {
  1437. "name": "Sebastian Bergmann",
  1438. "email": "sebastian@phpunit.de",
  1439. "role": "lead"
  1440. }
  1441. ],
  1442. "description": "Library for counting the lines of code in PHP source code",
  1443. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  1444. "support": {
  1445. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  1446. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  1447. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  1448. },
  1449. "funding": [
  1450. {
  1451. "url": "https://github.com/sebastianbergmann",
  1452. "type": "github"
  1453. }
  1454. ],
  1455. "time": "2023-12-21T08:38:20+00:00"
  1456. },
  1457. {
  1458. "name": "sebastian/object-enumerator",
  1459. "version": "5.0.0",
  1460. "source": {
  1461. "type": "git",
  1462. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1463. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  1464. },
  1465. "dist": {
  1466. "type": "zip",
  1467. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  1468. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  1469. "shasum": ""
  1470. },
  1471. "require": {
  1472. "php": ">=8.1",
  1473. "sebastian/object-reflector": "^3.0",
  1474. "sebastian/recursion-context": "^5.0"
  1475. },
  1476. "require-dev": {
  1477. "phpunit/phpunit": "^10.0"
  1478. },
  1479. "type": "library",
  1480. "extra": {
  1481. "branch-alias": {
  1482. "dev-main": "5.0-dev"
  1483. }
  1484. },
  1485. "autoload": {
  1486. "classmap": [
  1487. "src/"
  1488. ]
  1489. },
  1490. "notification-url": "https://packagist.org/downloads/",
  1491. "license": [
  1492. "BSD-3-Clause"
  1493. ],
  1494. "authors": [
  1495. {
  1496. "name": "Sebastian Bergmann",
  1497. "email": "sebastian@phpunit.de"
  1498. }
  1499. ],
  1500. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1501. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1502. "support": {
  1503. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  1504. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  1505. },
  1506. "funding": [
  1507. {
  1508. "url": "https://github.com/sebastianbergmann",
  1509. "type": "github"
  1510. }
  1511. ],
  1512. "time": "2023-02-03T07:08:32+00:00"
  1513. },
  1514. {
  1515. "name": "sebastian/object-reflector",
  1516. "version": "3.0.0",
  1517. "source": {
  1518. "type": "git",
  1519. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  1520. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  1521. },
  1522. "dist": {
  1523. "type": "zip",
  1524. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  1525. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  1526. "shasum": ""
  1527. },
  1528. "require": {
  1529. "php": ">=8.1"
  1530. },
  1531. "require-dev": {
  1532. "phpunit/phpunit": "^10.0"
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-main": "3.0-dev"
  1538. }
  1539. },
  1540. "autoload": {
  1541. "classmap": [
  1542. "src/"
  1543. ]
  1544. },
  1545. "notification-url": "https://packagist.org/downloads/",
  1546. "license": [
  1547. "BSD-3-Clause"
  1548. ],
  1549. "authors": [
  1550. {
  1551. "name": "Sebastian Bergmann",
  1552. "email": "sebastian@phpunit.de"
  1553. }
  1554. ],
  1555. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  1556. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  1557. "support": {
  1558. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  1559. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  1560. },
  1561. "funding": [
  1562. {
  1563. "url": "https://github.com/sebastianbergmann",
  1564. "type": "github"
  1565. }
  1566. ],
  1567. "time": "2023-02-03T07:06:18+00:00"
  1568. },
  1569. {
  1570. "name": "sebastian/recursion-context",
  1571. "version": "5.0.0",
  1572. "source": {
  1573. "type": "git",
  1574. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1575. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  1576. },
  1577. "dist": {
  1578. "type": "zip",
  1579. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  1580. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  1581. "shasum": ""
  1582. },
  1583. "require": {
  1584. "php": ">=8.1"
  1585. },
  1586. "require-dev": {
  1587. "phpunit/phpunit": "^10.0"
  1588. },
  1589. "type": "library",
  1590. "extra": {
  1591. "branch-alias": {
  1592. "dev-main": "5.0-dev"
  1593. }
  1594. },
  1595. "autoload": {
  1596. "classmap": [
  1597. "src/"
  1598. ]
  1599. },
  1600. "notification-url": "https://packagist.org/downloads/",
  1601. "license": [
  1602. "BSD-3-Clause"
  1603. ],
  1604. "authors": [
  1605. {
  1606. "name": "Sebastian Bergmann",
  1607. "email": "sebastian@phpunit.de"
  1608. },
  1609. {
  1610. "name": "Jeff Welch",
  1611. "email": "whatthejeff@gmail.com"
  1612. },
  1613. {
  1614. "name": "Adam Harvey",
  1615. "email": "aharvey@php.net"
  1616. }
  1617. ],
  1618. "description": "Provides functionality to recursively process PHP variables",
  1619. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  1620. "support": {
  1621. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  1622. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  1623. },
  1624. "funding": [
  1625. {
  1626. "url": "https://github.com/sebastianbergmann",
  1627. "type": "github"
  1628. }
  1629. ],
  1630. "time": "2023-02-03T07:05:40+00:00"
  1631. },
  1632. {
  1633. "name": "sebastian/type",
  1634. "version": "4.0.0",
  1635. "source": {
  1636. "type": "git",
  1637. "url": "https://github.com/sebastianbergmann/type.git",
  1638. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  1639. },
  1640. "dist": {
  1641. "type": "zip",
  1642. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  1643. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  1644. "shasum": ""
  1645. },
  1646. "require": {
  1647. "php": ">=8.1"
  1648. },
  1649. "require-dev": {
  1650. "phpunit/phpunit": "^10.0"
  1651. },
  1652. "type": "library",
  1653. "extra": {
  1654. "branch-alias": {
  1655. "dev-main": "4.0-dev"
  1656. }
  1657. },
  1658. "autoload": {
  1659. "classmap": [
  1660. "src/"
  1661. ]
  1662. },
  1663. "notification-url": "https://packagist.org/downloads/",
  1664. "license": [
  1665. "BSD-3-Clause"
  1666. ],
  1667. "authors": [
  1668. {
  1669. "name": "Sebastian Bergmann",
  1670. "email": "sebastian@phpunit.de",
  1671. "role": "lead"
  1672. }
  1673. ],
  1674. "description": "Collection of value objects that represent the types of the PHP type system",
  1675. "homepage": "https://github.com/sebastianbergmann/type",
  1676. "support": {
  1677. "issues": "https://github.com/sebastianbergmann/type/issues",
  1678. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  1679. },
  1680. "funding": [
  1681. {
  1682. "url": "https://github.com/sebastianbergmann",
  1683. "type": "github"
  1684. }
  1685. ],
  1686. "time": "2023-02-03T07:10:45+00:00"
  1687. },
  1688. {
  1689. "name": "sebastian/version",
  1690. "version": "4.0.1",
  1691. "source": {
  1692. "type": "git",
  1693. "url": "https://github.com/sebastianbergmann/version.git",
  1694. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  1695. },
  1696. "dist": {
  1697. "type": "zip",
  1698. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  1699. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  1700. "shasum": ""
  1701. },
  1702. "require": {
  1703. "php": ">=8.1"
  1704. },
  1705. "type": "library",
  1706. "extra": {
  1707. "branch-alias": {
  1708. "dev-main": "4.0-dev"
  1709. }
  1710. },
  1711. "autoload": {
  1712. "classmap": [
  1713. "src/"
  1714. ]
  1715. },
  1716. "notification-url": "https://packagist.org/downloads/",
  1717. "license": [
  1718. "BSD-3-Clause"
  1719. ],
  1720. "authors": [
  1721. {
  1722. "name": "Sebastian Bergmann",
  1723. "email": "sebastian@phpunit.de",
  1724. "role": "lead"
  1725. }
  1726. ],
  1727. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1728. "homepage": "https://github.com/sebastianbergmann/version",
  1729. "support": {
  1730. "issues": "https://github.com/sebastianbergmann/version/issues",
  1731. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  1732. },
  1733. "funding": [
  1734. {
  1735. "url": "https://github.com/sebastianbergmann",
  1736. "type": "github"
  1737. }
  1738. ],
  1739. "time": "2023-02-07T11:34:05+00:00"
  1740. },
  1741. {
  1742. "name": "squizlabs/php_codesniffer",
  1743. "version": "3.11.3",
  1744. "source": {
  1745. "type": "git",
  1746. "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
  1747. "reference": "ba05f990e79cbe69b9f35c8c1ac8dca7eecc3a10"
  1748. },
  1749. "dist": {
  1750. "type": "zip",
  1751. "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/ba05f990e79cbe69b9f35c8c1ac8dca7eecc3a10",
  1752. "reference": "ba05f990e79cbe69b9f35c8c1ac8dca7eecc3a10",
  1753. "shasum": ""
  1754. },
  1755. "require": {
  1756. "ext-simplexml": "*",
  1757. "ext-tokenizer": "*",
  1758. "ext-xmlwriter": "*",
  1759. "php": ">=5.4.0"
  1760. },
  1761. "require-dev": {
  1762. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
  1763. },
  1764. "bin": [
  1765. "bin/phpcbf",
  1766. "bin/phpcs"
  1767. ],
  1768. "type": "library",
  1769. "extra": {
  1770. "branch-alias": {
  1771. "dev-master": "3.x-dev"
  1772. }
  1773. },
  1774. "notification-url": "https://packagist.org/downloads/",
  1775. "license": [
  1776. "BSD-3-Clause"
  1777. ],
  1778. "authors": [
  1779. {
  1780. "name": "Greg Sherwood",
  1781. "role": "Former lead"
  1782. },
  1783. {
  1784. "name": "Juliette Reinders Folmer",
  1785. "role": "Current lead"
  1786. },
  1787. {
  1788. "name": "Contributors",
  1789. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
  1790. }
  1791. ],
  1792. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  1793. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  1794. "keywords": [
  1795. "phpcs",
  1796. "standards",
  1797. "static analysis"
  1798. ],
  1799. "support": {
  1800. "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
  1801. "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
  1802. "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  1803. "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
  1804. },
  1805. "funding": [
  1806. {
  1807. "url": "https://github.com/PHPCSStandards",
  1808. "type": "github"
  1809. },
  1810. {
  1811. "url": "https://github.com/jrfnl",
  1812. "type": "github"
  1813. },
  1814. {
  1815. "url": "https://opencollective.com/php_codesniffer",
  1816. "type": "open_collective"
  1817. },
  1818. {
  1819. "url": "https://thanks.dev/phpcsstandards",
  1820. "type": "thanks_dev"
  1821. }
  1822. ],
  1823. "time": "2025-01-23T17:04:15+00:00"
  1824. },
  1825. {
  1826. "name": "theseer/tokenizer",
  1827. "version": "1.2.3",
  1828. "source": {
  1829. "type": "git",
  1830. "url": "https://github.com/theseer/tokenizer.git",
  1831. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  1832. },
  1833. "dist": {
  1834. "type": "zip",
  1835. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  1836. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  1837. "shasum": ""
  1838. },
  1839. "require": {
  1840. "ext-dom": "*",
  1841. "ext-tokenizer": "*",
  1842. "ext-xmlwriter": "*",
  1843. "php": "^7.2 || ^8.0"
  1844. },
  1845. "type": "library",
  1846. "autoload": {
  1847. "classmap": [
  1848. "src/"
  1849. ]
  1850. },
  1851. "notification-url": "https://packagist.org/downloads/",
  1852. "license": [
  1853. "BSD-3-Clause"
  1854. ],
  1855. "authors": [
  1856. {
  1857. "name": "Arne Blankerts",
  1858. "email": "arne@blankerts.de",
  1859. "role": "Developer"
  1860. }
  1861. ],
  1862. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  1863. "support": {
  1864. "issues": "https://github.com/theseer/tokenizer/issues",
  1865. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  1866. },
  1867. "funding": [
  1868. {
  1869. "url": "https://github.com/theseer",
  1870. "type": "github"
  1871. }
  1872. ],
  1873. "time": "2024-03-03T12:36:25+00:00"
  1874. }
  1875. ],
  1876. "aliases": [],
  1877. "minimum-stability": "stable",
  1878. "stability-flags": [],
  1879. "prefer-stable": false,
  1880. "prefer-lowest": false,
  1881. "platform": {
  1882. "php": ">=8.1",
  1883. "ext-ctype": "*",
  1884. "ext-curl": "*",
  1885. "ext-dom": "*",
  1886. "ext-fileinfo": "*",
  1887. "ext-gmp": "*",
  1888. "ext-intl": "*",
  1889. "ext-json": "*",
  1890. "ext-libxml": "*",
  1891. "ext-mbstring": "*",
  1892. "ext-openssl": "*",
  1893. "ext-pcre": "*",
  1894. "ext-pdo": "*",
  1895. "ext-pdo_sqlite": "*",
  1896. "ext-session": "*",
  1897. "ext-simplexml": "*",
  1898. "ext-xml": "*",
  1899. "ext-xmlreader": "*",
  1900. "ext-zend-opcache": "*",
  1901. "ext-zip": "*",
  1902. "ext-zlib": "*"
  1903. },
  1904. "platform-dev": {
  1905. "php": ">=8.1",
  1906. "ext-phar": "*",
  1907. "ext-tokenizer": "*",
  1908. "ext-xmlwriter": "*"
  1909. },
  1910. "platform-overrides": {
  1911. "php": "8.1"
  1912. },
  1913. "plugin-api-version": "2.6.0"
  1914. }