composer.lock 76 KB

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