installed.json 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652
  1. {
  2. "packages": [
  3. {
  4. "name": "discord-php/http",
  5. "version": "v9.1.8",
  6. "version_normalized": "9.1.8.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/discord-php/DiscordPHP-Http.git",
  10. "reference": "8dc95a63836f7f0161fc5e52e1d9feeaa36b36ba"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/discord-php/DiscordPHP-Http/zipball/8dc95a63836f7f0161fc5e52e1d9feeaa36b36ba",
  15. "reference": "8dc95a63836f7f0161fc5e52e1d9feeaa36b36ba",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": "^7.2|^8.0",
  20. "psr/log": "^1.1 || ^2.0 || ^3.0",
  21. "react/http": "^1.2"
  22. },
  23. "require-dev": {
  24. "friendsofphp/php-cs-fixer": "^2.17",
  25. "guzzlehttp/guzzle": "^6.0|^7.0",
  26. "monolog/monolog": "^2.2",
  27. "psy/psysh": "^0.10.6"
  28. },
  29. "suggest": {
  30. "guzzlehttp/guzzle": "For alternative to ReactPHP/Http Browser"
  31. },
  32. "time": "2022-12-13T12:11:12+00:00",
  33. "type": "library",
  34. "installation-source": "dist",
  35. "autoload": {
  36. "psr-4": {
  37. "Discord\\Http\\": "src/Discord"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "David Cole",
  47. "email": "david.cole1340@gmail.com"
  48. }
  49. ],
  50. "description": "Handles HTTP requests to Discord servers",
  51. "support": {
  52. "issues": "https://github.com/discord-php/DiscordPHP-Http/issues",
  53. "source": "https://github.com/discord-php/DiscordPHP-Http/tree/v9.1.8"
  54. },
  55. "install-path": "../discord-php/http"
  56. },
  57. {
  58. "name": "discord/interactions",
  59. "version": "2.2.0",
  60. "version_normalized": "2.2.0.0",
  61. "source": {
  62. "type": "git",
  63. "url": "https://github.com/discord/discord-interactions-php.git",
  64. "reference": "a6fc0c877b75cf5ff5811f2ea69c5cc4ad6ac457"
  65. },
  66. "dist": {
  67. "type": "zip",
  68. "url": "https://api.github.com/repos/discord/discord-interactions-php/zipball/a6fc0c877b75cf5ff5811f2ea69c5cc4ad6ac457",
  69. "reference": "a6fc0c877b75cf5ff5811f2ea69c5cc4ad6ac457",
  70. "shasum": ""
  71. },
  72. "conflict": {
  73. "simplito/elliptic-php": "<1.0,>=1.1"
  74. },
  75. "require-dev": {
  76. "simplito/elliptic-php": "^1.0"
  77. },
  78. "suggest": {
  79. "simplito/elliptic-php": "Required to validate interaction signatures."
  80. },
  81. "time": "2022-02-09T17:58:51+00:00",
  82. "type": "library",
  83. "installation-source": "dist",
  84. "autoload": {
  85. "psr-4": {
  86. "Discord\\": "discord"
  87. }
  88. },
  89. "notification-url": "https://packagist.org/downloads/",
  90. "license": [
  91. "MIT"
  92. ],
  93. "authors": [
  94. {
  95. "name": "Ian Webster",
  96. "email": "ianw_php@ianww.com"
  97. }
  98. ],
  99. "description": "Utils for implementing the Discord Interactions API",
  100. "keywords": [
  101. "discord"
  102. ],
  103. "support": {
  104. "issues": "https://github.com/discord/discord-interactions-php/issues",
  105. "source": "https://github.com/discord/discord-interactions-php/tree/2.2.0"
  106. },
  107. "install-path": "../discord/interactions"
  108. },
  109. {
  110. "name": "evenement/evenement",
  111. "version": "v3.0.1",
  112. "version_normalized": "3.0.1.0",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/igorw/evenement.git",
  116. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/igorw/evenement/zipball/531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  121. "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "php": ">=7.0"
  126. },
  127. "require-dev": {
  128. "phpunit/phpunit": "^6.0"
  129. },
  130. "time": "2017-07-23T21:35:13+00:00",
  131. "type": "library",
  132. "installation-source": "dist",
  133. "autoload": {
  134. "psr-0": {
  135. "Evenement": "src"
  136. }
  137. },
  138. "notification-url": "https://packagist.org/downloads/",
  139. "license": [
  140. "MIT"
  141. ],
  142. "authors": [
  143. {
  144. "name": "Igor Wiedler",
  145. "email": "igor@wiedler.ch"
  146. }
  147. ],
  148. "description": "Événement is a very simple event dispatching library for PHP",
  149. "keywords": [
  150. "event-dispatcher",
  151. "event-emitter"
  152. ],
  153. "support": {
  154. "issues": "https://github.com/igorw/evenement/issues",
  155. "source": "https://github.com/igorw/evenement/tree/master"
  156. },
  157. "install-path": "../evenement/evenement"
  158. },
  159. {
  160. "name": "fig/http-message-util",
  161. "version": "1.1.5",
  162. "version_normalized": "1.1.5.0",
  163. "source": {
  164. "type": "git",
  165. "url": "https://github.com/php-fig/http-message-util.git",
  166. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  167. },
  168. "dist": {
  169. "type": "zip",
  170. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  171. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  172. "shasum": ""
  173. },
  174. "require": {
  175. "php": "^5.3 || ^7.0 || ^8.0"
  176. },
  177. "suggest": {
  178. "psr/http-message": "The package containing the PSR-7 interfaces"
  179. },
  180. "time": "2020-11-24T22:02:12+00:00",
  181. "type": "library",
  182. "extra": {
  183. "branch-alias": {
  184. "dev-master": "1.1.x-dev"
  185. }
  186. },
  187. "installation-source": "dist",
  188. "autoload": {
  189. "psr-4": {
  190. "Fig\\Http\\Message\\": "src/"
  191. }
  192. },
  193. "notification-url": "https://packagist.org/downloads/",
  194. "license": [
  195. "MIT"
  196. ],
  197. "authors": [
  198. {
  199. "name": "PHP-FIG",
  200. "homepage": "https://www.php-fig.org/"
  201. }
  202. ],
  203. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  204. "keywords": [
  205. "http",
  206. "http-message",
  207. "psr",
  208. "psr-7",
  209. "request",
  210. "response"
  211. ],
  212. "support": {
  213. "issues": "https://github.com/php-fig/http-message-util/issues",
  214. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  215. },
  216. "install-path": "../fig/http-message-util"
  217. },
  218. {
  219. "name": "guzzlehttp/psr7",
  220. "version": "2.4.3",
  221. "version_normalized": "2.4.3.0",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/guzzle/psr7.git",
  225. "reference": "67c26b443f348a51926030c83481b85718457d3d"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d",
  230. "reference": "67c26b443f348a51926030c83481b85718457d3d",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "php": "^7.2.5 || ^8.0",
  235. "psr/http-factory": "^1.0",
  236. "psr/http-message": "^1.0",
  237. "ralouphie/getallheaders": "^3.0"
  238. },
  239. "provide": {
  240. "psr/http-factory-implementation": "1.0",
  241. "psr/http-message-implementation": "1.0"
  242. },
  243. "require-dev": {
  244. "bamarni/composer-bin-plugin": "^1.8.1",
  245. "http-interop/http-factory-tests": "^0.9",
  246. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  247. },
  248. "suggest": {
  249. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  250. },
  251. "time": "2022-10-26T14:07:24+00:00",
  252. "type": "library",
  253. "extra": {
  254. "bamarni-bin": {
  255. "bin-links": true,
  256. "forward-command": false
  257. },
  258. "branch-alias": {
  259. "dev-master": "2.4-dev"
  260. }
  261. },
  262. "installation-source": "dist",
  263. "autoload": {
  264. "psr-4": {
  265. "GuzzleHttp\\Psr7\\": "src/"
  266. }
  267. },
  268. "notification-url": "https://packagist.org/downloads/",
  269. "license": [
  270. "MIT"
  271. ],
  272. "authors": [
  273. {
  274. "name": "Graham Campbell",
  275. "email": "hello@gjcampbell.co.uk",
  276. "homepage": "https://github.com/GrahamCampbell"
  277. },
  278. {
  279. "name": "Michael Dowling",
  280. "email": "mtdowling@gmail.com",
  281. "homepage": "https://github.com/mtdowling"
  282. },
  283. {
  284. "name": "George Mponos",
  285. "email": "gmponos@gmail.com",
  286. "homepage": "https://github.com/gmponos"
  287. },
  288. {
  289. "name": "Tobias Nyholm",
  290. "email": "tobias.nyholm@gmail.com",
  291. "homepage": "https://github.com/Nyholm"
  292. },
  293. {
  294. "name": "Márk Sági-Kazár",
  295. "email": "mark.sagikazar@gmail.com",
  296. "homepage": "https://github.com/sagikazarmark"
  297. },
  298. {
  299. "name": "Tobias Schultze",
  300. "email": "webmaster@tubo-world.de",
  301. "homepage": "https://github.com/Tobion"
  302. },
  303. {
  304. "name": "Márk Sági-Kazár",
  305. "email": "mark.sagikazar@gmail.com",
  306. "homepage": "https://sagikazarmark.hu"
  307. }
  308. ],
  309. "description": "PSR-7 message implementation that also provides common utility methods",
  310. "keywords": [
  311. "http",
  312. "message",
  313. "psr-7",
  314. "request",
  315. "response",
  316. "stream",
  317. "uri",
  318. "url"
  319. ],
  320. "support": {
  321. "issues": "https://github.com/guzzle/psr7/issues",
  322. "source": "https://github.com/guzzle/psr7/tree/2.4.3"
  323. },
  324. "funding": [
  325. {
  326. "url": "https://github.com/GrahamCampbell",
  327. "type": "github"
  328. },
  329. {
  330. "url": "https://github.com/Nyholm",
  331. "type": "github"
  332. },
  333. {
  334. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  335. "type": "tidelift"
  336. }
  337. ],
  338. "install-path": "../guzzlehttp/psr7"
  339. },
  340. {
  341. "name": "mollie/polyfill-libsodium",
  342. "version": "v1.1.1",
  343. "version_normalized": "1.1.1.0",
  344. "source": {
  345. "type": "git",
  346. "url": "https://github.com/mollie/polyfill-libsodium.git",
  347. "reference": "60351707e048080a2218a97296f88733f050f183"
  348. },
  349. "dist": {
  350. "type": "zip",
  351. "url": "https://api.github.com/repos/mollie/polyfill-libsodium/zipball/60351707e048080a2218a97296f88733f050f183",
  352. "reference": "60351707e048080a2218a97296f88733f050f183",
  353. "shasum": ""
  354. },
  355. "require": {
  356. "php": ">=7.0.0"
  357. },
  358. "suggest": {
  359. "ext-sodium": "The new sodium php extension"
  360. },
  361. "time": "2018-01-22T16:27:22+00:00",
  362. "type": "library",
  363. "installation-source": "dist",
  364. "autoload": {
  365. "files": [
  366. "./bootstrap.php"
  367. ]
  368. },
  369. "notification-url": "https://packagist.org/downloads/",
  370. "license": [
  371. "MIT"
  372. ],
  373. "authors": [
  374. {
  375. "name": "Martijn Smit",
  376. "email": "smit@mollie.com"
  377. },
  378. {
  379. "name": "Willem Stuursma-Ruwen",
  380. "email": "willem@mollie.com"
  381. }
  382. ],
  383. "description": "A polyfill package to transition from the libsodium php extension to the sodium extension. Which is included in PHP 7.2",
  384. "support": {
  385. "issues": "https://github.com/mollie/polyfill-libsodium/issues",
  386. "source": "https://github.com/mollie/polyfill-libsodium/tree/master"
  387. },
  388. "install-path": "../mollie/polyfill-libsodium"
  389. },
  390. {
  391. "name": "monolog/monolog",
  392. "version": "2.9.1",
  393. "version_normalized": "2.9.1.0",
  394. "source": {
  395. "type": "git",
  396. "url": "https://github.com/Seldaek/monolog.git",
  397. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  398. },
  399. "dist": {
  400. "type": "zip",
  401. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  402. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  403. "shasum": ""
  404. },
  405. "require": {
  406. "php": ">=7.2",
  407. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  408. },
  409. "provide": {
  410. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  411. },
  412. "require-dev": {
  413. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  414. "doctrine/couchdb": "~1.0@dev",
  415. "elasticsearch/elasticsearch": "^7 || ^8",
  416. "ext-json": "*",
  417. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  418. "guzzlehttp/guzzle": "^7.4",
  419. "guzzlehttp/psr7": "^2.2",
  420. "mongodb/mongodb": "^1.8",
  421. "php-amqplib/php-amqplib": "~2.4 || ^3",
  422. "phpspec/prophecy": "^1.15",
  423. "phpstan/phpstan": "^0.12.91",
  424. "phpunit/phpunit": "^8.5.14",
  425. "predis/predis": "^1.1 || ^2.0",
  426. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  427. "ruflin/elastica": "^7",
  428. "swiftmailer/swiftmailer": "^5.3|^6.0",
  429. "symfony/mailer": "^5.4 || ^6",
  430. "symfony/mime": "^5.4 || ^6"
  431. },
  432. "suggest": {
  433. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  434. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  435. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  436. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  437. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  438. "ext-mbstring": "Allow to work properly with unicode symbols",
  439. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  440. "ext-openssl": "Required to send log messages using SSL",
  441. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  442. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  443. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  444. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  445. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  446. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  447. },
  448. "time": "2023-02-06T13:44:46+00:00",
  449. "type": "library",
  450. "extra": {
  451. "branch-alias": {
  452. "dev-main": "2.x-dev"
  453. }
  454. },
  455. "installation-source": "dist",
  456. "autoload": {
  457. "psr-4": {
  458. "Monolog\\": "src/Monolog"
  459. }
  460. },
  461. "notification-url": "https://packagist.org/downloads/",
  462. "license": [
  463. "MIT"
  464. ],
  465. "authors": [
  466. {
  467. "name": "Jordi Boggiano",
  468. "email": "j.boggiano@seld.be",
  469. "homepage": "https://seld.be"
  470. }
  471. ],
  472. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  473. "homepage": "https://github.com/Seldaek/monolog",
  474. "keywords": [
  475. "log",
  476. "logging",
  477. "psr-3"
  478. ],
  479. "support": {
  480. "issues": "https://github.com/Seldaek/monolog/issues",
  481. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  482. },
  483. "funding": [
  484. {
  485. "url": "https://github.com/Seldaek",
  486. "type": "github"
  487. },
  488. {
  489. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  490. "type": "tidelift"
  491. }
  492. ],
  493. "install-path": "../monolog/monolog"
  494. },
  495. {
  496. "name": "nesbot/carbon",
  497. "version": "2.66.0",
  498. "version_normalized": "2.66.0.0",
  499. "source": {
  500. "type": "git",
  501. "url": "https://github.com/briannesbitt/Carbon.git",
  502. "reference": "496712849902241f04902033b0441b269effe001"
  503. },
  504. "dist": {
  505. "type": "zip",
  506. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  507. "reference": "496712849902241f04902033b0441b269effe001",
  508. "shasum": ""
  509. },
  510. "require": {
  511. "ext-json": "*",
  512. "php": "^7.1.8 || ^8.0",
  513. "symfony/polyfill-mbstring": "^1.0",
  514. "symfony/polyfill-php80": "^1.16",
  515. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  516. },
  517. "require-dev": {
  518. "doctrine/dbal": "^2.0 || ^3.1.4",
  519. "doctrine/orm": "^2.7",
  520. "friendsofphp/php-cs-fixer": "^3.0",
  521. "kylekatarnls/multi-tester": "^2.0",
  522. "ondrejmirtes/better-reflection": "*",
  523. "phpmd/phpmd": "^2.9",
  524. "phpstan/extension-installer": "^1.0",
  525. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  526. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  527. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  528. "squizlabs/php_codesniffer": "^3.4"
  529. },
  530. "time": "2023-01-29T18:53:47+00:00",
  531. "bin": [
  532. "bin/carbon"
  533. ],
  534. "type": "library",
  535. "extra": {
  536. "branch-alias": {
  537. "dev-3.x": "3.x-dev",
  538. "dev-master": "2.x-dev"
  539. },
  540. "laravel": {
  541. "providers": [
  542. "Carbon\\Laravel\\ServiceProvider"
  543. ]
  544. },
  545. "phpstan": {
  546. "includes": [
  547. "extension.neon"
  548. ]
  549. }
  550. },
  551. "installation-source": "dist",
  552. "autoload": {
  553. "psr-4": {
  554. "Carbon\\": "src/Carbon/"
  555. }
  556. },
  557. "notification-url": "https://packagist.org/downloads/",
  558. "license": [
  559. "MIT"
  560. ],
  561. "authors": [
  562. {
  563. "name": "Brian Nesbitt",
  564. "email": "brian@nesbot.com",
  565. "homepage": "https://markido.com"
  566. },
  567. {
  568. "name": "kylekatarnls",
  569. "homepage": "https://github.com/kylekatarnls"
  570. }
  571. ],
  572. "description": "An API extension for DateTime that supports 281 different languages.",
  573. "homepage": "https://carbon.nesbot.com",
  574. "keywords": [
  575. "date",
  576. "datetime",
  577. "time"
  578. ],
  579. "support": {
  580. "docs": "https://carbon.nesbot.com/docs",
  581. "issues": "https://github.com/briannesbitt/Carbon/issues",
  582. "source": "https://github.com/briannesbitt/Carbon"
  583. },
  584. "funding": [
  585. {
  586. "url": "https://github.com/sponsors/kylekatarnls",
  587. "type": "github"
  588. },
  589. {
  590. "url": "https://opencollective.com/Carbon#sponsor",
  591. "type": "opencollective"
  592. },
  593. {
  594. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  595. "type": "tidelift"
  596. }
  597. ],
  598. "install-path": "../nesbot/carbon"
  599. },
  600. {
  601. "name": "psr/http-factory",
  602. "version": "1.0.1",
  603. "version_normalized": "1.0.1.0",
  604. "source": {
  605. "type": "git",
  606. "url": "https://github.com/php-fig/http-factory.git",
  607. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  608. },
  609. "dist": {
  610. "type": "zip",
  611. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  612. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  613. "shasum": ""
  614. },
  615. "require": {
  616. "php": ">=7.0.0",
  617. "psr/http-message": "^1.0"
  618. },
  619. "time": "2019-04-30T12:38:16+00:00",
  620. "type": "library",
  621. "extra": {
  622. "branch-alias": {
  623. "dev-master": "1.0.x-dev"
  624. }
  625. },
  626. "installation-source": "dist",
  627. "autoload": {
  628. "psr-4": {
  629. "Psr\\Http\\Message\\": "src/"
  630. }
  631. },
  632. "notification-url": "https://packagist.org/downloads/",
  633. "license": [
  634. "MIT"
  635. ],
  636. "authors": [
  637. {
  638. "name": "PHP-FIG",
  639. "homepage": "http://www.php-fig.org/"
  640. }
  641. ],
  642. "description": "Common interfaces for PSR-7 HTTP message factories",
  643. "keywords": [
  644. "factory",
  645. "http",
  646. "message",
  647. "psr",
  648. "psr-17",
  649. "psr-7",
  650. "request",
  651. "response"
  652. ],
  653. "support": {
  654. "source": "https://github.com/php-fig/http-factory/tree/master"
  655. },
  656. "install-path": "../psr/http-factory"
  657. },
  658. {
  659. "name": "psr/http-message",
  660. "version": "1.0.1",
  661. "version_normalized": "1.0.1.0",
  662. "source": {
  663. "type": "git",
  664. "url": "https://github.com/php-fig/http-message.git",
  665. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  666. },
  667. "dist": {
  668. "type": "zip",
  669. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  670. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  671. "shasum": ""
  672. },
  673. "require": {
  674. "php": ">=5.3.0"
  675. },
  676. "time": "2016-08-06T14:39:51+00:00",
  677. "type": "library",
  678. "extra": {
  679. "branch-alias": {
  680. "dev-master": "1.0.x-dev"
  681. }
  682. },
  683. "installation-source": "dist",
  684. "autoload": {
  685. "psr-4": {
  686. "Psr\\Http\\Message\\": "src/"
  687. }
  688. },
  689. "notification-url": "https://packagist.org/downloads/",
  690. "license": [
  691. "MIT"
  692. ],
  693. "authors": [
  694. {
  695. "name": "PHP-FIG",
  696. "homepage": "http://www.php-fig.org/"
  697. }
  698. ],
  699. "description": "Common interface for HTTP messages",
  700. "homepage": "https://github.com/php-fig/http-message",
  701. "keywords": [
  702. "http",
  703. "http-message",
  704. "psr",
  705. "psr-7",
  706. "request",
  707. "response"
  708. ],
  709. "support": {
  710. "source": "https://github.com/php-fig/http-message/tree/master"
  711. },
  712. "install-path": "../psr/http-message"
  713. },
  714. {
  715. "name": "psr/log",
  716. "version": "1.1.4",
  717. "version_normalized": "1.1.4.0",
  718. "source": {
  719. "type": "git",
  720. "url": "https://github.com/php-fig/log.git",
  721. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  722. },
  723. "dist": {
  724. "type": "zip",
  725. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  726. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  727. "shasum": ""
  728. },
  729. "require": {
  730. "php": ">=5.3.0"
  731. },
  732. "time": "2021-05-03T11:20:27+00:00",
  733. "type": "library",
  734. "extra": {
  735. "branch-alias": {
  736. "dev-master": "1.1.x-dev"
  737. }
  738. },
  739. "installation-source": "dist",
  740. "autoload": {
  741. "psr-4": {
  742. "Psr\\Log\\": "Psr/Log/"
  743. }
  744. },
  745. "notification-url": "https://packagist.org/downloads/",
  746. "license": [
  747. "MIT"
  748. ],
  749. "authors": [
  750. {
  751. "name": "PHP-FIG",
  752. "homepage": "https://www.php-fig.org/"
  753. }
  754. ],
  755. "description": "Common interface for logging libraries",
  756. "homepage": "https://github.com/php-fig/log",
  757. "keywords": [
  758. "log",
  759. "psr",
  760. "psr-3"
  761. ],
  762. "support": {
  763. "source": "https://github.com/php-fig/log/tree/1.1.4"
  764. },
  765. "install-path": "../psr/log"
  766. },
  767. {
  768. "name": "ralouphie/getallheaders",
  769. "version": "3.0.3",
  770. "version_normalized": "3.0.3.0",
  771. "source": {
  772. "type": "git",
  773. "url": "https://github.com/ralouphie/getallheaders.git",
  774. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  775. },
  776. "dist": {
  777. "type": "zip",
  778. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  779. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  780. "shasum": ""
  781. },
  782. "require": {
  783. "php": ">=5.6"
  784. },
  785. "require-dev": {
  786. "php-coveralls/php-coveralls": "^2.1",
  787. "phpunit/phpunit": "^5 || ^6.5"
  788. },
  789. "time": "2019-03-08T08:55:37+00:00",
  790. "type": "library",
  791. "installation-source": "dist",
  792. "autoload": {
  793. "files": [
  794. "src/getallheaders.php"
  795. ]
  796. },
  797. "notification-url": "https://packagist.org/downloads/",
  798. "license": [
  799. "MIT"
  800. ],
  801. "authors": [
  802. {
  803. "name": "Ralph Khattar",
  804. "email": "ralph.khattar@gmail.com"
  805. }
  806. ],
  807. "description": "A polyfill for getallheaders.",
  808. "support": {
  809. "issues": "https://github.com/ralouphie/getallheaders/issues",
  810. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  811. },
  812. "install-path": "../ralouphie/getallheaders"
  813. },
  814. {
  815. "name": "ratchet/pawl",
  816. "version": "v0.4.1",
  817. "version_normalized": "0.4.1.0",
  818. "source": {
  819. "type": "git",
  820. "url": "https://github.com/ratchetphp/Pawl.git",
  821. "reference": "af70198bab77a582b31169d3cc3982bed25c161f"
  822. },
  823. "dist": {
  824. "type": "zip",
  825. "url": "https://api.github.com/repos/ratchetphp/Pawl/zipball/af70198bab77a582b31169d3cc3982bed25c161f",
  826. "reference": "af70198bab77a582b31169d3cc3982bed25c161f",
  827. "shasum": ""
  828. },
  829. "require": {
  830. "evenement/evenement": "^3.0 || ^2.0",
  831. "guzzlehttp/psr7": "^2.0 || ^1.7",
  832. "php": ">=5.4",
  833. "ratchet/rfc6455": "^0.3.1",
  834. "react/socket": "^1.9"
  835. },
  836. "require-dev": {
  837. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8"
  838. },
  839. "suggest": {
  840. "reactivex/rxphp": "~2.0"
  841. },
  842. "time": "2021-12-10T14:32:34+00:00",
  843. "type": "library",
  844. "installation-source": "dist",
  845. "autoload": {
  846. "files": [
  847. "src/functions_include.php"
  848. ],
  849. "psr-4": {
  850. "Ratchet\\Client\\": "src"
  851. }
  852. },
  853. "notification-url": "https://packagist.org/downloads/",
  854. "license": [
  855. "MIT"
  856. ],
  857. "description": "Asynchronous WebSocket client",
  858. "keywords": [
  859. "Ratchet",
  860. "async",
  861. "client",
  862. "websocket",
  863. "websocket client"
  864. ],
  865. "support": {
  866. "issues": "https://github.com/ratchetphp/Pawl/issues",
  867. "source": "https://github.com/ratchetphp/Pawl/tree/v0.4.1"
  868. },
  869. "install-path": "../ratchet/pawl"
  870. },
  871. {
  872. "name": "ratchet/rfc6455",
  873. "version": "v0.3.1",
  874. "version_normalized": "0.3.1.0",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/ratchetphp/RFC6455.git",
  878. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  883. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  884. "shasum": ""
  885. },
  886. "require": {
  887. "guzzlehttp/psr7": "^2 || ^1.7",
  888. "php": ">=5.4.2"
  889. },
  890. "require-dev": {
  891. "phpunit/phpunit": "^5.7",
  892. "react/socket": "^1.3"
  893. },
  894. "time": "2021-12-09T23:20:49+00:00",
  895. "type": "library",
  896. "installation-source": "dist",
  897. "autoload": {
  898. "psr-4": {
  899. "Ratchet\\RFC6455\\": "src"
  900. }
  901. },
  902. "notification-url": "https://packagist.org/downloads/",
  903. "license": [
  904. "MIT"
  905. ],
  906. "authors": [
  907. {
  908. "name": "Chris Boden",
  909. "email": "cboden@gmail.com",
  910. "role": "Developer"
  911. },
  912. {
  913. "name": "Matt Bonneau",
  914. "role": "Developer"
  915. }
  916. ],
  917. "description": "RFC6455 WebSocket protocol handler",
  918. "homepage": "http://socketo.me",
  919. "keywords": [
  920. "WebSockets",
  921. "rfc6455",
  922. "websocket"
  923. ],
  924. "support": {
  925. "chat": "https://gitter.im/reactphp/reactphp",
  926. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  927. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  928. },
  929. "install-path": "../ratchet/rfc6455"
  930. },
  931. {
  932. "name": "react/cache",
  933. "version": "v1.2.0",
  934. "version_normalized": "1.2.0.0",
  935. "source": {
  936. "type": "git",
  937. "url": "https://github.com/reactphp/cache.git",
  938. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  939. },
  940. "dist": {
  941. "type": "zip",
  942. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  943. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  944. "shasum": ""
  945. },
  946. "require": {
  947. "php": ">=5.3.0",
  948. "react/promise": "^3.0 || ^2.0 || ^1.1"
  949. },
  950. "require-dev": {
  951. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  952. },
  953. "time": "2022-11-30T15:59:55+00:00",
  954. "type": "library",
  955. "installation-source": "dist",
  956. "autoload": {
  957. "psr-4": {
  958. "React\\Cache\\": "src/"
  959. }
  960. },
  961. "notification-url": "https://packagist.org/downloads/",
  962. "license": [
  963. "MIT"
  964. ],
  965. "authors": [
  966. {
  967. "name": "Christian Lück",
  968. "email": "christian@clue.engineering",
  969. "homepage": "https://clue.engineering/"
  970. },
  971. {
  972. "name": "Cees-Jan Kiewiet",
  973. "email": "reactphp@ceesjankiewiet.nl",
  974. "homepage": "https://wyrihaximus.net/"
  975. },
  976. {
  977. "name": "Jan Sorgalla",
  978. "email": "jsorgalla@gmail.com",
  979. "homepage": "https://sorgalla.com/"
  980. },
  981. {
  982. "name": "Chris Boden",
  983. "email": "cboden@gmail.com",
  984. "homepage": "https://cboden.dev/"
  985. }
  986. ],
  987. "description": "Async, Promise-based cache interface for ReactPHP",
  988. "keywords": [
  989. "cache",
  990. "caching",
  991. "promise",
  992. "reactphp"
  993. ],
  994. "support": {
  995. "issues": "https://github.com/reactphp/cache/issues",
  996. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  997. },
  998. "funding": [
  999. {
  1000. "url": "https://opencollective.com/reactphp",
  1001. "type": "open_collective"
  1002. }
  1003. ],
  1004. "install-path": "../react/cache"
  1005. },
  1006. {
  1007. "name": "react/child-process",
  1008. "version": "v0.6.5",
  1009. "version_normalized": "0.6.5.0",
  1010. "source": {
  1011. "type": "git",
  1012. "url": "https://github.com/reactphp/child-process.git",
  1013. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  1014. },
  1015. "dist": {
  1016. "type": "zip",
  1017. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  1018. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  1019. "shasum": ""
  1020. },
  1021. "require": {
  1022. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  1023. "php": ">=5.3.0",
  1024. "react/event-loop": "^1.2",
  1025. "react/stream": "^1.2"
  1026. },
  1027. "require-dev": {
  1028. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  1029. "react/socket": "^1.8",
  1030. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  1031. },
  1032. "time": "2022-09-16T13:41:56+00:00",
  1033. "type": "library",
  1034. "installation-source": "dist",
  1035. "autoload": {
  1036. "psr-4": {
  1037. "React\\ChildProcess\\": "src"
  1038. }
  1039. },
  1040. "notification-url": "https://packagist.org/downloads/",
  1041. "license": [
  1042. "MIT"
  1043. ],
  1044. "authors": [
  1045. {
  1046. "name": "Christian Lück",
  1047. "email": "christian@clue.engineering",
  1048. "homepage": "https://clue.engineering/"
  1049. },
  1050. {
  1051. "name": "Cees-Jan Kiewiet",
  1052. "email": "reactphp@ceesjankiewiet.nl",
  1053. "homepage": "https://wyrihaximus.net/"
  1054. },
  1055. {
  1056. "name": "Jan Sorgalla",
  1057. "email": "jsorgalla@gmail.com",
  1058. "homepage": "https://sorgalla.com/"
  1059. },
  1060. {
  1061. "name": "Chris Boden",
  1062. "email": "cboden@gmail.com",
  1063. "homepage": "https://cboden.dev/"
  1064. }
  1065. ],
  1066. "description": "Event-driven library for executing child processes with ReactPHP.",
  1067. "keywords": [
  1068. "event-driven",
  1069. "process",
  1070. "reactphp"
  1071. ],
  1072. "support": {
  1073. "issues": "https://github.com/reactphp/child-process/issues",
  1074. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  1075. },
  1076. "funding": [
  1077. {
  1078. "url": "https://github.com/WyriHaximus",
  1079. "type": "github"
  1080. },
  1081. {
  1082. "url": "https://github.com/clue",
  1083. "type": "github"
  1084. }
  1085. ],
  1086. "install-path": "../react/child-process"
  1087. },
  1088. {
  1089. "name": "react/datagram",
  1090. "version": "v1.5.0",
  1091. "version_normalized": "1.5.0.0",
  1092. "source": {
  1093. "type": "git",
  1094. "url": "https://github.com/reactphp/datagram.git",
  1095. "reference": "e4c5bf8daf44630f0a938f40fe2104b2b76ad2ff"
  1096. },
  1097. "dist": {
  1098. "type": "zip",
  1099. "url": "https://api.github.com/repos/reactphp/datagram/zipball/e4c5bf8daf44630f0a938f40fe2104b2b76ad2ff",
  1100. "reference": "e4c5bf8daf44630f0a938f40fe2104b2b76ad2ff",
  1101. "shasum": ""
  1102. },
  1103. "require": {
  1104. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  1105. "php": ">=5.3",
  1106. "react/dns": "^1.0 || ^0.4.13",
  1107. "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3",
  1108. "react/promise": "~2.1|~1.2"
  1109. },
  1110. "require-dev": {
  1111. "clue/block-react": "~1.0",
  1112. "phpunit/phpunit": "^5.0 || ^4.8"
  1113. },
  1114. "time": "2019-07-10T10:04:15+00:00",
  1115. "type": "library",
  1116. "installation-source": "dist",
  1117. "autoload": {
  1118. "psr-4": {
  1119. "React\\Datagram\\": "src"
  1120. }
  1121. },
  1122. "notification-url": "https://packagist.org/downloads/",
  1123. "license": [
  1124. "MIT"
  1125. ],
  1126. "authors": [
  1127. {
  1128. "name": "Christian Lück",
  1129. "email": "christian@lueck.tv"
  1130. }
  1131. ],
  1132. "description": "Event-driven UDP datagram socket client and server for ReactPHP",
  1133. "homepage": "https://github.com/reactphp/datagram",
  1134. "keywords": [
  1135. "Socket",
  1136. "async",
  1137. "client",
  1138. "datagram",
  1139. "dgram",
  1140. "reactphp",
  1141. "server",
  1142. "udp"
  1143. ],
  1144. "support": {
  1145. "issues": "https://github.com/reactphp/datagram/issues",
  1146. "source": "https://github.com/reactphp/datagram/tree/v1.5.0"
  1147. },
  1148. "install-path": "../react/datagram"
  1149. },
  1150. {
  1151. "name": "react/dns",
  1152. "version": "v1.10.0",
  1153. "version_normalized": "1.10.0.0",
  1154. "source": {
  1155. "type": "git",
  1156. "url": "https://github.com/reactphp/dns.git",
  1157. "reference": "a5427e7dfa47713e438016905605819d101f238c"
  1158. },
  1159. "dist": {
  1160. "type": "zip",
  1161. "url": "https://api.github.com/repos/reactphp/dns/zipball/a5427e7dfa47713e438016905605819d101f238c",
  1162. "reference": "a5427e7dfa47713e438016905605819d101f238c",
  1163. "shasum": ""
  1164. },
  1165. "require": {
  1166. "php": ">=5.3.0",
  1167. "react/cache": "^1.0 || ^0.6 || ^0.5",
  1168. "react/event-loop": "^1.2",
  1169. "react/promise": "^3.0 || ^2.7 || ^1.2.1",
  1170. "react/promise-timer": "^1.9"
  1171. },
  1172. "require-dev": {
  1173. "phpunit/phpunit": "^9.3 || ^4.8.35",
  1174. "react/async": "^4 || ^3 || ^2"
  1175. },
  1176. "time": "2022-09-08T12:22:46+00:00",
  1177. "type": "library",
  1178. "installation-source": "dist",
  1179. "autoload": {
  1180. "psr-4": {
  1181. "React\\Dns\\": "src"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "MIT"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "Christian Lück",
  1191. "email": "christian@clue.engineering",
  1192. "homepage": "https://clue.engineering/"
  1193. },
  1194. {
  1195. "name": "Cees-Jan Kiewiet",
  1196. "email": "reactphp@ceesjankiewiet.nl",
  1197. "homepage": "https://wyrihaximus.net/"
  1198. },
  1199. {
  1200. "name": "Jan Sorgalla",
  1201. "email": "jsorgalla@gmail.com",
  1202. "homepage": "https://sorgalla.com/"
  1203. },
  1204. {
  1205. "name": "Chris Boden",
  1206. "email": "cboden@gmail.com",
  1207. "homepage": "https://cboden.dev/"
  1208. }
  1209. ],
  1210. "description": "Async DNS resolver for ReactPHP",
  1211. "keywords": [
  1212. "async",
  1213. "dns",
  1214. "dns-resolver",
  1215. "reactphp"
  1216. ],
  1217. "support": {
  1218. "issues": "https://github.com/reactphp/dns/issues",
  1219. "source": "https://github.com/reactphp/dns/tree/v1.10.0"
  1220. },
  1221. "funding": [
  1222. {
  1223. "url": "https://github.com/WyriHaximus",
  1224. "type": "github"
  1225. },
  1226. {
  1227. "url": "https://github.com/clue",
  1228. "type": "github"
  1229. }
  1230. ],
  1231. "install-path": "../react/dns"
  1232. },
  1233. {
  1234. "name": "react/event-loop",
  1235. "version": "v1.3.0",
  1236. "version_normalized": "1.3.0.0",
  1237. "source": {
  1238. "type": "git",
  1239. "url": "https://github.com/reactphp/event-loop.git",
  1240. "reference": "187fb56f46d424afb6ec4ad089269c72eec2e137"
  1241. },
  1242. "dist": {
  1243. "type": "zip",
  1244. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/187fb56f46d424afb6ec4ad089269c72eec2e137",
  1245. "reference": "187fb56f46d424afb6ec4ad089269c72eec2e137",
  1246. "shasum": ""
  1247. },
  1248. "require": {
  1249. "php": ">=5.3.0"
  1250. },
  1251. "require-dev": {
  1252. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
  1253. },
  1254. "suggest": {
  1255. "ext-event": "~1.0 for ExtEventLoop",
  1256. "ext-pcntl": "For signal handling support when using the StreamSelectLoop",
  1257. "ext-uv": "* for ExtUvLoop"
  1258. },
  1259. "time": "2022-03-17T11:10:22+00:00",
  1260. "type": "library",
  1261. "installation-source": "dist",
  1262. "autoload": {
  1263. "psr-4": {
  1264. "React\\EventLoop\\": "src"
  1265. }
  1266. },
  1267. "notification-url": "https://packagist.org/downloads/",
  1268. "license": [
  1269. "MIT"
  1270. ],
  1271. "authors": [
  1272. {
  1273. "name": "Christian Lück",
  1274. "email": "christian@clue.engineering",
  1275. "homepage": "https://clue.engineering/"
  1276. },
  1277. {
  1278. "name": "Cees-Jan Kiewiet",
  1279. "email": "reactphp@ceesjankiewiet.nl",
  1280. "homepage": "https://wyrihaximus.net/"
  1281. },
  1282. {
  1283. "name": "Jan Sorgalla",
  1284. "email": "jsorgalla@gmail.com",
  1285. "homepage": "https://sorgalla.com/"
  1286. },
  1287. {
  1288. "name": "Chris Boden",
  1289. "email": "cboden@gmail.com",
  1290. "homepage": "https://cboden.dev/"
  1291. }
  1292. ],
  1293. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  1294. "keywords": [
  1295. "asynchronous",
  1296. "event-loop"
  1297. ],
  1298. "support": {
  1299. "issues": "https://github.com/reactphp/event-loop/issues",
  1300. "source": "https://github.com/reactphp/event-loop/tree/v1.3.0"
  1301. },
  1302. "funding": [
  1303. {
  1304. "url": "https://github.com/WyriHaximus",
  1305. "type": "github"
  1306. },
  1307. {
  1308. "url": "https://github.com/clue",
  1309. "type": "github"
  1310. }
  1311. ],
  1312. "install-path": "../react/event-loop"
  1313. },
  1314. {
  1315. "name": "react/http",
  1316. "version": "v1.8.0",
  1317. "version_normalized": "1.8.0.0",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/reactphp/http.git",
  1321. "reference": "aa7512ee17258c88466de30f9cb44ec5f9df3ff3"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/reactphp/http/zipball/aa7512ee17258c88466de30f9cb44ec5f9df3ff3",
  1326. "reference": "aa7512ee17258c88466de30f9cb44ec5f9df3ff3",
  1327. "shasum": ""
  1328. },
  1329. "require": {
  1330. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  1331. "fig/http-message-util": "^1.1",
  1332. "php": ">=5.3.0",
  1333. "psr/http-message": "^1.0",
  1334. "react/event-loop": "^1.2",
  1335. "react/promise": "^3 || ^2.3 || ^1.2.1",
  1336. "react/promise-stream": "^1.4",
  1337. "react/socket": "^1.12",
  1338. "react/stream": "^1.2",
  1339. "ringcentral/psr7": "^1.2"
  1340. },
  1341. "require-dev": {
  1342. "clue/http-proxy-react": "^1.8",
  1343. "clue/reactphp-ssh-proxy": "^1.4",
  1344. "clue/socks-react": "^1.4",
  1345. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  1346. "react/async": "^4 || ^3 || ^2",
  1347. "react/promise-timer": "^1.9"
  1348. },
  1349. "time": "2022-09-29T12:55:52+00:00",
  1350. "type": "library",
  1351. "installation-source": "dist",
  1352. "autoload": {
  1353. "psr-4": {
  1354. "React\\Http\\": "src"
  1355. }
  1356. },
  1357. "notification-url": "https://packagist.org/downloads/",
  1358. "license": [
  1359. "MIT"
  1360. ],
  1361. "authors": [
  1362. {
  1363. "name": "Christian Lück",
  1364. "email": "christian@clue.engineering",
  1365. "homepage": "https://clue.engineering/"
  1366. },
  1367. {
  1368. "name": "Cees-Jan Kiewiet",
  1369. "email": "reactphp@ceesjankiewiet.nl",
  1370. "homepage": "https://wyrihaximus.net/"
  1371. },
  1372. {
  1373. "name": "Jan Sorgalla",
  1374. "email": "jsorgalla@gmail.com",
  1375. "homepage": "https://sorgalla.com/"
  1376. },
  1377. {
  1378. "name": "Chris Boden",
  1379. "email": "cboden@gmail.com",
  1380. "homepage": "https://cboden.dev/"
  1381. }
  1382. ],
  1383. "description": "Event-driven, streaming HTTP client and server implementation for ReactPHP",
  1384. "keywords": [
  1385. "async",
  1386. "client",
  1387. "event-driven",
  1388. "http",
  1389. "http client",
  1390. "http server",
  1391. "https",
  1392. "psr-7",
  1393. "reactphp",
  1394. "server",
  1395. "streaming"
  1396. ],
  1397. "support": {
  1398. "issues": "https://github.com/reactphp/http/issues",
  1399. "source": "https://github.com/reactphp/http/tree/v1.8.0"
  1400. },
  1401. "funding": [
  1402. {
  1403. "url": "https://github.com/WyriHaximus",
  1404. "type": "github"
  1405. },
  1406. {
  1407. "url": "https://github.com/clue",
  1408. "type": "github"
  1409. }
  1410. ],
  1411. "install-path": "../react/http"
  1412. },
  1413. {
  1414. "name": "react/partial",
  1415. "version": "v3.0.0",
  1416. "version_normalized": "3.0.0.0",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://github.com/friends-of-reactphp/partial.git",
  1420. "reference": "e06f034747561977670607888e0a99fd282308ab"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://api.github.com/repos/friends-of-reactphp/partial/zipball/e06f034747561977670607888e0a99fd282308ab",
  1425. "reference": "e06f034747561977670607888e0a99fd282308ab",
  1426. "shasum": ""
  1427. },
  1428. "require": {
  1429. "php": ">=5.6"
  1430. },
  1431. "require-dev": {
  1432. "phpunit/phpunit": "^5.7"
  1433. },
  1434. "time": "2017-10-01T13:27:11+00:00",
  1435. "type": "library",
  1436. "installation-source": "dist",
  1437. "autoload": {
  1438. "files": [
  1439. "src/functions.php"
  1440. ],
  1441. "psr-4": {
  1442. "React\\Partial\\": "src/"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "description": "Partial function application.",
  1450. "keywords": [
  1451. "functional-programming",
  1452. "partial"
  1453. ],
  1454. "support": {
  1455. "issues": "https://github.com/friends-of-reactphp/partial/issues",
  1456. "source": "https://github.com/friends-of-reactphp/partial/tree/v3.0.0"
  1457. },
  1458. "install-path": "../react/partial"
  1459. },
  1460. {
  1461. "name": "react/promise",
  1462. "version": "v2.9.0",
  1463. "version_normalized": "2.9.0.0",
  1464. "source": {
  1465. "type": "git",
  1466. "url": "https://github.com/reactphp/promise.git",
  1467. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910"
  1468. },
  1469. "dist": {
  1470. "type": "zip",
  1471. "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  1472. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  1473. "shasum": ""
  1474. },
  1475. "require": {
  1476. "php": ">=5.4.0"
  1477. },
  1478. "require-dev": {
  1479. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  1480. },
  1481. "time": "2022-02-11T10:27:51+00:00",
  1482. "type": "library",
  1483. "installation-source": "dist",
  1484. "autoload": {
  1485. "files": [
  1486. "src/functions_include.php"
  1487. ],
  1488. "psr-4": {
  1489. "React\\Promise\\": "src/"
  1490. }
  1491. },
  1492. "notification-url": "https://packagist.org/downloads/",
  1493. "license": [
  1494. "MIT"
  1495. ],
  1496. "authors": [
  1497. {
  1498. "name": "Jan Sorgalla",
  1499. "email": "jsorgalla@gmail.com",
  1500. "homepage": "https://sorgalla.com/"
  1501. },
  1502. {
  1503. "name": "Christian Lück",
  1504. "email": "christian@clue.engineering",
  1505. "homepage": "https://clue.engineering/"
  1506. },
  1507. {
  1508. "name": "Cees-Jan Kiewiet",
  1509. "email": "reactphp@ceesjankiewiet.nl",
  1510. "homepage": "https://wyrihaximus.net/"
  1511. },
  1512. {
  1513. "name": "Chris Boden",
  1514. "email": "cboden@gmail.com",
  1515. "homepage": "https://cboden.dev/"
  1516. }
  1517. ],
  1518. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  1519. "keywords": [
  1520. "promise",
  1521. "promises"
  1522. ],
  1523. "support": {
  1524. "issues": "https://github.com/reactphp/promise/issues",
  1525. "source": "https://github.com/reactphp/promise/tree/v2.9.0"
  1526. },
  1527. "funding": [
  1528. {
  1529. "url": "https://github.com/WyriHaximus",
  1530. "type": "github"
  1531. },
  1532. {
  1533. "url": "https://github.com/clue",
  1534. "type": "github"
  1535. }
  1536. ],
  1537. "install-path": "../react/promise"
  1538. },
  1539. {
  1540. "name": "react/promise-stream",
  1541. "version": "v1.5.0",
  1542. "version_normalized": "1.5.0.0",
  1543. "source": {
  1544. "type": "git",
  1545. "url": "https://github.com/reactphp/promise-stream.git",
  1546. "reference": "e6d2805e09ad50c4896f65f5e8705fe4ee7731a3"
  1547. },
  1548. "dist": {
  1549. "type": "zip",
  1550. "url": "https://api.github.com/repos/reactphp/promise-stream/zipball/e6d2805e09ad50c4896f65f5e8705fe4ee7731a3",
  1551. "reference": "e6d2805e09ad50c4896f65f5e8705fe4ee7731a3",
  1552. "shasum": ""
  1553. },
  1554. "require": {
  1555. "php": ">=5.3",
  1556. "react/promise": "^3 || ^2.1 || ^1.2",
  1557. "react/stream": "^1.0 || ^0.7 || ^0.6 || ^0.5 || ^0.4.6"
  1558. },
  1559. "require-dev": {
  1560. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
  1561. },
  1562. "time": "2022-09-09T11:42:18+00:00",
  1563. "type": "library",
  1564. "installation-source": "dist",
  1565. "autoload": {
  1566. "files": [
  1567. "src/functions_include.php"
  1568. ],
  1569. "psr-4": {
  1570. "React\\Promise\\Stream\\": "src/"
  1571. }
  1572. },
  1573. "notification-url": "https://packagist.org/downloads/",
  1574. "license": [
  1575. "MIT"
  1576. ],
  1577. "authors": [
  1578. {
  1579. "name": "Christian Lück",
  1580. "email": "christian@clue.engineering",
  1581. "homepage": "https://clue.engineering/"
  1582. },
  1583. {
  1584. "name": "Cees-Jan Kiewiet",
  1585. "email": "reactphp@ceesjankiewiet.nl",
  1586. "homepage": "https://wyrihaximus.net/"
  1587. },
  1588. {
  1589. "name": "Jan Sorgalla",
  1590. "email": "jsorgalla@gmail.com",
  1591. "homepage": "https://sorgalla.com/"
  1592. },
  1593. {
  1594. "name": "Chris Boden",
  1595. "email": "cboden@gmail.com",
  1596. "homepage": "https://cboden.dev/"
  1597. }
  1598. ],
  1599. "description": "The missing link between Promise-land and Stream-land for ReactPHP",
  1600. "homepage": "https://github.com/reactphp/promise-stream",
  1601. "keywords": [
  1602. "Buffer",
  1603. "async",
  1604. "promise",
  1605. "reactphp",
  1606. "stream",
  1607. "unwrap"
  1608. ],
  1609. "support": {
  1610. "issues": "https://github.com/reactphp/promise-stream/issues",
  1611. "source": "https://github.com/reactphp/promise-stream/tree/v1.5.0"
  1612. },
  1613. "funding": [
  1614. {
  1615. "url": "https://github.com/WyriHaximus",
  1616. "type": "github"
  1617. },
  1618. {
  1619. "url": "https://github.com/clue",
  1620. "type": "github"
  1621. }
  1622. ],
  1623. "install-path": "../react/promise-stream"
  1624. },
  1625. {
  1626. "name": "react/promise-timer",
  1627. "version": "v1.9.0",
  1628. "version_normalized": "1.9.0.0",
  1629. "source": {
  1630. "type": "git",
  1631. "url": "https://github.com/reactphp/promise-timer.git",
  1632. "reference": "aa7a73c74b8d8c0f622f5982ff7b0351bc29e495"
  1633. },
  1634. "dist": {
  1635. "type": "zip",
  1636. "url": "https://api.github.com/repos/reactphp/promise-timer/zipball/aa7a73c74b8d8c0f622f5982ff7b0351bc29e495",
  1637. "reference": "aa7a73c74b8d8c0f622f5982ff7b0351bc29e495",
  1638. "shasum": ""
  1639. },
  1640. "require": {
  1641. "php": ">=5.3",
  1642. "react/event-loop": "^1.2",
  1643. "react/promise": "^3.0 || ^2.7.0 || ^1.2.1"
  1644. },
  1645. "require-dev": {
  1646. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
  1647. },
  1648. "time": "2022-06-13T13:41:03+00:00",
  1649. "type": "library",
  1650. "installation-source": "dist",
  1651. "autoload": {
  1652. "files": [
  1653. "src/functions_include.php"
  1654. ],
  1655. "psr-4": {
  1656. "React\\Promise\\Timer\\": "src/"
  1657. }
  1658. },
  1659. "notification-url": "https://packagist.org/downloads/",
  1660. "license": [
  1661. "MIT"
  1662. ],
  1663. "authors": [
  1664. {
  1665. "name": "Christian Lück",
  1666. "email": "christian@clue.engineering",
  1667. "homepage": "https://clue.engineering/"
  1668. },
  1669. {
  1670. "name": "Cees-Jan Kiewiet",
  1671. "email": "reactphp@ceesjankiewiet.nl",
  1672. "homepage": "https://wyrihaximus.net/"
  1673. },
  1674. {
  1675. "name": "Jan Sorgalla",
  1676. "email": "jsorgalla@gmail.com",
  1677. "homepage": "https://sorgalla.com/"
  1678. },
  1679. {
  1680. "name": "Chris Boden",
  1681. "email": "cboden@gmail.com",
  1682. "homepage": "https://cboden.dev/"
  1683. }
  1684. ],
  1685. "description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.",
  1686. "homepage": "https://github.com/reactphp/promise-timer",
  1687. "keywords": [
  1688. "async",
  1689. "event-loop",
  1690. "promise",
  1691. "reactphp",
  1692. "timeout",
  1693. "timer"
  1694. ],
  1695. "support": {
  1696. "issues": "https://github.com/reactphp/promise-timer/issues",
  1697. "source": "https://github.com/reactphp/promise-timer/tree/v1.9.0"
  1698. },
  1699. "funding": [
  1700. {
  1701. "url": "https://github.com/WyriHaximus",
  1702. "type": "github"
  1703. },
  1704. {
  1705. "url": "https://github.com/clue",
  1706. "type": "github"
  1707. }
  1708. ],
  1709. "install-path": "../react/promise-timer"
  1710. },
  1711. {
  1712. "name": "react/socket",
  1713. "version": "v1.12.0",
  1714. "version_normalized": "1.12.0.0",
  1715. "source": {
  1716. "type": "git",
  1717. "url": "https://github.com/reactphp/socket.git",
  1718. "reference": "81e1b4d7f5450ebd8d2e9a95bb008bb15ca95a7b"
  1719. },
  1720. "dist": {
  1721. "type": "zip",
  1722. "url": "https://api.github.com/repos/reactphp/socket/zipball/81e1b4d7f5450ebd8d2e9a95bb008bb15ca95a7b",
  1723. "reference": "81e1b4d7f5450ebd8d2e9a95bb008bb15ca95a7b",
  1724. "shasum": ""
  1725. },
  1726. "require": {
  1727. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  1728. "php": ">=5.3.0",
  1729. "react/dns": "^1.8",
  1730. "react/event-loop": "^1.2",
  1731. "react/promise": "^3 || ^2.6 || ^1.2.1",
  1732. "react/promise-timer": "^1.9",
  1733. "react/stream": "^1.2"
  1734. },
  1735. "require-dev": {
  1736. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  1737. "react/async": "^4 || ^3 || ^2",
  1738. "react/promise-stream": "^1.4"
  1739. },
  1740. "time": "2022-08-25T12:32:25+00:00",
  1741. "type": "library",
  1742. "installation-source": "dist",
  1743. "autoload": {
  1744. "psr-4": {
  1745. "React\\Socket\\": "src"
  1746. }
  1747. },
  1748. "notification-url": "https://packagist.org/downloads/",
  1749. "license": [
  1750. "MIT"
  1751. ],
  1752. "authors": [
  1753. {
  1754. "name": "Christian Lück",
  1755. "email": "christian@clue.engineering",
  1756. "homepage": "https://clue.engineering/"
  1757. },
  1758. {
  1759. "name": "Cees-Jan Kiewiet",
  1760. "email": "reactphp@ceesjankiewiet.nl",
  1761. "homepage": "https://wyrihaximus.net/"
  1762. },
  1763. {
  1764. "name": "Jan Sorgalla",
  1765. "email": "jsorgalla@gmail.com",
  1766. "homepage": "https://sorgalla.com/"
  1767. },
  1768. {
  1769. "name": "Chris Boden",
  1770. "email": "cboden@gmail.com",
  1771. "homepage": "https://cboden.dev/"
  1772. }
  1773. ],
  1774. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  1775. "keywords": [
  1776. "Connection",
  1777. "Socket",
  1778. "async",
  1779. "reactphp",
  1780. "stream"
  1781. ],
  1782. "support": {
  1783. "issues": "https://github.com/reactphp/socket/issues",
  1784. "source": "https://github.com/reactphp/socket/tree/v1.12.0"
  1785. },
  1786. "funding": [
  1787. {
  1788. "url": "https://github.com/WyriHaximus",
  1789. "type": "github"
  1790. },
  1791. {
  1792. "url": "https://github.com/clue",
  1793. "type": "github"
  1794. }
  1795. ],
  1796. "install-path": "../react/socket"
  1797. },
  1798. {
  1799. "name": "react/stream",
  1800. "version": "v1.2.0",
  1801. "version_normalized": "1.2.0.0",
  1802. "source": {
  1803. "type": "git",
  1804. "url": "https://github.com/reactphp/stream.git",
  1805. "reference": "7a423506ee1903e89f1e08ec5f0ed430ff784ae9"
  1806. },
  1807. "dist": {
  1808. "type": "zip",
  1809. "url": "https://api.github.com/repos/reactphp/stream/zipball/7a423506ee1903e89f1e08ec5f0ed430ff784ae9",
  1810. "reference": "7a423506ee1903e89f1e08ec5f0ed430ff784ae9",
  1811. "shasum": ""
  1812. },
  1813. "require": {
  1814. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  1815. "php": ">=5.3.8",
  1816. "react/event-loop": "^1.2"
  1817. },
  1818. "require-dev": {
  1819. "clue/stream-filter": "~1.2",
  1820. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
  1821. },
  1822. "time": "2021-07-11T12:37:55+00:00",
  1823. "type": "library",
  1824. "installation-source": "dist",
  1825. "autoload": {
  1826. "psr-4": {
  1827. "React\\Stream\\": "src"
  1828. }
  1829. },
  1830. "notification-url": "https://packagist.org/downloads/",
  1831. "license": [
  1832. "MIT"
  1833. ],
  1834. "authors": [
  1835. {
  1836. "name": "Christian Lück",
  1837. "email": "christian@clue.engineering",
  1838. "homepage": "https://clue.engineering/"
  1839. },
  1840. {
  1841. "name": "Cees-Jan Kiewiet",
  1842. "email": "reactphp@ceesjankiewiet.nl",
  1843. "homepage": "https://wyrihaximus.net/"
  1844. },
  1845. {
  1846. "name": "Jan Sorgalla",
  1847. "email": "jsorgalla@gmail.com",
  1848. "homepage": "https://sorgalla.com/"
  1849. },
  1850. {
  1851. "name": "Chris Boden",
  1852. "email": "cboden@gmail.com",
  1853. "homepage": "https://cboden.dev/"
  1854. }
  1855. ],
  1856. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  1857. "keywords": [
  1858. "event-driven",
  1859. "io",
  1860. "non-blocking",
  1861. "pipe",
  1862. "reactphp",
  1863. "readable",
  1864. "stream",
  1865. "writable"
  1866. ],
  1867. "support": {
  1868. "issues": "https://github.com/reactphp/stream/issues",
  1869. "source": "https://github.com/reactphp/stream/tree/v1.2.0"
  1870. },
  1871. "funding": [
  1872. {
  1873. "url": "https://github.com/WyriHaximus",
  1874. "type": "github"
  1875. },
  1876. {
  1877. "url": "https://github.com/clue",
  1878. "type": "github"
  1879. }
  1880. ],
  1881. "install-path": "../react/stream"
  1882. },
  1883. {
  1884. "name": "ringcentral/psr7",
  1885. "version": "1.3.0",
  1886. "version_normalized": "1.3.0.0",
  1887. "source": {
  1888. "type": "git",
  1889. "url": "https://github.com/ringcentral/psr7.git",
  1890. "reference": "360faaec4b563958b673fb52bbe94e37f14bc686"
  1891. },
  1892. "dist": {
  1893. "type": "zip",
  1894. "url": "https://api.github.com/repos/ringcentral/psr7/zipball/360faaec4b563958b673fb52bbe94e37f14bc686",
  1895. "reference": "360faaec4b563958b673fb52bbe94e37f14bc686",
  1896. "shasum": ""
  1897. },
  1898. "require": {
  1899. "php": ">=5.3",
  1900. "psr/http-message": "~1.0"
  1901. },
  1902. "provide": {
  1903. "psr/http-message-implementation": "1.0"
  1904. },
  1905. "require-dev": {
  1906. "phpunit/phpunit": "~4.0"
  1907. },
  1908. "time": "2018-05-29T20:21:04+00:00",
  1909. "type": "library",
  1910. "extra": {
  1911. "branch-alias": {
  1912. "dev-master": "1.0-dev"
  1913. }
  1914. },
  1915. "installation-source": "dist",
  1916. "autoload": {
  1917. "files": [
  1918. "src/functions_include.php"
  1919. ],
  1920. "psr-4": {
  1921. "RingCentral\\Psr7\\": "src/"
  1922. }
  1923. },
  1924. "notification-url": "https://packagist.org/downloads/",
  1925. "license": [
  1926. "MIT"
  1927. ],
  1928. "authors": [
  1929. {
  1930. "name": "Michael Dowling",
  1931. "email": "mtdowling@gmail.com",
  1932. "homepage": "https://github.com/mtdowling"
  1933. }
  1934. ],
  1935. "description": "PSR-7 message implementation",
  1936. "keywords": [
  1937. "http",
  1938. "message",
  1939. "stream",
  1940. "uri"
  1941. ],
  1942. "support": {
  1943. "source": "https://github.com/ringcentral/psr7/tree/master"
  1944. },
  1945. "install-path": "../ringcentral/psr7"
  1946. },
  1947. {
  1948. "name": "symfony/deprecation-contracts",
  1949. "version": "v2.5.2",
  1950. "version_normalized": "2.5.2.0",
  1951. "source": {
  1952. "type": "git",
  1953. "url": "https://github.com/symfony/deprecation-contracts.git",
  1954. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  1955. },
  1956. "dist": {
  1957. "type": "zip",
  1958. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1959. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1960. "shasum": ""
  1961. },
  1962. "require": {
  1963. "php": ">=7.1"
  1964. },
  1965. "time": "2022-01-02T09:53:40+00:00",
  1966. "type": "library",
  1967. "extra": {
  1968. "branch-alias": {
  1969. "dev-main": "2.5-dev"
  1970. },
  1971. "thanks": {
  1972. "name": "symfony/contracts",
  1973. "url": "https://github.com/symfony/contracts"
  1974. }
  1975. },
  1976. "installation-source": "dist",
  1977. "autoload": {
  1978. "files": [
  1979. "function.php"
  1980. ]
  1981. },
  1982. "notification-url": "https://packagist.org/downloads/",
  1983. "license": [
  1984. "MIT"
  1985. ],
  1986. "authors": [
  1987. {
  1988. "name": "Nicolas Grekas",
  1989. "email": "p@tchwork.com"
  1990. },
  1991. {
  1992. "name": "Symfony Community",
  1993. "homepage": "https://symfony.com/contributors"
  1994. }
  1995. ],
  1996. "description": "A generic function and convention to trigger deprecation notices",
  1997. "homepage": "https://symfony.com",
  1998. "support": {
  1999. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  2000. },
  2001. "funding": [
  2002. {
  2003. "url": "https://symfony.com/sponsor",
  2004. "type": "custom"
  2005. },
  2006. {
  2007. "url": "https://github.com/fabpot",
  2008. "type": "github"
  2009. },
  2010. {
  2011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2012. "type": "tidelift"
  2013. }
  2014. ],
  2015. "install-path": "../symfony/deprecation-contracts"
  2016. },
  2017. {
  2018. "name": "symfony/options-resolver",
  2019. "version": "v5.4.19",
  2020. "version_normalized": "5.4.19.0",
  2021. "source": {
  2022. "type": "git",
  2023. "url": "https://github.com/symfony/options-resolver.git",
  2024. "reference": "b03c99236445492f20c61666e8f7e5d388b078e5"
  2025. },
  2026. "dist": {
  2027. "type": "zip",
  2028. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/b03c99236445492f20c61666e8f7e5d388b078e5",
  2029. "reference": "b03c99236445492f20c61666e8f7e5d388b078e5",
  2030. "shasum": ""
  2031. },
  2032. "require": {
  2033. "php": ">=7.2.5",
  2034. "symfony/deprecation-contracts": "^2.1|^3",
  2035. "symfony/polyfill-php73": "~1.0",
  2036. "symfony/polyfill-php80": "^1.16"
  2037. },
  2038. "time": "2023-01-01T08:32:19+00:00",
  2039. "type": "library",
  2040. "installation-source": "dist",
  2041. "autoload": {
  2042. "psr-4": {
  2043. "Symfony\\Component\\OptionsResolver\\": ""
  2044. },
  2045. "exclude-from-classmap": [
  2046. "/Tests/"
  2047. ]
  2048. },
  2049. "notification-url": "https://packagist.org/downloads/",
  2050. "license": [
  2051. "MIT"
  2052. ],
  2053. "authors": [
  2054. {
  2055. "name": "Fabien Potencier",
  2056. "email": "fabien@symfony.com"
  2057. },
  2058. {
  2059. "name": "Symfony Community",
  2060. "homepage": "https://symfony.com/contributors"
  2061. }
  2062. ],
  2063. "description": "Provides an improved replacement for the array_replace PHP function",
  2064. "homepage": "https://symfony.com",
  2065. "keywords": [
  2066. "config",
  2067. "configuration",
  2068. "options"
  2069. ],
  2070. "support": {
  2071. "source": "https://github.com/symfony/options-resolver/tree/v5.4.19"
  2072. },
  2073. "funding": [
  2074. {
  2075. "url": "https://symfony.com/sponsor",
  2076. "type": "custom"
  2077. },
  2078. {
  2079. "url": "https://github.com/fabpot",
  2080. "type": "github"
  2081. },
  2082. {
  2083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2084. "type": "tidelift"
  2085. }
  2086. ],
  2087. "install-path": "../symfony/options-resolver"
  2088. },
  2089. {
  2090. "name": "symfony/polyfill-mbstring",
  2091. "version": "v1.27.0",
  2092. "version_normalized": "1.27.0.0",
  2093. "source": {
  2094. "type": "git",
  2095. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2096. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  2097. },
  2098. "dist": {
  2099. "type": "zip",
  2100. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  2101. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  2102. "shasum": ""
  2103. },
  2104. "require": {
  2105. "php": ">=7.1"
  2106. },
  2107. "provide": {
  2108. "ext-mbstring": "*"
  2109. },
  2110. "suggest": {
  2111. "ext-mbstring": "For best performance"
  2112. },
  2113. "time": "2022-11-03T14:55:06+00:00",
  2114. "type": "library",
  2115. "extra": {
  2116. "branch-alias": {
  2117. "dev-main": "1.27-dev"
  2118. },
  2119. "thanks": {
  2120. "name": "symfony/polyfill",
  2121. "url": "https://github.com/symfony/polyfill"
  2122. }
  2123. },
  2124. "installation-source": "dist",
  2125. "autoload": {
  2126. "files": [
  2127. "bootstrap.php"
  2128. ],
  2129. "psr-4": {
  2130. "Symfony\\Polyfill\\Mbstring\\": ""
  2131. }
  2132. },
  2133. "notification-url": "https://packagist.org/downloads/",
  2134. "license": [
  2135. "MIT"
  2136. ],
  2137. "authors": [
  2138. {
  2139. "name": "Nicolas Grekas",
  2140. "email": "p@tchwork.com"
  2141. },
  2142. {
  2143. "name": "Symfony Community",
  2144. "homepage": "https://symfony.com/contributors"
  2145. }
  2146. ],
  2147. "description": "Symfony polyfill for the Mbstring extension",
  2148. "homepage": "https://symfony.com",
  2149. "keywords": [
  2150. "compatibility",
  2151. "mbstring",
  2152. "polyfill",
  2153. "portable",
  2154. "shim"
  2155. ],
  2156. "support": {
  2157. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  2158. },
  2159. "funding": [
  2160. {
  2161. "url": "https://symfony.com/sponsor",
  2162. "type": "custom"
  2163. },
  2164. {
  2165. "url": "https://github.com/fabpot",
  2166. "type": "github"
  2167. },
  2168. {
  2169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2170. "type": "tidelift"
  2171. }
  2172. ],
  2173. "install-path": "../symfony/polyfill-mbstring"
  2174. },
  2175. {
  2176. "name": "symfony/polyfill-php73",
  2177. "version": "v1.27.0",
  2178. "version_normalized": "1.27.0.0",
  2179. "source": {
  2180. "type": "git",
  2181. "url": "https://github.com/symfony/polyfill-php73.git",
  2182. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  2183. },
  2184. "dist": {
  2185. "type": "zip",
  2186. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  2187. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  2188. "shasum": ""
  2189. },
  2190. "require": {
  2191. "php": ">=7.1"
  2192. },
  2193. "time": "2022-11-03T14:55:06+00:00",
  2194. "type": "library",
  2195. "extra": {
  2196. "branch-alias": {
  2197. "dev-main": "1.27-dev"
  2198. },
  2199. "thanks": {
  2200. "name": "symfony/polyfill",
  2201. "url": "https://github.com/symfony/polyfill"
  2202. }
  2203. },
  2204. "installation-source": "dist",
  2205. "autoload": {
  2206. "files": [
  2207. "bootstrap.php"
  2208. ],
  2209. "psr-4": {
  2210. "Symfony\\Polyfill\\Php73\\": ""
  2211. },
  2212. "classmap": [
  2213. "Resources/stubs"
  2214. ]
  2215. },
  2216. "notification-url": "https://packagist.org/downloads/",
  2217. "license": [
  2218. "MIT"
  2219. ],
  2220. "authors": [
  2221. {
  2222. "name": "Nicolas Grekas",
  2223. "email": "p@tchwork.com"
  2224. },
  2225. {
  2226. "name": "Symfony Community",
  2227. "homepage": "https://symfony.com/contributors"
  2228. }
  2229. ],
  2230. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2231. "homepage": "https://symfony.com",
  2232. "keywords": [
  2233. "compatibility",
  2234. "polyfill",
  2235. "portable",
  2236. "shim"
  2237. ],
  2238. "support": {
  2239. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  2240. },
  2241. "funding": [
  2242. {
  2243. "url": "https://symfony.com/sponsor",
  2244. "type": "custom"
  2245. },
  2246. {
  2247. "url": "https://github.com/fabpot",
  2248. "type": "github"
  2249. },
  2250. {
  2251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2252. "type": "tidelift"
  2253. }
  2254. ],
  2255. "install-path": "../symfony/polyfill-php73"
  2256. },
  2257. {
  2258. "name": "symfony/polyfill-php80",
  2259. "version": "v1.27.0",
  2260. "version_normalized": "1.27.0.0",
  2261. "source": {
  2262. "type": "git",
  2263. "url": "https://github.com/symfony/polyfill-php80.git",
  2264. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  2265. },
  2266. "dist": {
  2267. "type": "zip",
  2268. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  2269. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  2270. "shasum": ""
  2271. },
  2272. "require": {
  2273. "php": ">=7.1"
  2274. },
  2275. "time": "2022-11-03T14:55:06+00:00",
  2276. "type": "library",
  2277. "extra": {
  2278. "branch-alias": {
  2279. "dev-main": "1.27-dev"
  2280. },
  2281. "thanks": {
  2282. "name": "symfony/polyfill",
  2283. "url": "https://github.com/symfony/polyfill"
  2284. }
  2285. },
  2286. "installation-source": "dist",
  2287. "autoload": {
  2288. "files": [
  2289. "bootstrap.php"
  2290. ],
  2291. "psr-4": {
  2292. "Symfony\\Polyfill\\Php80\\": ""
  2293. },
  2294. "classmap": [
  2295. "Resources/stubs"
  2296. ]
  2297. },
  2298. "notification-url": "https://packagist.org/downloads/",
  2299. "license": [
  2300. "MIT"
  2301. ],
  2302. "authors": [
  2303. {
  2304. "name": "Ion Bazan",
  2305. "email": "ion.bazan@gmail.com"
  2306. },
  2307. {
  2308. "name": "Nicolas Grekas",
  2309. "email": "p@tchwork.com"
  2310. },
  2311. {
  2312. "name": "Symfony Community",
  2313. "homepage": "https://symfony.com/contributors"
  2314. }
  2315. ],
  2316. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2317. "homepage": "https://symfony.com",
  2318. "keywords": [
  2319. "compatibility",
  2320. "polyfill",
  2321. "portable",
  2322. "shim"
  2323. ],
  2324. "support": {
  2325. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  2326. },
  2327. "funding": [
  2328. {
  2329. "url": "https://symfony.com/sponsor",
  2330. "type": "custom"
  2331. },
  2332. {
  2333. "url": "https://github.com/fabpot",
  2334. "type": "github"
  2335. },
  2336. {
  2337. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2338. "type": "tidelift"
  2339. }
  2340. ],
  2341. "install-path": "../symfony/polyfill-php80"
  2342. },
  2343. {
  2344. "name": "symfony/translation",
  2345. "version": "v5.4.19",
  2346. "version_normalized": "5.4.19.0",
  2347. "source": {
  2348. "type": "git",
  2349. "url": "https://github.com/symfony/translation.git",
  2350. "reference": "83d487b13b7fb4c0a6ad079f4e4c9b4525e1b695"
  2351. },
  2352. "dist": {
  2353. "type": "zip",
  2354. "url": "https://api.github.com/repos/symfony/translation/zipball/83d487b13b7fb4c0a6ad079f4e4c9b4525e1b695",
  2355. "reference": "83d487b13b7fb4c0a6ad079f4e4c9b4525e1b695",
  2356. "shasum": ""
  2357. },
  2358. "require": {
  2359. "php": ">=7.2.5",
  2360. "symfony/deprecation-contracts": "^2.1|^3",
  2361. "symfony/polyfill-mbstring": "~1.0",
  2362. "symfony/polyfill-php80": "^1.16",
  2363. "symfony/translation-contracts": "^2.3"
  2364. },
  2365. "conflict": {
  2366. "symfony/config": "<4.4",
  2367. "symfony/console": "<5.3",
  2368. "symfony/dependency-injection": "<5.0",
  2369. "symfony/http-kernel": "<5.0",
  2370. "symfony/twig-bundle": "<5.0",
  2371. "symfony/yaml": "<4.4"
  2372. },
  2373. "provide": {
  2374. "symfony/translation-implementation": "2.3"
  2375. },
  2376. "require-dev": {
  2377. "psr/log": "^1|^2|^3",
  2378. "symfony/config": "^4.4|^5.0|^6.0",
  2379. "symfony/console": "^5.4|^6.0",
  2380. "symfony/dependency-injection": "^5.0|^6.0",
  2381. "symfony/finder": "^4.4|^5.0|^6.0",
  2382. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  2383. "symfony/http-kernel": "^5.0|^6.0",
  2384. "symfony/intl": "^4.4|^5.0|^6.0",
  2385. "symfony/polyfill-intl-icu": "^1.21",
  2386. "symfony/service-contracts": "^1.1.2|^2|^3",
  2387. "symfony/yaml": "^4.4|^5.0|^6.0"
  2388. },
  2389. "suggest": {
  2390. "psr/log-implementation": "To use logging capability in translator",
  2391. "symfony/config": "",
  2392. "symfony/yaml": ""
  2393. },
  2394. "time": "2023-01-01T08:32:19+00:00",
  2395. "type": "library",
  2396. "installation-source": "dist",
  2397. "autoload": {
  2398. "files": [
  2399. "Resources/functions.php"
  2400. ],
  2401. "psr-4": {
  2402. "Symfony\\Component\\Translation\\": ""
  2403. },
  2404. "exclude-from-classmap": [
  2405. "/Tests/"
  2406. ]
  2407. },
  2408. "notification-url": "https://packagist.org/downloads/",
  2409. "license": [
  2410. "MIT"
  2411. ],
  2412. "authors": [
  2413. {
  2414. "name": "Fabien Potencier",
  2415. "email": "fabien@symfony.com"
  2416. },
  2417. {
  2418. "name": "Symfony Community",
  2419. "homepage": "https://symfony.com/contributors"
  2420. }
  2421. ],
  2422. "description": "Provides tools to internationalize your application",
  2423. "homepage": "https://symfony.com",
  2424. "support": {
  2425. "source": "https://github.com/symfony/translation/tree/v5.4.19"
  2426. },
  2427. "funding": [
  2428. {
  2429. "url": "https://symfony.com/sponsor",
  2430. "type": "custom"
  2431. },
  2432. {
  2433. "url": "https://github.com/fabpot",
  2434. "type": "github"
  2435. },
  2436. {
  2437. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2438. "type": "tidelift"
  2439. }
  2440. ],
  2441. "install-path": "../symfony/translation"
  2442. },
  2443. {
  2444. "name": "symfony/translation-contracts",
  2445. "version": "v2.5.2",
  2446. "version_normalized": "2.5.2.0",
  2447. "source": {
  2448. "type": "git",
  2449. "url": "https://github.com/symfony/translation-contracts.git",
  2450. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  2451. },
  2452. "dist": {
  2453. "type": "zip",
  2454. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  2455. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  2456. "shasum": ""
  2457. },
  2458. "require": {
  2459. "php": ">=7.2.5"
  2460. },
  2461. "suggest": {
  2462. "symfony/translation-implementation": ""
  2463. },
  2464. "time": "2022-06-27T16:58:25+00:00",
  2465. "type": "library",
  2466. "extra": {
  2467. "branch-alias": {
  2468. "dev-main": "2.5-dev"
  2469. },
  2470. "thanks": {
  2471. "name": "symfony/contracts",
  2472. "url": "https://github.com/symfony/contracts"
  2473. }
  2474. },
  2475. "installation-source": "dist",
  2476. "autoload": {
  2477. "psr-4": {
  2478. "Symfony\\Contracts\\Translation\\": ""
  2479. }
  2480. },
  2481. "notification-url": "https://packagist.org/downloads/",
  2482. "license": [
  2483. "MIT"
  2484. ],
  2485. "authors": [
  2486. {
  2487. "name": "Nicolas Grekas",
  2488. "email": "p@tchwork.com"
  2489. },
  2490. {
  2491. "name": "Symfony Community",
  2492. "homepage": "https://symfony.com/contributors"
  2493. }
  2494. ],
  2495. "description": "Generic abstractions related to translation",
  2496. "homepage": "https://symfony.com",
  2497. "keywords": [
  2498. "abstractions",
  2499. "contracts",
  2500. "decoupling",
  2501. "interfaces",
  2502. "interoperability",
  2503. "standards"
  2504. ],
  2505. "support": {
  2506. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  2507. },
  2508. "funding": [
  2509. {
  2510. "url": "https://symfony.com/sponsor",
  2511. "type": "custom"
  2512. },
  2513. {
  2514. "url": "https://github.com/fabpot",
  2515. "type": "github"
  2516. },
  2517. {
  2518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2519. "type": "tidelift"
  2520. }
  2521. ],
  2522. "install-path": "../symfony/translation-contracts"
  2523. },
  2524. {
  2525. "name": "team-reflex/discord-php",
  2526. "version": "v7.3.4",
  2527. "version_normalized": "7.3.4.0",
  2528. "source": {
  2529. "type": "git",
  2530. "url": "https://github.com/discord-php/DiscordPHP.git",
  2531. "reference": "82843da4346878a432171f8d82e345389f7cc49b"
  2532. },
  2533. "dist": {
  2534. "type": "zip",
  2535. "url": "https://api.github.com/repos/discord-php/DiscordPHP/zipball/82843da4346878a432171f8d82e345389f7cc49b",
  2536. "reference": "82843da4346878a432171f8d82e345389f7cc49b",
  2537. "shasum": ""
  2538. },
  2539. "require": {
  2540. "discord-php/http": "^9.0.12",
  2541. "discord/interactions": "^2.2",
  2542. "ext-json": "*",
  2543. "ext-zlib": "*",
  2544. "mollie/polyfill-libsodium": "^1.1",
  2545. "monolog/monolog": "^2.1 || ^3.0",
  2546. "nesbot/carbon": "^2.38",
  2547. "php": "^7.4|^8.0",
  2548. "ratchet/pawl": "^0.4.1",
  2549. "react/child-process": "^0.6.2",
  2550. "react/datagram": "1.5.*",
  2551. "react/http": "^1.1",
  2552. "react/partial": "^3.0",
  2553. "symfony/options-resolver": "^5.1.3 || ^6.0",
  2554. "trafficcophp/bytebuffer": "^0.3"
  2555. },
  2556. "require-dev": {
  2557. "davidcole1340/reactsh": "dev-master",
  2558. "friendsofphp/php-cs-fixer": "^3",
  2559. "phpunit/phpunit": "^9.4",
  2560. "symfony/var-dumper": "*"
  2561. },
  2562. "suggest": {
  2563. "clue/zlib-react": "For gateway message transport compression with zlib-stream.",
  2564. "ext-event": "For a faster, and more performant loop.",
  2565. "ext-gmp": "For Permissions and 64 bit calculations on x86 (32 bit) PHP.",
  2566. "ext-libev": "For a faster, and more performant loop.",
  2567. "ext-mbstring": "For accurate calculations of string length when handling non-english characters.",
  2568. "ext-uv": "For a faster, and more performant loop. Preferred."
  2569. },
  2570. "time": "2023-01-13T12:37:14+00:00",
  2571. "type": "library",
  2572. "installation-source": "dist",
  2573. "autoload": {
  2574. "files": [
  2575. "src/Discord/functions.php"
  2576. ],
  2577. "psr-4": {
  2578. "Discord\\": "src/Discord"
  2579. }
  2580. },
  2581. "notification-url": "https://packagist.org/downloads/",
  2582. "license": [
  2583. "MIT"
  2584. ],
  2585. "authors": [
  2586. {
  2587. "name": "David Cole",
  2588. "email": "david.cole1340@gmail.com"
  2589. }
  2590. ],
  2591. "description": "An unofficial API to interact with the voice and text service Discord.",
  2592. "support": {
  2593. "issues": "https://github.com/discord-php/DiscordPHP/issues",
  2594. "source": "https://github.com/discord-php/DiscordPHP/tree/v7.3.4"
  2595. },
  2596. "install-path": "../team-reflex/discord-php"
  2597. },
  2598. {
  2599. "name": "trafficcophp/bytebuffer",
  2600. "version": "v0.3",
  2601. "version_normalized": "0.3.0.0",
  2602. "source": {
  2603. "type": "git",
  2604. "url": "https://github.com/nesQuick/ByteBuffer.git",
  2605. "reference": "e94e5c87c41bc79c0f738b0fa89bad11d27ae0b4"
  2606. },
  2607. "dist": {
  2608. "type": "zip",
  2609. "url": "https://api.github.com/repos/nesQuick/ByteBuffer/zipball/e94e5c87c41bc79c0f738b0fa89bad11d27ae0b4",
  2610. "reference": "e94e5c87c41bc79c0f738b0fa89bad11d27ae0b4",
  2611. "shasum": ""
  2612. },
  2613. "time": "2016-01-13T22:50:58+00:00",
  2614. "type": "library",
  2615. "installation-source": "dist",
  2616. "autoload": {
  2617. "psr-0": {
  2618. "TrafficCophp": "src/"
  2619. }
  2620. },
  2621. "notification-url": "https://packagist.org/downloads/",
  2622. "license": [
  2623. "MIT"
  2624. ],
  2625. "authors": [
  2626. {
  2627. "name": "Ole 'nesQuick' Michaelis",
  2628. "email": "ole.michaelis@googlemail.com",
  2629. "homepage": "http://www.codestars.eu"
  2630. }
  2631. ],
  2632. "description": "Node.js inspired byte stream buffer for PHP.",
  2633. "keywords": [
  2634. "Buffer",
  2635. "Bytehandling",
  2636. "Socket",
  2637. "binary data",
  2638. "library",
  2639. "pack",
  2640. "stream",
  2641. "wrapper"
  2642. ],
  2643. "support": {
  2644. "issues": "https://github.com/nesQuick/ByteBuffer/issues",
  2645. "source": "https://github.com/nesQuick/ByteBuffer/tree/master"
  2646. },
  2647. "install-path": "../trafficcophp/bytebuffer"
  2648. }
  2649. ],
  2650. "dev": true,
  2651. "dev-package-names": []
  2652. }