composer.lock 73 KB

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