composer.lock 71 KB

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