composer.lock 71 KB

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