4
0

composer.lock 69 KB

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