composer.lock 69 KB

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