composer.lock 70 KB

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