composer.lock 71 KB

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