composer.lock 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974
  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": "054b9729884221596ac2916faeed54ea",
  8. "packages": [
  9. {
  10. "name": "clue/block-react",
  11. "version": "v1.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/clue/reactphp-block.git",
  15. "reference": "718b0571a94aa693c6fffc72182e87257ac900f3"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/clue/reactphp-block/zipball/718b0571a94aa693c6fffc72182e87257ac900f3",
  20. "reference": "718b0571a94aa693c6fffc72182e87257ac900f3",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3",
  25. "react/event-loop": "^1.2",
  26. "react/promise": "^3.0 || ^2.7 || ^1.2.1",
  27. "react/promise-timer": "^1.5"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  31. "react/http": "^1.4"
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "files": [
  36. "src/functions_include.php"
  37. ]
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "MIT"
  42. ],
  43. "authors": [
  44. {
  45. "name": "Christian Lück",
  46. "email": "christian@clue.engineering"
  47. }
  48. ],
  49. "description": "Lightweight library that eases integrating async components built for ReactPHP in a traditional, blocking environment.",
  50. "homepage": "https://github.com/clue/reactphp-block",
  51. "keywords": [
  52. "async",
  53. "await",
  54. "blocking",
  55. "event loop",
  56. "promise",
  57. "reactphp",
  58. "sleep",
  59. "synchronous"
  60. ],
  61. "support": {
  62. "issues": "https://github.com/clue/reactphp-block/issues",
  63. "source": "https://github.com/clue/reactphp-block/tree/v1.5.0"
  64. },
  65. "funding": [
  66. {
  67. "url": "https://clue.engineering/support",
  68. "type": "custom"
  69. },
  70. {
  71. "url": "https://github.com/clue",
  72. "type": "github"
  73. }
  74. ],
  75. "abandoned": "react/async",
  76. "time": "2021-10-20T14:07:33+00:00"
  77. },
  78. {
  79. "name": "clue/framework-x",
  80. "version": "v0.17.0",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/clue/framework-x.git",
  84. "reference": "9b3a8e6a981953bb0d6e4a4c3c219589a70521d0"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/clue/framework-x/zipball/9b3a8e6a981953bb0d6e4a4c3c219589a70521d0",
  89. "reference": "9b3a8e6a981953bb0d6e4a4c3c219589a70521d0",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "nikic/fast-route": "^1.3",
  94. "php": ">=7.1",
  95. "react/async": "^4.3 || ^3.1",
  96. "react/http": "^1.11",
  97. "react/promise": "^3.2",
  98. "react/socket": "^1.15"
  99. },
  100. "require-dev": {
  101. "phpstan/phpstan": "1.12.11 || 1.4.10",
  102. "phpunit/phpunit": "^9.6 || ^7.5",
  103. "psr/container": "^2 || ^1"
  104. },
  105. "type": "library",
  106. "autoload": {
  107. "psr-4": {
  108. "FrameworkX\\": "src/"
  109. }
  110. },
  111. "notification-url": "https://packagist.org/downloads/",
  112. "license": [
  113. "MIT"
  114. ],
  115. "authors": [
  116. {
  117. "name": "Christian Lück",
  118. "email": "christian@clue.engineering"
  119. }
  120. ],
  121. "description": "Framework X – the simple and fast micro framework for building reactive web applications that run anywhere.",
  122. "homepage": "https://framework-x.org/",
  123. "keywords": [
  124. "async",
  125. "event-driven",
  126. "framework",
  127. "http",
  128. "micro",
  129. "microframework",
  130. "reactphp",
  131. "web"
  132. ],
  133. "support": {
  134. "issues": "https://github.com/clue/framework-x/issues",
  135. "source": "https://github.com/clue/framework-x/tree/v0.17.0"
  136. },
  137. "funding": [
  138. {
  139. "url": "https://clue.engineering/support",
  140. "type": "custom"
  141. },
  142. {
  143. "url": "https://github.com/clue",
  144. "type": "github"
  145. }
  146. ],
  147. "time": "2024-12-23T13:59:55+00:00"
  148. },
  149. {
  150. "name": "clue/ndjson-react",
  151. "version": "v1.3.0",
  152. "source": {
  153. "type": "git",
  154. "url": "https://github.com/clue/reactphp-ndjson.git",
  155. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  156. },
  157. "dist": {
  158. "type": "zip",
  159. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  160. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  161. "shasum": ""
  162. },
  163. "require": {
  164. "php": ">=5.3",
  165. "react/stream": "^1.2"
  166. },
  167. "require-dev": {
  168. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  169. "react/event-loop": "^1.2"
  170. },
  171. "type": "library",
  172. "autoload": {
  173. "psr-4": {
  174. "Clue\\React\\NDJson\\": "src/"
  175. }
  176. },
  177. "notification-url": "https://packagist.org/downloads/",
  178. "license": [
  179. "MIT"
  180. ],
  181. "authors": [
  182. {
  183. "name": "Christian Lück",
  184. "email": "christian@clue.engineering"
  185. }
  186. ],
  187. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  188. "homepage": "https://github.com/clue/reactphp-ndjson",
  189. "keywords": [
  190. "NDJSON",
  191. "json",
  192. "jsonlines",
  193. "newline",
  194. "reactphp",
  195. "streaming"
  196. ],
  197. "support": {
  198. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  199. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  200. },
  201. "funding": [
  202. {
  203. "url": "https://clue.engineering/support",
  204. "type": "custom"
  205. },
  206. {
  207. "url": "https://github.com/clue",
  208. "type": "github"
  209. }
  210. ],
  211. "time": "2022-12-23T10:58:28+00:00"
  212. },
  213. {
  214. "name": "clue/reactphp-sqlite",
  215. "version": "v1.7.0",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/clue/reactphp-sqlite.git",
  219. "reference": "52695d451be0f0b985204824018dd66c658636cc"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/clue/reactphp-sqlite/zipball/52695d451be0f0b985204824018dd66c658636cc",
  224. "reference": "52695d451be0f0b985204824018dd66c658636cc",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "clue/ndjson-react": "^1.0",
  229. "ext-sqlite3": "*",
  230. "php": ">=5.4",
  231. "react/child-process": "^0.6.6",
  232. "react/event-loop": "^1.2",
  233. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  234. },
  235. "require-dev": {
  236. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  237. },
  238. "type": "library",
  239. "autoload": {
  240. "psr-4": {
  241. "Clue\\React\\SQLite\\": "src/"
  242. }
  243. },
  244. "notification-url": "https://packagist.org/downloads/",
  245. "license": [
  246. "MIT"
  247. ],
  248. "authors": [
  249. {
  250. "name": "Christian Lück",
  251. "email": "christian@clue.engineering"
  252. }
  253. ],
  254. "description": "Async SQLite database, lightweight non-blocking process wrapper around file-based database extension (ext-sqlite3), built on top of ReactPHP.",
  255. "homepage": "https://github.com/clue/reactphp-sqlite",
  256. "keywords": [
  257. "async",
  258. "database",
  259. "non-blocking",
  260. "reactphp",
  261. "sqlite"
  262. ],
  263. "support": {
  264. "issues": "https://github.com/clue/reactphp-sqlite/issues",
  265. "source": "https://github.com/clue/reactphp-sqlite/tree/v1.7.0"
  266. },
  267. "funding": [
  268. {
  269. "url": "https://clue.engineering/support",
  270. "type": "custom"
  271. },
  272. {
  273. "url": "https://github.com/clue",
  274. "type": "github"
  275. }
  276. ],
  277. "time": "2025-01-17T14:49:38+00:00"
  278. },
  279. {
  280. "name": "evenement/evenement",
  281. "version": "v3.0.2",
  282. "source": {
  283. "type": "git",
  284. "url": "https://github.com/igorw/evenement.git",
  285. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  286. },
  287. "dist": {
  288. "type": "zip",
  289. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  290. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  291. "shasum": ""
  292. },
  293. "require": {
  294. "php": ">=7.0"
  295. },
  296. "require-dev": {
  297. "phpunit/phpunit": "^9 || ^6"
  298. },
  299. "type": "library",
  300. "autoload": {
  301. "psr-4": {
  302. "Evenement\\": "src/"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Igor Wiedler",
  312. "email": "igor@wiedler.ch"
  313. }
  314. ],
  315. "description": "Événement is a very simple event dispatching library for PHP",
  316. "keywords": [
  317. "event-dispatcher",
  318. "event-emitter"
  319. ],
  320. "support": {
  321. "issues": "https://github.com/igorw/evenement/issues",
  322. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  323. },
  324. "time": "2023-08-08T05:53:35+00:00"
  325. },
  326. {
  327. "name": "fig/http-message-util",
  328. "version": "1.1.5",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/php-fig/http-message-util.git",
  332. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  337. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "php": "^5.3 || ^7.0 || ^8.0"
  342. },
  343. "suggest": {
  344. "psr/http-message": "The package containing the PSR-7 interfaces"
  345. },
  346. "type": "library",
  347. "extra": {
  348. "branch-alias": {
  349. "dev-master": "1.1.x-dev"
  350. }
  351. },
  352. "autoload": {
  353. "psr-4": {
  354. "Fig\\Http\\Message\\": "src/"
  355. }
  356. },
  357. "notification-url": "https://packagist.org/downloads/",
  358. "license": [
  359. "MIT"
  360. ],
  361. "authors": [
  362. {
  363. "name": "PHP-FIG",
  364. "homepage": "https://www.php-fig.org/"
  365. }
  366. ],
  367. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  368. "keywords": [
  369. "http",
  370. "http-message",
  371. "psr",
  372. "psr-7",
  373. "request",
  374. "response"
  375. ],
  376. "support": {
  377. "issues": "https://github.com/php-fig/http-message-util/issues",
  378. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  379. },
  380. "time": "2020-11-24T22:02:12+00:00"
  381. },
  382. {
  383. "name": "graham-campbell/result-type",
  384. "version": "v1.1.3",
  385. "source": {
  386. "type": "git",
  387. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  388. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  389. },
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  393. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  394. "shasum": ""
  395. },
  396. "require": {
  397. "php": "^7.2.5 || ^8.0",
  398. "phpoption/phpoption": "^1.9.3"
  399. },
  400. "require-dev": {
  401. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  402. },
  403. "type": "library",
  404. "autoload": {
  405. "psr-4": {
  406. "GrahamCampbell\\ResultType\\": "src/"
  407. }
  408. },
  409. "notification-url": "https://packagist.org/downloads/",
  410. "license": [
  411. "MIT"
  412. ],
  413. "authors": [
  414. {
  415. "name": "Graham Campbell",
  416. "email": "hello@gjcampbell.co.uk",
  417. "homepage": "https://github.com/GrahamCampbell"
  418. }
  419. ],
  420. "description": "An Implementation Of The Result Type",
  421. "keywords": [
  422. "Graham Campbell",
  423. "GrahamCampbell",
  424. "Result Type",
  425. "Result-Type",
  426. "result"
  427. ],
  428. "support": {
  429. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  430. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  431. },
  432. "funding": [
  433. {
  434. "url": "https://github.com/GrahamCampbell",
  435. "type": "github"
  436. },
  437. {
  438. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  439. "type": "tidelift"
  440. }
  441. ],
  442. "time": "2024-07-20T21:45:45+00:00"
  443. },
  444. {
  445. "name": "nikic/fast-route",
  446. "version": "v1.3.0",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/nikic/FastRoute.git",
  450. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  455. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "php": ">=5.4.0"
  460. },
  461. "require-dev": {
  462. "phpunit/phpunit": "^4.8.35|~5.7"
  463. },
  464. "type": "library",
  465. "autoload": {
  466. "files": [
  467. "src/functions.php"
  468. ],
  469. "psr-4": {
  470. "FastRoute\\": "src/"
  471. }
  472. },
  473. "notification-url": "https://packagist.org/downloads/",
  474. "license": [
  475. "BSD-3-Clause"
  476. ],
  477. "authors": [
  478. {
  479. "name": "Nikita Popov",
  480. "email": "nikic@php.net"
  481. }
  482. ],
  483. "description": "Fast request router for PHP",
  484. "keywords": [
  485. "router",
  486. "routing"
  487. ],
  488. "support": {
  489. "issues": "https://github.com/nikic/FastRoute/issues",
  490. "source": "https://github.com/nikic/FastRoute/tree/master"
  491. },
  492. "time": "2018-02-13T20:26:39+00:00"
  493. },
  494. {
  495. "name": "phpoption/phpoption",
  496. "version": "1.9.4",
  497. "source": {
  498. "type": "git",
  499. "url": "https://github.com/schmittjoh/php-option.git",
  500. "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d"
  501. },
  502. "dist": {
  503. "type": "zip",
  504. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d",
  505. "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d",
  506. "shasum": ""
  507. },
  508. "require": {
  509. "php": "^7.2.5 || ^8.0"
  510. },
  511. "require-dev": {
  512. "bamarni/composer-bin-plugin": "^1.8.2",
  513. "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
  514. },
  515. "type": "library",
  516. "extra": {
  517. "bamarni-bin": {
  518. "bin-links": true,
  519. "forward-command": false
  520. },
  521. "branch-alias": {
  522. "dev-master": "1.9-dev"
  523. }
  524. },
  525. "autoload": {
  526. "psr-4": {
  527. "PhpOption\\": "src/PhpOption/"
  528. }
  529. },
  530. "notification-url": "https://packagist.org/downloads/",
  531. "license": [
  532. "Apache-2.0"
  533. ],
  534. "authors": [
  535. {
  536. "name": "Johannes M. Schmitt",
  537. "email": "schmittjoh@gmail.com",
  538. "homepage": "https://github.com/schmittjoh"
  539. },
  540. {
  541. "name": "Graham Campbell",
  542. "email": "hello@gjcampbell.co.uk",
  543. "homepage": "https://github.com/GrahamCampbell"
  544. }
  545. ],
  546. "description": "Option Type for PHP",
  547. "keywords": [
  548. "language",
  549. "option",
  550. "php",
  551. "type"
  552. ],
  553. "support": {
  554. "issues": "https://github.com/schmittjoh/php-option/issues",
  555. "source": "https://github.com/schmittjoh/php-option/tree/1.9.4"
  556. },
  557. "funding": [
  558. {
  559. "url": "https://github.com/GrahamCampbell",
  560. "type": "github"
  561. },
  562. {
  563. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  564. "type": "tidelift"
  565. }
  566. ],
  567. "time": "2025-08-21T11:53:16+00:00"
  568. },
  569. {
  570. "name": "psr/http-message",
  571. "version": "1.1",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/php-fig/http-message.git",
  575. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  580. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  581. "shasum": ""
  582. },
  583. "require": {
  584. "php": "^7.2 || ^8.0"
  585. },
  586. "type": "library",
  587. "extra": {
  588. "branch-alias": {
  589. "dev-master": "1.1.x-dev"
  590. }
  591. },
  592. "autoload": {
  593. "psr-4": {
  594. "Psr\\Http\\Message\\": "src/"
  595. }
  596. },
  597. "notification-url": "https://packagist.org/downloads/",
  598. "license": [
  599. "MIT"
  600. ],
  601. "authors": [
  602. {
  603. "name": "PHP-FIG",
  604. "homepage": "http://www.php-fig.org/"
  605. }
  606. ],
  607. "description": "Common interface for HTTP messages",
  608. "homepage": "https://github.com/php-fig/http-message",
  609. "keywords": [
  610. "http",
  611. "http-message",
  612. "psr",
  613. "psr-7",
  614. "request",
  615. "response"
  616. ],
  617. "support": {
  618. "source": "https://github.com/php-fig/http-message/tree/1.1"
  619. },
  620. "time": "2023-04-04T09:50:52+00:00"
  621. },
  622. {
  623. "name": "psr/http-server-handler",
  624. "version": "1.0.2",
  625. "source": {
  626. "type": "git",
  627. "url": "https://github.com/php-fig/http-server-handler.git",
  628. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  629. },
  630. "dist": {
  631. "type": "zip",
  632. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  633. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  634. "shasum": ""
  635. },
  636. "require": {
  637. "php": ">=7.0",
  638. "psr/http-message": "^1.0 || ^2.0"
  639. },
  640. "type": "library",
  641. "extra": {
  642. "branch-alias": {
  643. "dev-master": "1.0.x-dev"
  644. }
  645. },
  646. "autoload": {
  647. "psr-4": {
  648. "Psr\\Http\\Server\\": "src/"
  649. }
  650. },
  651. "notification-url": "https://packagist.org/downloads/",
  652. "license": [
  653. "MIT"
  654. ],
  655. "authors": [
  656. {
  657. "name": "PHP-FIG",
  658. "homepage": "https://www.php-fig.org/"
  659. }
  660. ],
  661. "description": "Common interface for HTTP server-side request handler",
  662. "keywords": [
  663. "handler",
  664. "http",
  665. "http-interop",
  666. "psr",
  667. "psr-15",
  668. "psr-7",
  669. "request",
  670. "response",
  671. "server"
  672. ],
  673. "support": {
  674. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  675. },
  676. "time": "2023-04-10T20:06:20+00:00"
  677. },
  678. {
  679. "name": "psr/http-server-middleware",
  680. "version": "1.0.2",
  681. "source": {
  682. "type": "git",
  683. "url": "https://github.com/php-fig/http-server-middleware.git",
  684. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  685. },
  686. "dist": {
  687. "type": "zip",
  688. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  689. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  690. "shasum": ""
  691. },
  692. "require": {
  693. "php": ">=7.0",
  694. "psr/http-message": "^1.0 || ^2.0",
  695. "psr/http-server-handler": "^1.0"
  696. },
  697. "type": "library",
  698. "extra": {
  699. "branch-alias": {
  700. "dev-master": "1.0.x-dev"
  701. }
  702. },
  703. "autoload": {
  704. "psr-4": {
  705. "Psr\\Http\\Server\\": "src/"
  706. }
  707. },
  708. "notification-url": "https://packagist.org/downloads/",
  709. "license": [
  710. "MIT"
  711. ],
  712. "authors": [
  713. {
  714. "name": "PHP-FIG",
  715. "homepage": "https://www.php-fig.org/"
  716. }
  717. ],
  718. "description": "Common interface for HTTP server-side middleware",
  719. "keywords": [
  720. "http",
  721. "http-interop",
  722. "middleware",
  723. "psr",
  724. "psr-15",
  725. "psr-7",
  726. "request",
  727. "response"
  728. ],
  729. "support": {
  730. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  731. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  732. },
  733. "time": "2023-04-11T06:14:47+00:00"
  734. },
  735. {
  736. "name": "react/async",
  737. "version": "v4.3.0",
  738. "source": {
  739. "type": "git",
  740. "url": "https://github.com/reactphp/async.git",
  741. "reference": "635d50e30844a484495713e8cb8d9e079c0008a5"
  742. },
  743. "dist": {
  744. "type": "zip",
  745. "url": "https://api.github.com/repos/reactphp/async/zipball/635d50e30844a484495713e8cb8d9e079c0008a5",
  746. "reference": "635d50e30844a484495713e8cb8d9e079c0008a5",
  747. "shasum": ""
  748. },
  749. "require": {
  750. "php": ">=8.1",
  751. "react/event-loop": "^1.2",
  752. "react/promise": "^3.2 || ^2.8 || ^1.2.1"
  753. },
  754. "require-dev": {
  755. "phpstan/phpstan": "1.10.39",
  756. "phpunit/phpunit": "^9.6"
  757. },
  758. "type": "library",
  759. "autoload": {
  760. "files": [
  761. "src/functions_include.php"
  762. ],
  763. "psr-4": {
  764. "React\\Async\\": "src/"
  765. }
  766. },
  767. "notification-url": "https://packagist.org/downloads/",
  768. "license": [
  769. "MIT"
  770. ],
  771. "authors": [
  772. {
  773. "name": "Christian Lück",
  774. "email": "christian@clue.engineering",
  775. "homepage": "https://clue.engineering/"
  776. },
  777. {
  778. "name": "Cees-Jan Kiewiet",
  779. "email": "reactphp@ceesjankiewiet.nl",
  780. "homepage": "https://wyrihaximus.net/"
  781. },
  782. {
  783. "name": "Jan Sorgalla",
  784. "email": "jsorgalla@gmail.com",
  785. "homepage": "https://sorgalla.com/"
  786. },
  787. {
  788. "name": "Chris Boden",
  789. "email": "cboden@gmail.com",
  790. "homepage": "https://cboden.dev/"
  791. }
  792. ],
  793. "description": "Async utilities and fibers for ReactPHP",
  794. "keywords": [
  795. "async",
  796. "reactphp"
  797. ],
  798. "support": {
  799. "issues": "https://github.com/reactphp/async/issues",
  800. "source": "https://github.com/reactphp/async/tree/v4.3.0"
  801. },
  802. "funding": [
  803. {
  804. "url": "https://opencollective.com/reactphp",
  805. "type": "open_collective"
  806. }
  807. ],
  808. "time": "2024-06-04T14:40:02+00:00"
  809. },
  810. {
  811. "name": "react/cache",
  812. "version": "v1.2.0",
  813. "source": {
  814. "type": "git",
  815. "url": "https://github.com/reactphp/cache.git",
  816. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  817. },
  818. "dist": {
  819. "type": "zip",
  820. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  821. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  822. "shasum": ""
  823. },
  824. "require": {
  825. "php": ">=5.3.0",
  826. "react/promise": "^3.0 || ^2.0 || ^1.1"
  827. },
  828. "require-dev": {
  829. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  830. },
  831. "type": "library",
  832. "autoload": {
  833. "psr-4": {
  834. "React\\Cache\\": "src/"
  835. }
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "MIT"
  840. ],
  841. "authors": [
  842. {
  843. "name": "Christian Lück",
  844. "email": "christian@clue.engineering",
  845. "homepage": "https://clue.engineering/"
  846. },
  847. {
  848. "name": "Cees-Jan Kiewiet",
  849. "email": "reactphp@ceesjankiewiet.nl",
  850. "homepage": "https://wyrihaximus.net/"
  851. },
  852. {
  853. "name": "Jan Sorgalla",
  854. "email": "jsorgalla@gmail.com",
  855. "homepage": "https://sorgalla.com/"
  856. },
  857. {
  858. "name": "Chris Boden",
  859. "email": "cboden@gmail.com",
  860. "homepage": "https://cboden.dev/"
  861. }
  862. ],
  863. "description": "Async, Promise-based cache interface for ReactPHP",
  864. "keywords": [
  865. "cache",
  866. "caching",
  867. "promise",
  868. "reactphp"
  869. ],
  870. "support": {
  871. "issues": "https://github.com/reactphp/cache/issues",
  872. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  873. },
  874. "funding": [
  875. {
  876. "url": "https://opencollective.com/reactphp",
  877. "type": "open_collective"
  878. }
  879. ],
  880. "time": "2022-11-30T15:59:55+00:00"
  881. },
  882. {
  883. "name": "react/child-process",
  884. "version": "v0.6.6",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/reactphp/child-process.git",
  888. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  893. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  894. "shasum": ""
  895. },
  896. "require": {
  897. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  898. "php": ">=5.3.0",
  899. "react/event-loop": "^1.2",
  900. "react/stream": "^1.4"
  901. },
  902. "require-dev": {
  903. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  904. "react/socket": "^1.16",
  905. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  906. },
  907. "type": "library",
  908. "autoload": {
  909. "psr-4": {
  910. "React\\ChildProcess\\": "src/"
  911. }
  912. },
  913. "notification-url": "https://packagist.org/downloads/",
  914. "license": [
  915. "MIT"
  916. ],
  917. "authors": [
  918. {
  919. "name": "Christian Lück",
  920. "email": "christian@clue.engineering",
  921. "homepage": "https://clue.engineering/"
  922. },
  923. {
  924. "name": "Cees-Jan Kiewiet",
  925. "email": "reactphp@ceesjankiewiet.nl",
  926. "homepage": "https://wyrihaximus.net/"
  927. },
  928. {
  929. "name": "Jan Sorgalla",
  930. "email": "jsorgalla@gmail.com",
  931. "homepage": "https://sorgalla.com/"
  932. },
  933. {
  934. "name": "Chris Boden",
  935. "email": "cboden@gmail.com",
  936. "homepage": "https://cboden.dev/"
  937. }
  938. ],
  939. "description": "Event-driven library for executing child processes with ReactPHP.",
  940. "keywords": [
  941. "event-driven",
  942. "process",
  943. "reactphp"
  944. ],
  945. "support": {
  946. "issues": "https://github.com/reactphp/child-process/issues",
  947. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  948. },
  949. "funding": [
  950. {
  951. "url": "https://opencollective.com/reactphp",
  952. "type": "open_collective"
  953. }
  954. ],
  955. "time": "2025-01-01T16:37:48+00:00"
  956. },
  957. {
  958. "name": "react/dns",
  959. "version": "v1.13.0",
  960. "source": {
  961. "type": "git",
  962. "url": "https://github.com/reactphp/dns.git",
  963. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  964. },
  965. "dist": {
  966. "type": "zip",
  967. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  968. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  969. "shasum": ""
  970. },
  971. "require": {
  972. "php": ">=5.3.0",
  973. "react/cache": "^1.0 || ^0.6 || ^0.5",
  974. "react/event-loop": "^1.2",
  975. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  976. },
  977. "require-dev": {
  978. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  979. "react/async": "^4.3 || ^3 || ^2",
  980. "react/promise-timer": "^1.11"
  981. },
  982. "type": "library",
  983. "autoload": {
  984. "psr-4": {
  985. "React\\Dns\\": "src/"
  986. }
  987. },
  988. "notification-url": "https://packagist.org/downloads/",
  989. "license": [
  990. "MIT"
  991. ],
  992. "authors": [
  993. {
  994. "name": "Christian Lück",
  995. "email": "christian@clue.engineering",
  996. "homepage": "https://clue.engineering/"
  997. },
  998. {
  999. "name": "Cees-Jan Kiewiet",
  1000. "email": "reactphp@ceesjankiewiet.nl",
  1001. "homepage": "https://wyrihaximus.net/"
  1002. },
  1003. {
  1004. "name": "Jan Sorgalla",
  1005. "email": "jsorgalla@gmail.com",
  1006. "homepage": "https://sorgalla.com/"
  1007. },
  1008. {
  1009. "name": "Chris Boden",
  1010. "email": "cboden@gmail.com",
  1011. "homepage": "https://cboden.dev/"
  1012. }
  1013. ],
  1014. "description": "Async DNS resolver for ReactPHP",
  1015. "keywords": [
  1016. "async",
  1017. "dns",
  1018. "dns-resolver",
  1019. "reactphp"
  1020. ],
  1021. "support": {
  1022. "issues": "https://github.com/reactphp/dns/issues",
  1023. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  1024. },
  1025. "funding": [
  1026. {
  1027. "url": "https://opencollective.com/reactphp",
  1028. "type": "open_collective"
  1029. }
  1030. ],
  1031. "time": "2024-06-13T14:18:03+00:00"
  1032. },
  1033. {
  1034. "name": "react/event-loop",
  1035. "version": "v1.5.0",
  1036. "source": {
  1037. "type": "git",
  1038. "url": "https://github.com/reactphp/event-loop.git",
  1039. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  1040. },
  1041. "dist": {
  1042. "type": "zip",
  1043. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  1044. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  1045. "shasum": ""
  1046. },
  1047. "require": {
  1048. "php": ">=5.3.0"
  1049. },
  1050. "require-dev": {
  1051. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  1052. },
  1053. "suggest": {
  1054. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  1055. },
  1056. "type": "library",
  1057. "autoload": {
  1058. "psr-4": {
  1059. "React\\EventLoop\\": "src/"
  1060. }
  1061. },
  1062. "notification-url": "https://packagist.org/downloads/",
  1063. "license": [
  1064. "MIT"
  1065. ],
  1066. "authors": [
  1067. {
  1068. "name": "Christian Lück",
  1069. "email": "christian@clue.engineering",
  1070. "homepage": "https://clue.engineering/"
  1071. },
  1072. {
  1073. "name": "Cees-Jan Kiewiet",
  1074. "email": "reactphp@ceesjankiewiet.nl",
  1075. "homepage": "https://wyrihaximus.net/"
  1076. },
  1077. {
  1078. "name": "Jan Sorgalla",
  1079. "email": "jsorgalla@gmail.com",
  1080. "homepage": "https://sorgalla.com/"
  1081. },
  1082. {
  1083. "name": "Chris Boden",
  1084. "email": "cboden@gmail.com",
  1085. "homepage": "https://cboden.dev/"
  1086. }
  1087. ],
  1088. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  1089. "keywords": [
  1090. "asynchronous",
  1091. "event-loop"
  1092. ],
  1093. "support": {
  1094. "issues": "https://github.com/reactphp/event-loop/issues",
  1095. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  1096. },
  1097. "funding": [
  1098. {
  1099. "url": "https://opencollective.com/reactphp",
  1100. "type": "open_collective"
  1101. }
  1102. ],
  1103. "time": "2023-11-13T13:48:05+00:00"
  1104. },
  1105. {
  1106. "name": "react/http",
  1107. "version": "v1.11.0",
  1108. "source": {
  1109. "type": "git",
  1110. "url": "https://github.com/reactphp/http.git",
  1111. "reference": "8db02de41dcca82037367f67a2d4be365b1c4db9"
  1112. },
  1113. "dist": {
  1114. "type": "zip",
  1115. "url": "https://api.github.com/repos/reactphp/http/zipball/8db02de41dcca82037367f67a2d4be365b1c4db9",
  1116. "reference": "8db02de41dcca82037367f67a2d4be365b1c4db9",
  1117. "shasum": ""
  1118. },
  1119. "require": {
  1120. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  1121. "fig/http-message-util": "^1.1",
  1122. "php": ">=5.3.0",
  1123. "psr/http-message": "^1.0",
  1124. "react/event-loop": "^1.2",
  1125. "react/promise": "^3.2 || ^2.3 || ^1.2.1",
  1126. "react/socket": "^1.16",
  1127. "react/stream": "^1.4"
  1128. },
  1129. "require-dev": {
  1130. "clue/http-proxy-react": "^1.8",
  1131. "clue/reactphp-ssh-proxy": "^1.4",
  1132. "clue/socks-react": "^1.4",
  1133. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  1134. "react/async": "^4.2 || ^3 || ^2",
  1135. "react/promise-stream": "^1.4",
  1136. "react/promise-timer": "^1.11"
  1137. },
  1138. "type": "library",
  1139. "autoload": {
  1140. "psr-4": {
  1141. "React\\Http\\": "src/"
  1142. }
  1143. },
  1144. "notification-url": "https://packagist.org/downloads/",
  1145. "license": [
  1146. "MIT"
  1147. ],
  1148. "authors": [
  1149. {
  1150. "name": "Christian Lück",
  1151. "email": "christian@clue.engineering",
  1152. "homepage": "https://clue.engineering/"
  1153. },
  1154. {
  1155. "name": "Cees-Jan Kiewiet",
  1156. "email": "reactphp@ceesjankiewiet.nl",
  1157. "homepage": "https://wyrihaximus.net/"
  1158. },
  1159. {
  1160. "name": "Jan Sorgalla",
  1161. "email": "jsorgalla@gmail.com",
  1162. "homepage": "https://sorgalla.com/"
  1163. },
  1164. {
  1165. "name": "Chris Boden",
  1166. "email": "cboden@gmail.com",
  1167. "homepage": "https://cboden.dev/"
  1168. }
  1169. ],
  1170. "description": "Event-driven, streaming HTTP client and server implementation for ReactPHP",
  1171. "keywords": [
  1172. "async",
  1173. "client",
  1174. "event-driven",
  1175. "http",
  1176. "http client",
  1177. "http server",
  1178. "https",
  1179. "psr-7",
  1180. "reactphp",
  1181. "server",
  1182. "streaming"
  1183. ],
  1184. "support": {
  1185. "issues": "https://github.com/reactphp/http/issues",
  1186. "source": "https://github.com/reactphp/http/tree/v1.11.0"
  1187. },
  1188. "funding": [
  1189. {
  1190. "url": "https://opencollective.com/reactphp",
  1191. "type": "open_collective"
  1192. }
  1193. ],
  1194. "time": "2024-11-20T15:24:08+00:00"
  1195. },
  1196. {
  1197. "name": "react/promise",
  1198. "version": "v3.3.0",
  1199. "source": {
  1200. "type": "git",
  1201. "url": "https://github.com/reactphp/promise.git",
  1202. "reference": "23444f53a813a3296c1368bb104793ce8d88f04a"
  1203. },
  1204. "dist": {
  1205. "type": "zip",
  1206. "url": "https://api.github.com/repos/reactphp/promise/zipball/23444f53a813a3296c1368bb104793ce8d88f04a",
  1207. "reference": "23444f53a813a3296c1368bb104793ce8d88f04a",
  1208. "shasum": ""
  1209. },
  1210. "require": {
  1211. "php": ">=7.1.0"
  1212. },
  1213. "require-dev": {
  1214. "phpstan/phpstan": "1.12.28 || 1.4.10",
  1215. "phpunit/phpunit": "^9.6 || ^7.5"
  1216. },
  1217. "type": "library",
  1218. "autoload": {
  1219. "files": [
  1220. "src/functions_include.php"
  1221. ],
  1222. "psr-4": {
  1223. "React\\Promise\\": "src/"
  1224. }
  1225. },
  1226. "notification-url": "https://packagist.org/downloads/",
  1227. "license": [
  1228. "MIT"
  1229. ],
  1230. "authors": [
  1231. {
  1232. "name": "Jan Sorgalla",
  1233. "email": "jsorgalla@gmail.com",
  1234. "homepage": "https://sorgalla.com/"
  1235. },
  1236. {
  1237. "name": "Christian Lück",
  1238. "email": "christian@clue.engineering",
  1239. "homepage": "https://clue.engineering/"
  1240. },
  1241. {
  1242. "name": "Cees-Jan Kiewiet",
  1243. "email": "reactphp@ceesjankiewiet.nl",
  1244. "homepage": "https://wyrihaximus.net/"
  1245. },
  1246. {
  1247. "name": "Chris Boden",
  1248. "email": "cboden@gmail.com",
  1249. "homepage": "https://cboden.dev/"
  1250. }
  1251. ],
  1252. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  1253. "keywords": [
  1254. "promise",
  1255. "promises"
  1256. ],
  1257. "support": {
  1258. "issues": "https://github.com/reactphp/promise/issues",
  1259. "source": "https://github.com/reactphp/promise/tree/v3.3.0"
  1260. },
  1261. "funding": [
  1262. {
  1263. "url": "https://opencollective.com/reactphp",
  1264. "type": "open_collective"
  1265. }
  1266. ],
  1267. "time": "2025-08-19T18:57:03+00:00"
  1268. },
  1269. {
  1270. "name": "react/promise-timer",
  1271. "version": "v1.11.0",
  1272. "source": {
  1273. "type": "git",
  1274. "url": "https://github.com/reactphp/promise-timer.git",
  1275. "reference": "4f70306ed66b8b44768941ca7f142092600fafc1"
  1276. },
  1277. "dist": {
  1278. "type": "zip",
  1279. "url": "https://api.github.com/repos/reactphp/promise-timer/zipball/4f70306ed66b8b44768941ca7f142092600fafc1",
  1280. "reference": "4f70306ed66b8b44768941ca7f142092600fafc1",
  1281. "shasum": ""
  1282. },
  1283. "require": {
  1284. "php": ">=5.3",
  1285. "react/event-loop": "^1.2",
  1286. "react/promise": "^3.2 || ^2.7.0 || ^1.2.1"
  1287. },
  1288. "require-dev": {
  1289. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  1290. },
  1291. "type": "library",
  1292. "autoload": {
  1293. "files": [
  1294. "src/functions_include.php"
  1295. ],
  1296. "psr-4": {
  1297. "React\\Promise\\Timer\\": "src/"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Christian Lück",
  1307. "email": "christian@clue.engineering",
  1308. "homepage": "https://clue.engineering/"
  1309. },
  1310. {
  1311. "name": "Cees-Jan Kiewiet",
  1312. "email": "reactphp@ceesjankiewiet.nl",
  1313. "homepage": "https://wyrihaximus.net/"
  1314. },
  1315. {
  1316. "name": "Jan Sorgalla",
  1317. "email": "jsorgalla@gmail.com",
  1318. "homepage": "https://sorgalla.com/"
  1319. },
  1320. {
  1321. "name": "Chris Boden",
  1322. "email": "cboden@gmail.com",
  1323. "homepage": "https://cboden.dev/"
  1324. }
  1325. ],
  1326. "description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.",
  1327. "homepage": "https://github.com/reactphp/promise-timer",
  1328. "keywords": [
  1329. "async",
  1330. "event-loop",
  1331. "promise",
  1332. "reactphp",
  1333. "timeout",
  1334. "timer"
  1335. ],
  1336. "support": {
  1337. "issues": "https://github.com/reactphp/promise-timer/issues",
  1338. "source": "https://github.com/reactphp/promise-timer/tree/v1.11.0"
  1339. },
  1340. "funding": [
  1341. {
  1342. "url": "https://opencollective.com/reactphp",
  1343. "type": "open_collective"
  1344. }
  1345. ],
  1346. "time": "2024-06-04T14:27:45+00:00"
  1347. },
  1348. {
  1349. "name": "react/socket",
  1350. "version": "v1.16.0",
  1351. "source": {
  1352. "type": "git",
  1353. "url": "https://github.com/reactphp/socket.git",
  1354. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  1355. },
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  1359. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  1360. "shasum": ""
  1361. },
  1362. "require": {
  1363. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  1364. "php": ">=5.3.0",
  1365. "react/dns": "^1.13",
  1366. "react/event-loop": "^1.2",
  1367. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  1368. "react/stream": "^1.4"
  1369. },
  1370. "require-dev": {
  1371. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  1372. "react/async": "^4.3 || ^3.3 || ^2",
  1373. "react/promise-stream": "^1.4",
  1374. "react/promise-timer": "^1.11"
  1375. },
  1376. "type": "library",
  1377. "autoload": {
  1378. "psr-4": {
  1379. "React\\Socket\\": "src/"
  1380. }
  1381. },
  1382. "notification-url": "https://packagist.org/downloads/",
  1383. "license": [
  1384. "MIT"
  1385. ],
  1386. "authors": [
  1387. {
  1388. "name": "Christian Lück",
  1389. "email": "christian@clue.engineering",
  1390. "homepage": "https://clue.engineering/"
  1391. },
  1392. {
  1393. "name": "Cees-Jan Kiewiet",
  1394. "email": "reactphp@ceesjankiewiet.nl",
  1395. "homepage": "https://wyrihaximus.net/"
  1396. },
  1397. {
  1398. "name": "Jan Sorgalla",
  1399. "email": "jsorgalla@gmail.com",
  1400. "homepage": "https://sorgalla.com/"
  1401. },
  1402. {
  1403. "name": "Chris Boden",
  1404. "email": "cboden@gmail.com",
  1405. "homepage": "https://cboden.dev/"
  1406. }
  1407. ],
  1408. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  1409. "keywords": [
  1410. "Connection",
  1411. "Socket",
  1412. "async",
  1413. "reactphp",
  1414. "stream"
  1415. ],
  1416. "support": {
  1417. "issues": "https://github.com/reactphp/socket/issues",
  1418. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  1419. },
  1420. "funding": [
  1421. {
  1422. "url": "https://opencollective.com/reactphp",
  1423. "type": "open_collective"
  1424. }
  1425. ],
  1426. "time": "2024-07-26T10:38:09+00:00"
  1427. },
  1428. {
  1429. "name": "react/stream",
  1430. "version": "v1.4.0",
  1431. "source": {
  1432. "type": "git",
  1433. "url": "https://github.com/reactphp/stream.git",
  1434. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  1435. },
  1436. "dist": {
  1437. "type": "zip",
  1438. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  1439. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  1440. "shasum": ""
  1441. },
  1442. "require": {
  1443. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  1444. "php": ">=5.3.8",
  1445. "react/event-loop": "^1.2"
  1446. },
  1447. "require-dev": {
  1448. "clue/stream-filter": "~1.2",
  1449. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  1450. },
  1451. "type": "library",
  1452. "autoload": {
  1453. "psr-4": {
  1454. "React\\Stream\\": "src/"
  1455. }
  1456. },
  1457. "notification-url": "https://packagist.org/downloads/",
  1458. "license": [
  1459. "MIT"
  1460. ],
  1461. "authors": [
  1462. {
  1463. "name": "Christian Lück",
  1464. "email": "christian@clue.engineering",
  1465. "homepage": "https://clue.engineering/"
  1466. },
  1467. {
  1468. "name": "Cees-Jan Kiewiet",
  1469. "email": "reactphp@ceesjankiewiet.nl",
  1470. "homepage": "https://wyrihaximus.net/"
  1471. },
  1472. {
  1473. "name": "Jan Sorgalla",
  1474. "email": "jsorgalla@gmail.com",
  1475. "homepage": "https://sorgalla.com/"
  1476. },
  1477. {
  1478. "name": "Chris Boden",
  1479. "email": "cboden@gmail.com",
  1480. "homepage": "https://cboden.dev/"
  1481. }
  1482. ],
  1483. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  1484. "keywords": [
  1485. "event-driven",
  1486. "io",
  1487. "non-blocking",
  1488. "pipe",
  1489. "reactphp",
  1490. "readable",
  1491. "stream",
  1492. "writable"
  1493. ],
  1494. "support": {
  1495. "issues": "https://github.com/reactphp/stream/issues",
  1496. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  1497. },
  1498. "funding": [
  1499. {
  1500. "url": "https://opencollective.com/reactphp",
  1501. "type": "open_collective"
  1502. }
  1503. ],
  1504. "time": "2024-06-11T12:45:25+00:00"
  1505. },
  1506. {
  1507. "name": "respect/stringifier",
  1508. "version": "0.2.0",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/Respect/Stringifier.git",
  1512. "reference": "e55af3c8aeaeaa2abb5fa47a58a8e9688cc23b59"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/Respect/Stringifier/zipball/e55af3c8aeaeaa2abb5fa47a58a8e9688cc23b59",
  1517. "reference": "e55af3c8aeaeaa2abb5fa47a58a8e9688cc23b59",
  1518. "shasum": ""
  1519. },
  1520. "require": {
  1521. "php": ">=7.1"
  1522. },
  1523. "require-dev": {
  1524. "friendsofphp/php-cs-fixer": "^2.8",
  1525. "malukenho/docheader": "^0.1.7",
  1526. "phpunit/phpunit": "^6.4"
  1527. },
  1528. "type": "library",
  1529. "autoload": {
  1530. "files": [
  1531. "src/stringify.php"
  1532. ],
  1533. "psr-4": {
  1534. "Respect\\Stringifier\\": "src/"
  1535. }
  1536. },
  1537. "notification-url": "https://packagist.org/downloads/",
  1538. "license": [
  1539. "MIT"
  1540. ],
  1541. "authors": [
  1542. {
  1543. "name": "Respect/Stringifier Contributors",
  1544. "homepage": "https://github.com/Respect/Stringifier/graphs/contributors"
  1545. }
  1546. ],
  1547. "description": "Converts any value to a string",
  1548. "homepage": "http://respect.github.io/Stringifier/",
  1549. "keywords": [
  1550. "respect",
  1551. "stringifier",
  1552. "stringify"
  1553. ],
  1554. "support": {
  1555. "issues": "https://github.com/Respect/Stringifier/issues",
  1556. "source": "https://github.com/Respect/Stringifier/tree/0.2.0"
  1557. },
  1558. "time": "2017-12-29T19:39:25+00:00"
  1559. },
  1560. {
  1561. "name": "respect/validation",
  1562. "version": "2.4.4",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/Respect/Validation.git",
  1566. "reference": "f13f10f19978aea33af2a102a2f58f2db1e63619"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/Respect/Validation/zipball/f13f10f19978aea33af2a102a2f58f2db1e63619",
  1571. "reference": "f13f10f19978aea33af2a102a2f58f2db1e63619",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "php": ">=8.1",
  1576. "respect/stringifier": "^0.2.0",
  1577. "symfony/polyfill-mbstring": "^1.2"
  1578. },
  1579. "require-dev": {
  1580. "egulias/email-validator": "^3.0",
  1581. "giggsey/libphonenumber-for-php-lite": "^8.13 || ^9.0",
  1582. "malukenho/docheader": "^1.0",
  1583. "mikey179/vfsstream": "^1.6",
  1584. "phpstan/phpstan": "^1.9",
  1585. "phpstan/phpstan-deprecation-rules": "^1.1",
  1586. "phpstan/phpstan-phpunit": "^1.3",
  1587. "phpunit/phpunit": "^9.6",
  1588. "psr/http-message": "^1.0",
  1589. "respect/coding-standard": "^4.0",
  1590. "squizlabs/php_codesniffer": "^3.7"
  1591. },
  1592. "suggest": {
  1593. "egulias/email-validator": "Improves the Email rule if available",
  1594. "ext-bcmath": "Arbitrary Precision Mathematics",
  1595. "ext-fileinfo": "File Information",
  1596. "ext-mbstring": "Multibyte String Functions",
  1597. "giggsey/libphonenumber-for-php-lite": "Enables the phone rule if available"
  1598. },
  1599. "type": "library",
  1600. "autoload": {
  1601. "psr-4": {
  1602. "Respect\\Validation\\": "library/"
  1603. }
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Respect/Validation Contributors",
  1612. "homepage": "https://github.com/Respect/Validation/graphs/contributors"
  1613. }
  1614. ],
  1615. "description": "The most awesome validation engine ever created for PHP",
  1616. "homepage": "http://respect.github.io/Validation/",
  1617. "keywords": [
  1618. "respect",
  1619. "validation",
  1620. "validator"
  1621. ],
  1622. "support": {
  1623. "issues": "https://github.com/Respect/Validation/issues",
  1624. "source": "https://github.com/Respect/Validation/tree/2.4.4"
  1625. },
  1626. "time": "2025-06-07T00:07:21+00:00"
  1627. },
  1628. {
  1629. "name": "symfony/polyfill-ctype",
  1630. "version": "v1.33.0",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/symfony/polyfill-ctype.git",
  1634. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  1639. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  1640. "shasum": ""
  1641. },
  1642. "require": {
  1643. "php": ">=7.2"
  1644. },
  1645. "provide": {
  1646. "ext-ctype": "*"
  1647. },
  1648. "suggest": {
  1649. "ext-ctype": "For best performance"
  1650. },
  1651. "type": "library",
  1652. "extra": {
  1653. "thanks": {
  1654. "url": "https://github.com/symfony/polyfill",
  1655. "name": "symfony/polyfill"
  1656. }
  1657. },
  1658. "autoload": {
  1659. "files": [
  1660. "bootstrap.php"
  1661. ],
  1662. "psr-4": {
  1663. "Symfony\\Polyfill\\Ctype\\": ""
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Gert de Pagter",
  1673. "email": "BackEndTea@gmail.com"
  1674. },
  1675. {
  1676. "name": "Symfony Community",
  1677. "homepage": "https://symfony.com/contributors"
  1678. }
  1679. ],
  1680. "description": "Symfony polyfill for ctype functions",
  1681. "homepage": "https://symfony.com",
  1682. "keywords": [
  1683. "compatibility",
  1684. "ctype",
  1685. "polyfill",
  1686. "portable"
  1687. ],
  1688. "support": {
  1689. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  1690. },
  1691. "funding": [
  1692. {
  1693. "url": "https://symfony.com/sponsor",
  1694. "type": "custom"
  1695. },
  1696. {
  1697. "url": "https://github.com/fabpot",
  1698. "type": "github"
  1699. },
  1700. {
  1701. "url": "https://github.com/nicolas-grekas",
  1702. "type": "github"
  1703. },
  1704. {
  1705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1706. "type": "tidelift"
  1707. }
  1708. ],
  1709. "time": "2024-09-09T11:45:10+00:00"
  1710. },
  1711. {
  1712. "name": "symfony/polyfill-mbstring",
  1713. "version": "v1.33.0",
  1714. "source": {
  1715. "type": "git",
  1716. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1717. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  1718. },
  1719. "dist": {
  1720. "type": "zip",
  1721. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  1722. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  1723. "shasum": ""
  1724. },
  1725. "require": {
  1726. "ext-iconv": "*",
  1727. "php": ">=7.2"
  1728. },
  1729. "provide": {
  1730. "ext-mbstring": "*"
  1731. },
  1732. "suggest": {
  1733. "ext-mbstring": "For best performance"
  1734. },
  1735. "type": "library",
  1736. "extra": {
  1737. "thanks": {
  1738. "url": "https://github.com/symfony/polyfill",
  1739. "name": "symfony/polyfill"
  1740. }
  1741. },
  1742. "autoload": {
  1743. "files": [
  1744. "bootstrap.php"
  1745. ],
  1746. "psr-4": {
  1747. "Symfony\\Polyfill\\Mbstring\\": ""
  1748. }
  1749. },
  1750. "notification-url": "https://packagist.org/downloads/",
  1751. "license": [
  1752. "MIT"
  1753. ],
  1754. "authors": [
  1755. {
  1756. "name": "Nicolas Grekas",
  1757. "email": "p@tchwork.com"
  1758. },
  1759. {
  1760. "name": "Symfony Community",
  1761. "homepage": "https://symfony.com/contributors"
  1762. }
  1763. ],
  1764. "description": "Symfony polyfill for the Mbstring extension",
  1765. "homepage": "https://symfony.com",
  1766. "keywords": [
  1767. "compatibility",
  1768. "mbstring",
  1769. "polyfill",
  1770. "portable",
  1771. "shim"
  1772. ],
  1773. "support": {
  1774. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  1775. },
  1776. "funding": [
  1777. {
  1778. "url": "https://symfony.com/sponsor",
  1779. "type": "custom"
  1780. },
  1781. {
  1782. "url": "https://github.com/fabpot",
  1783. "type": "github"
  1784. },
  1785. {
  1786. "url": "https://github.com/nicolas-grekas",
  1787. "type": "github"
  1788. },
  1789. {
  1790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1791. "type": "tidelift"
  1792. }
  1793. ],
  1794. "time": "2024-12-23T08:48:59+00:00"
  1795. },
  1796. {
  1797. "name": "symfony/polyfill-php80",
  1798. "version": "v1.33.0",
  1799. "source": {
  1800. "type": "git",
  1801. "url": "https://github.com/symfony/polyfill-php80.git",
  1802. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  1803. },
  1804. "dist": {
  1805. "type": "zip",
  1806. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  1807. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  1808. "shasum": ""
  1809. },
  1810. "require": {
  1811. "php": ">=7.2"
  1812. },
  1813. "type": "library",
  1814. "extra": {
  1815. "thanks": {
  1816. "url": "https://github.com/symfony/polyfill",
  1817. "name": "symfony/polyfill"
  1818. }
  1819. },
  1820. "autoload": {
  1821. "files": [
  1822. "bootstrap.php"
  1823. ],
  1824. "psr-4": {
  1825. "Symfony\\Polyfill\\Php80\\": ""
  1826. },
  1827. "classmap": [
  1828. "Resources/stubs"
  1829. ]
  1830. },
  1831. "notification-url": "https://packagist.org/downloads/",
  1832. "license": [
  1833. "MIT"
  1834. ],
  1835. "authors": [
  1836. {
  1837. "name": "Ion Bazan",
  1838. "email": "ion.bazan@gmail.com"
  1839. },
  1840. {
  1841. "name": "Nicolas Grekas",
  1842. "email": "p@tchwork.com"
  1843. },
  1844. {
  1845. "name": "Symfony Community",
  1846. "homepage": "https://symfony.com/contributors"
  1847. }
  1848. ],
  1849. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1850. "homepage": "https://symfony.com",
  1851. "keywords": [
  1852. "compatibility",
  1853. "polyfill",
  1854. "portable",
  1855. "shim"
  1856. ],
  1857. "support": {
  1858. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  1859. },
  1860. "funding": [
  1861. {
  1862. "url": "https://symfony.com/sponsor",
  1863. "type": "custom"
  1864. },
  1865. {
  1866. "url": "https://github.com/fabpot",
  1867. "type": "github"
  1868. },
  1869. {
  1870. "url": "https://github.com/nicolas-grekas",
  1871. "type": "github"
  1872. },
  1873. {
  1874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1875. "type": "tidelift"
  1876. }
  1877. ],
  1878. "time": "2025-01-02T08:10:11+00:00"
  1879. },
  1880. {
  1881. "name": "vlucas/phpdotenv",
  1882. "version": "v5.6.2",
  1883. "source": {
  1884. "type": "git",
  1885. "url": "https://github.com/vlucas/phpdotenv.git",
  1886. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
  1887. },
  1888. "dist": {
  1889. "type": "zip",
  1890. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  1891. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  1892. "shasum": ""
  1893. },
  1894. "require": {
  1895. "ext-pcre": "*",
  1896. "graham-campbell/result-type": "^1.1.3",
  1897. "php": "^7.2.5 || ^8.0",
  1898. "phpoption/phpoption": "^1.9.3",
  1899. "symfony/polyfill-ctype": "^1.24",
  1900. "symfony/polyfill-mbstring": "^1.24",
  1901. "symfony/polyfill-php80": "^1.24"
  1902. },
  1903. "require-dev": {
  1904. "bamarni/composer-bin-plugin": "^1.8.2",
  1905. "ext-filter": "*",
  1906. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1907. },
  1908. "suggest": {
  1909. "ext-filter": "Required to use the boolean validator."
  1910. },
  1911. "type": "library",
  1912. "extra": {
  1913. "bamarni-bin": {
  1914. "bin-links": true,
  1915. "forward-command": false
  1916. },
  1917. "branch-alias": {
  1918. "dev-master": "5.6-dev"
  1919. }
  1920. },
  1921. "autoload": {
  1922. "psr-4": {
  1923. "Dotenv\\": "src/"
  1924. }
  1925. },
  1926. "notification-url": "https://packagist.org/downloads/",
  1927. "license": [
  1928. "BSD-3-Clause"
  1929. ],
  1930. "authors": [
  1931. {
  1932. "name": "Graham Campbell",
  1933. "email": "hello@gjcampbell.co.uk",
  1934. "homepage": "https://github.com/GrahamCampbell"
  1935. },
  1936. {
  1937. "name": "Vance Lucas",
  1938. "email": "vance@vancelucas.com",
  1939. "homepage": "https://github.com/vlucas"
  1940. }
  1941. ],
  1942. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  1943. "keywords": [
  1944. "dotenv",
  1945. "env",
  1946. "environment"
  1947. ],
  1948. "support": {
  1949. "issues": "https://github.com/vlucas/phpdotenv/issues",
  1950. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
  1951. },
  1952. "funding": [
  1953. {
  1954. "url": "https://github.com/GrahamCampbell",
  1955. "type": "github"
  1956. },
  1957. {
  1958. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  1959. "type": "tidelift"
  1960. }
  1961. ],
  1962. "time": "2025-04-30T23:37:27+00:00"
  1963. }
  1964. ],
  1965. "packages-dev": [],
  1966. "aliases": [],
  1967. "minimum-stability": "stable",
  1968. "stability-flags": {},
  1969. "prefer-stable": false,
  1970. "prefer-lowest": false,
  1971. "platform": {},
  1972. "platform-dev": {},
  1973. "plugin-api-version": "2.6.0"
  1974. }