4
0

composer.lock 71 KB

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