composer.lock 71 KB

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