composer.lock 68 KB

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