1
0

composer.lock 72 KB

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