composer.lock 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103
  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": "686c83ce8e622abe36a4790642b55ebe",
  8. "packages": [
  9. {
  10. "name": "amphp/amp",
  11. "version": "v2.6.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/amphp/amp.git",
  15. "reference": "ded3d9be08f526089eb7ee8d9f16a9768f9dec2d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/amphp/amp/zipball/ded3d9be08f526089eb7ee8d9f16a9768f9dec2d",
  20. "reference": "ded3d9be08f526089eb7ee8d9f16a9768f9dec2d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=7.1"
  25. },
  26. "require-dev": {
  27. "amphp/php-cs-fixer-config": "dev-master",
  28. "amphp/phpunit-util": "^1",
  29. "ext-json": "*",
  30. "jetbrains/phpstorm-stubs": "^2019.3",
  31. "phpunit/phpunit": "^7 | ^8 | ^9",
  32. "react/promise": "^2",
  33. "vimeo/psalm": "^3.12"
  34. },
  35. "type": "library",
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "2.x-dev"
  39. }
  40. },
  41. "autoload": {
  42. "files": [
  43. "lib/functions.php",
  44. "lib/Internal/functions.php"
  45. ],
  46. "psr-4": {
  47. "Amp\\": "lib"
  48. }
  49. },
  50. "notification-url": "https://packagist.org/downloads/",
  51. "license": [
  52. "MIT"
  53. ],
  54. "authors": [
  55. {
  56. "name": "Daniel Lowrey",
  57. "email": "rdlowrey@php.net"
  58. },
  59. {
  60. "name": "Aaron Piotrowski",
  61. "email": "aaron@trowski.com"
  62. },
  63. {
  64. "name": "Bob Weinand",
  65. "email": "bobwei9@hotmail.com"
  66. },
  67. {
  68. "name": "Niklas Keller",
  69. "email": "me@kelunik.com"
  70. }
  71. ],
  72. "description": "A non-blocking concurrency framework for PHP applications.",
  73. "homepage": "https://amphp.org/amp",
  74. "keywords": [
  75. "async",
  76. "asynchronous",
  77. "awaitable",
  78. "concurrency",
  79. "event",
  80. "event-loop",
  81. "future",
  82. "non-blocking",
  83. "promise"
  84. ],
  85. "support": {
  86. "irc": "irc://irc.freenode.org/amphp",
  87. "issues": "https://github.com/amphp/amp/issues",
  88. "source": "https://github.com/amphp/amp/tree/v2.6.4"
  89. },
  90. "funding": [
  91. {
  92. "url": "https://github.com/amphp",
  93. "type": "github"
  94. }
  95. ],
  96. "time": "2024-03-21T18:52:26+00:00"
  97. },
  98. {
  99. "name": "amphp/byte-stream",
  100. "version": "v1.8.2",
  101. "source": {
  102. "type": "git",
  103. "url": "https://github.com/amphp/byte-stream.git",
  104. "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc"
  105. },
  106. "dist": {
  107. "type": "zip",
  108. "url": "https://api.github.com/repos/amphp/byte-stream/zipball/4f0e968ba3798a423730f567b1b50d3441c16ddc",
  109. "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc",
  110. "shasum": ""
  111. },
  112. "require": {
  113. "amphp/amp": "^2",
  114. "php": ">=7.1"
  115. },
  116. "require-dev": {
  117. "amphp/php-cs-fixer-config": "dev-master",
  118. "amphp/phpunit-util": "^1.4",
  119. "friendsofphp/php-cs-fixer": "^2.3",
  120. "jetbrains/phpstorm-stubs": "^2019.3",
  121. "phpunit/phpunit": "^6 || ^7 || ^8",
  122. "psalm/phar": "^3.11.4"
  123. },
  124. "type": "library",
  125. "autoload": {
  126. "files": [
  127. "lib/functions.php"
  128. ],
  129. "psr-4": {
  130. "Amp\\ByteStream\\": "lib"
  131. }
  132. },
  133. "notification-url": "https://packagist.org/downloads/",
  134. "license": [
  135. "MIT"
  136. ],
  137. "authors": [
  138. {
  139. "name": "Aaron Piotrowski",
  140. "email": "aaron@trowski.com"
  141. },
  142. {
  143. "name": "Niklas Keller",
  144. "email": "me@kelunik.com"
  145. }
  146. ],
  147. "description": "A stream abstraction to make working with non-blocking I/O simple.",
  148. "homepage": "https://amphp.org/byte-stream",
  149. "keywords": [
  150. "amp",
  151. "amphp",
  152. "async",
  153. "io",
  154. "non-blocking",
  155. "stream"
  156. ],
  157. "support": {
  158. "issues": "https://github.com/amphp/byte-stream/issues",
  159. "source": "https://github.com/amphp/byte-stream/tree/v1.8.2"
  160. },
  161. "funding": [
  162. {
  163. "url": "https://github.com/amphp",
  164. "type": "github"
  165. }
  166. ],
  167. "time": "2024-04-13T18:00:56+00:00"
  168. },
  169. {
  170. "name": "composer/pcre",
  171. "version": "3.3.1",
  172. "source": {
  173. "type": "git",
  174. "url": "https://github.com/composer/pcre.git",
  175. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  176. },
  177. "dist": {
  178. "type": "zip",
  179. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  180. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  181. "shasum": ""
  182. },
  183. "require": {
  184. "php": "^7.4 || ^8.0"
  185. },
  186. "conflict": {
  187. "phpstan/phpstan": "<1.11.10"
  188. },
  189. "require-dev": {
  190. "phpstan/phpstan": "^1.11.10",
  191. "phpstan/phpstan-strict-rules": "^1.1",
  192. "phpunit/phpunit": "^8 || ^9"
  193. },
  194. "type": "library",
  195. "extra": {
  196. "branch-alias": {
  197. "dev-main": "3.x-dev"
  198. },
  199. "phpstan": {
  200. "includes": [
  201. "extension.neon"
  202. ]
  203. }
  204. },
  205. "autoload": {
  206. "psr-4": {
  207. "Composer\\Pcre\\": "src"
  208. }
  209. },
  210. "notification-url": "https://packagist.org/downloads/",
  211. "license": [
  212. "MIT"
  213. ],
  214. "authors": [
  215. {
  216. "name": "Jordi Boggiano",
  217. "email": "j.boggiano@seld.be",
  218. "homepage": "http://seld.be"
  219. }
  220. ],
  221. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  222. "keywords": [
  223. "PCRE",
  224. "preg",
  225. "regex",
  226. "regular expression"
  227. ],
  228. "support": {
  229. "issues": "https://github.com/composer/pcre/issues",
  230. "source": "https://github.com/composer/pcre/tree/3.3.1"
  231. },
  232. "funding": [
  233. {
  234. "url": "https://packagist.com",
  235. "type": "custom"
  236. },
  237. {
  238. "url": "https://github.com/composer",
  239. "type": "github"
  240. },
  241. {
  242. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  243. "type": "tidelift"
  244. }
  245. ],
  246. "time": "2024-08-27T18:44:43+00:00"
  247. },
  248. {
  249. "name": "composer/semver",
  250. "version": "3.4.2",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/composer/semver.git",
  254. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  259. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  260. "shasum": ""
  261. },
  262. "require": {
  263. "php": "^5.3.2 || ^7.0 || ^8.0"
  264. },
  265. "require-dev": {
  266. "phpstan/phpstan": "^1.4",
  267. "symfony/phpunit-bridge": "^4.2 || ^5"
  268. },
  269. "type": "library",
  270. "extra": {
  271. "branch-alias": {
  272. "dev-main": "3.x-dev"
  273. }
  274. },
  275. "autoload": {
  276. "psr-4": {
  277. "Composer\\Semver\\": "src"
  278. }
  279. },
  280. "notification-url": "https://packagist.org/downloads/",
  281. "license": [
  282. "MIT"
  283. ],
  284. "authors": [
  285. {
  286. "name": "Nils Adermann",
  287. "email": "naderman@naderman.de",
  288. "homepage": "http://www.naderman.de"
  289. },
  290. {
  291. "name": "Jordi Boggiano",
  292. "email": "j.boggiano@seld.be",
  293. "homepage": "http://seld.be"
  294. },
  295. {
  296. "name": "Rob Bast",
  297. "email": "rob.bast@gmail.com",
  298. "homepage": "http://robbast.nl"
  299. }
  300. ],
  301. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  302. "keywords": [
  303. "semantic",
  304. "semver",
  305. "validation",
  306. "versioning"
  307. ],
  308. "support": {
  309. "irc": "ircs://irc.libera.chat:6697/composer",
  310. "issues": "https://github.com/composer/semver/issues",
  311. "source": "https://github.com/composer/semver/tree/3.4.2"
  312. },
  313. "funding": [
  314. {
  315. "url": "https://packagist.com",
  316. "type": "custom"
  317. },
  318. {
  319. "url": "https://github.com/composer",
  320. "type": "github"
  321. },
  322. {
  323. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  324. "type": "tidelift"
  325. }
  326. ],
  327. "time": "2024-07-12T11:35:52+00:00"
  328. },
  329. {
  330. "name": "composer/xdebug-handler",
  331. "version": "3.0.5",
  332. "source": {
  333. "type": "git",
  334. "url": "https://github.com/composer/xdebug-handler.git",
  335. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  336. },
  337. "dist": {
  338. "type": "zip",
  339. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  340. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  341. "shasum": ""
  342. },
  343. "require": {
  344. "composer/pcre": "^1 || ^2 || ^3",
  345. "php": "^7.2.5 || ^8.0",
  346. "psr/log": "^1 || ^2 || ^3"
  347. },
  348. "require-dev": {
  349. "phpstan/phpstan": "^1.0",
  350. "phpstan/phpstan-strict-rules": "^1.1",
  351. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  352. },
  353. "type": "library",
  354. "autoload": {
  355. "psr-4": {
  356. "Composer\\XdebugHandler\\": "src"
  357. }
  358. },
  359. "notification-url": "https://packagist.org/downloads/",
  360. "license": [
  361. "MIT"
  362. ],
  363. "authors": [
  364. {
  365. "name": "John Stevenson",
  366. "email": "john-stevenson@blueyonder.co.uk"
  367. }
  368. ],
  369. "description": "Restarts a process without Xdebug.",
  370. "keywords": [
  371. "Xdebug",
  372. "performance"
  373. ],
  374. "support": {
  375. "irc": "ircs://irc.libera.chat:6697/composer",
  376. "issues": "https://github.com/composer/xdebug-handler/issues",
  377. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  378. },
  379. "funding": [
  380. {
  381. "url": "https://packagist.com",
  382. "type": "custom"
  383. },
  384. {
  385. "url": "https://github.com/composer",
  386. "type": "github"
  387. },
  388. {
  389. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  390. "type": "tidelift"
  391. }
  392. ],
  393. "time": "2024-05-06T16:37:16+00:00"
  394. },
  395. {
  396. "name": "dnoegel/php-xdg-base-dir",
  397. "version": "v0.1.1",
  398. "source": {
  399. "type": "git",
  400. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  401. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  402. },
  403. "dist": {
  404. "type": "zip",
  405. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  406. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  407. "shasum": ""
  408. },
  409. "require": {
  410. "php": ">=5.3.2"
  411. },
  412. "require-dev": {
  413. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  414. },
  415. "type": "library",
  416. "autoload": {
  417. "psr-4": {
  418. "XdgBaseDir\\": "src/"
  419. }
  420. },
  421. "notification-url": "https://packagist.org/downloads/",
  422. "license": [
  423. "MIT"
  424. ],
  425. "description": "implementation of xdg base directory specification for php",
  426. "support": {
  427. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  428. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  429. },
  430. "time": "2019-12-04T15:06:13+00:00"
  431. },
  432. {
  433. "name": "doctrine/deprecations",
  434. "version": "1.1.3",
  435. "source": {
  436. "type": "git",
  437. "url": "https://github.com/doctrine/deprecations.git",
  438. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  439. },
  440. "dist": {
  441. "type": "zip",
  442. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  443. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  444. "shasum": ""
  445. },
  446. "require": {
  447. "php": "^7.1 || ^8.0"
  448. },
  449. "require-dev": {
  450. "doctrine/coding-standard": "^9",
  451. "phpstan/phpstan": "1.4.10 || 1.10.15",
  452. "phpstan/phpstan-phpunit": "^1.0",
  453. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  454. "psalm/plugin-phpunit": "0.18.4",
  455. "psr/log": "^1 || ^2 || ^3",
  456. "vimeo/psalm": "4.30.0 || 5.12.0"
  457. },
  458. "suggest": {
  459. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  460. },
  461. "type": "library",
  462. "autoload": {
  463. "psr-4": {
  464. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  465. }
  466. },
  467. "notification-url": "https://packagist.org/downloads/",
  468. "license": [
  469. "MIT"
  470. ],
  471. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  472. "homepage": "https://www.doctrine-project.org/",
  473. "support": {
  474. "issues": "https://github.com/doctrine/deprecations/issues",
  475. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  476. },
  477. "time": "2024-01-30T19:34:25+00:00"
  478. },
  479. {
  480. "name": "felixfbecker/advanced-json-rpc",
  481. "version": "v3.2.1",
  482. "source": {
  483. "type": "git",
  484. "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
  485. "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447"
  486. },
  487. "dist": {
  488. "type": "zip",
  489. "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447",
  490. "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447",
  491. "shasum": ""
  492. },
  493. "require": {
  494. "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
  495. "php": "^7.1 || ^8.0",
  496. "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
  497. },
  498. "require-dev": {
  499. "phpunit/phpunit": "^7.0 || ^8.0"
  500. },
  501. "type": "library",
  502. "autoload": {
  503. "psr-4": {
  504. "AdvancedJsonRpc\\": "lib/"
  505. }
  506. },
  507. "notification-url": "https://packagist.org/downloads/",
  508. "license": [
  509. "ISC"
  510. ],
  511. "authors": [
  512. {
  513. "name": "Felix Becker",
  514. "email": "felix.b@outlook.com"
  515. }
  516. ],
  517. "description": "A more advanced JSONRPC implementation",
  518. "support": {
  519. "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
  520. "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1"
  521. },
  522. "time": "2021-06-11T22:34:44+00:00"
  523. },
  524. {
  525. "name": "felixfbecker/language-server-protocol",
  526. "version": "v1.5.2",
  527. "source": {
  528. "type": "git",
  529. "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
  530. "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842"
  531. },
  532. "dist": {
  533. "type": "zip",
  534. "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/6e82196ffd7c62f7794d778ca52b69feec9f2842",
  535. "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842",
  536. "shasum": ""
  537. },
  538. "require": {
  539. "php": ">=7.1"
  540. },
  541. "require-dev": {
  542. "phpstan/phpstan": "*",
  543. "squizlabs/php_codesniffer": "^3.1",
  544. "vimeo/psalm": "^4.0"
  545. },
  546. "type": "library",
  547. "extra": {
  548. "branch-alias": {
  549. "dev-master": "1.x-dev"
  550. }
  551. },
  552. "autoload": {
  553. "psr-4": {
  554. "LanguageServerProtocol\\": "src/"
  555. }
  556. },
  557. "notification-url": "https://packagist.org/downloads/",
  558. "license": [
  559. "ISC"
  560. ],
  561. "authors": [
  562. {
  563. "name": "Felix Becker",
  564. "email": "felix.b@outlook.com"
  565. }
  566. ],
  567. "description": "PHP classes for the Language Server Protocol",
  568. "keywords": [
  569. "language",
  570. "microsoft",
  571. "php",
  572. "server"
  573. ],
  574. "support": {
  575. "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
  576. "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/v1.5.2"
  577. },
  578. "time": "2022-03-02T22:36:06+00:00"
  579. },
  580. {
  581. "name": "fidry/cpu-core-counter",
  582. "version": "1.2.0",
  583. "source": {
  584. "type": "git",
  585. "url": "https://github.com/theofidry/cpu-core-counter.git",
  586. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  587. },
  588. "dist": {
  589. "type": "zip",
  590. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  591. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  592. "shasum": ""
  593. },
  594. "require": {
  595. "php": "^7.2 || ^8.0"
  596. },
  597. "require-dev": {
  598. "fidry/makefile": "^0.2.0",
  599. "fidry/php-cs-fixer-config": "^1.1.2",
  600. "phpstan/extension-installer": "^1.2.0",
  601. "phpstan/phpstan": "^1.9.2",
  602. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  603. "phpstan/phpstan-phpunit": "^1.2.2",
  604. "phpstan/phpstan-strict-rules": "^1.4.4",
  605. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  606. "webmozarts/strict-phpunit": "^7.5"
  607. },
  608. "type": "library",
  609. "autoload": {
  610. "psr-4": {
  611. "Fidry\\CpuCoreCounter\\": "src/"
  612. }
  613. },
  614. "notification-url": "https://packagist.org/downloads/",
  615. "license": [
  616. "MIT"
  617. ],
  618. "authors": [
  619. {
  620. "name": "Théo FIDRY",
  621. "email": "theo.fidry@gmail.com"
  622. }
  623. ],
  624. "description": "Tiny utility to get the number of CPU cores.",
  625. "keywords": [
  626. "CPU",
  627. "core"
  628. ],
  629. "support": {
  630. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  631. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  632. },
  633. "funding": [
  634. {
  635. "url": "https://github.com/theofidry",
  636. "type": "github"
  637. }
  638. ],
  639. "time": "2024-08-06T10:04:20+00:00"
  640. },
  641. {
  642. "name": "netresearch/jsonmapper",
  643. "version": "v4.5.0",
  644. "source": {
  645. "type": "git",
  646. "url": "https://github.com/cweiske/jsonmapper.git",
  647. "reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5"
  648. },
  649. "dist": {
  650. "type": "zip",
  651. "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/8e76efb98ee8b6afc54687045e1b8dba55ac76e5",
  652. "reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5",
  653. "shasum": ""
  654. },
  655. "require": {
  656. "ext-json": "*",
  657. "ext-pcre": "*",
  658. "ext-reflection": "*",
  659. "ext-spl": "*",
  660. "php": ">=7.1"
  661. },
  662. "require-dev": {
  663. "phpunit/phpunit": "~7.5 || ~8.0 || ~9.0 || ~10.0",
  664. "squizlabs/php_codesniffer": "~3.5"
  665. },
  666. "type": "library",
  667. "autoload": {
  668. "psr-0": {
  669. "JsonMapper": "src/"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "OSL-3.0"
  675. ],
  676. "authors": [
  677. {
  678. "name": "Christian Weiske",
  679. "email": "cweiske@cweiske.de",
  680. "homepage": "http://github.com/cweiske/jsonmapper/",
  681. "role": "Developer"
  682. }
  683. ],
  684. "description": "Map nested JSON structures onto PHP classes",
  685. "support": {
  686. "email": "cweiske@cweiske.de",
  687. "issues": "https://github.com/cweiske/jsonmapper/issues",
  688. "source": "https://github.com/cweiske/jsonmapper/tree/v4.5.0"
  689. },
  690. "time": "2024-09-08T10:13:13+00:00"
  691. },
  692. {
  693. "name": "nikic/php-parser",
  694. "version": "v4.19.1",
  695. "source": {
  696. "type": "git",
  697. "url": "https://github.com/nikic/PHP-Parser.git",
  698. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  699. },
  700. "dist": {
  701. "type": "zip",
  702. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  703. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  704. "shasum": ""
  705. },
  706. "require": {
  707. "ext-tokenizer": "*",
  708. "php": ">=7.1"
  709. },
  710. "require-dev": {
  711. "ircmaxell/php-yacc": "^0.0.7",
  712. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  713. },
  714. "bin": [
  715. "bin/php-parse"
  716. ],
  717. "type": "library",
  718. "extra": {
  719. "branch-alias": {
  720. "dev-master": "4.9-dev"
  721. }
  722. },
  723. "autoload": {
  724. "psr-4": {
  725. "PhpParser\\": "lib/PhpParser"
  726. }
  727. },
  728. "notification-url": "https://packagist.org/downloads/",
  729. "license": [
  730. "BSD-3-Clause"
  731. ],
  732. "authors": [
  733. {
  734. "name": "Nikita Popov"
  735. }
  736. ],
  737. "description": "A PHP parser written in PHP",
  738. "keywords": [
  739. "parser",
  740. "php"
  741. ],
  742. "support": {
  743. "issues": "https://github.com/nikic/PHP-Parser/issues",
  744. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  745. },
  746. "time": "2024-03-17T08:10:35+00:00"
  747. },
  748. {
  749. "name": "phpdocumentor/reflection-common",
  750. "version": "2.2.0",
  751. "source": {
  752. "type": "git",
  753. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  754. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  755. },
  756. "dist": {
  757. "type": "zip",
  758. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  759. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  760. "shasum": ""
  761. },
  762. "require": {
  763. "php": "^7.2 || ^8.0"
  764. },
  765. "type": "library",
  766. "extra": {
  767. "branch-alias": {
  768. "dev-2.x": "2.x-dev"
  769. }
  770. },
  771. "autoload": {
  772. "psr-4": {
  773. "phpDocumentor\\Reflection\\": "src/"
  774. }
  775. },
  776. "notification-url": "https://packagist.org/downloads/",
  777. "license": [
  778. "MIT"
  779. ],
  780. "authors": [
  781. {
  782. "name": "Jaap van Otterdijk",
  783. "email": "opensource@ijaap.nl"
  784. }
  785. ],
  786. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  787. "homepage": "http://www.phpdoc.org",
  788. "keywords": [
  789. "FQSEN",
  790. "phpDocumentor",
  791. "phpdoc",
  792. "reflection",
  793. "static analysis"
  794. ],
  795. "support": {
  796. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  797. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  798. },
  799. "time": "2020-06-27T09:03:43+00:00"
  800. },
  801. {
  802. "name": "phpdocumentor/reflection-docblock",
  803. "version": "5.4.1",
  804. "source": {
  805. "type": "git",
  806. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  807. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  808. },
  809. "dist": {
  810. "type": "zip",
  811. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  812. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  813. "shasum": ""
  814. },
  815. "require": {
  816. "doctrine/deprecations": "^1.1",
  817. "ext-filter": "*",
  818. "php": "^7.4 || ^8.0",
  819. "phpdocumentor/reflection-common": "^2.2",
  820. "phpdocumentor/type-resolver": "^1.7",
  821. "phpstan/phpdoc-parser": "^1.7",
  822. "webmozart/assert": "^1.9.1"
  823. },
  824. "require-dev": {
  825. "mockery/mockery": "~1.3.5",
  826. "phpstan/extension-installer": "^1.1",
  827. "phpstan/phpstan": "^1.8",
  828. "phpstan/phpstan-mockery": "^1.1",
  829. "phpstan/phpstan-webmozart-assert": "^1.2",
  830. "phpunit/phpunit": "^9.5",
  831. "vimeo/psalm": "^5.13"
  832. },
  833. "type": "library",
  834. "extra": {
  835. "branch-alias": {
  836. "dev-master": "5.x-dev"
  837. }
  838. },
  839. "autoload": {
  840. "psr-4": {
  841. "phpDocumentor\\Reflection\\": "src"
  842. }
  843. },
  844. "notification-url": "https://packagist.org/downloads/",
  845. "license": [
  846. "MIT"
  847. ],
  848. "authors": [
  849. {
  850. "name": "Mike van Riel",
  851. "email": "me@mikevanriel.com"
  852. },
  853. {
  854. "name": "Jaap van Otterdijk",
  855. "email": "opensource@ijaap.nl"
  856. }
  857. ],
  858. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  859. "support": {
  860. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  861. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  862. },
  863. "time": "2024-05-21T05:55:05+00:00"
  864. },
  865. {
  866. "name": "phpdocumentor/type-resolver",
  867. "version": "1.8.2",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  871. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  876. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  877. "shasum": ""
  878. },
  879. "require": {
  880. "doctrine/deprecations": "^1.0",
  881. "php": "^7.3 || ^8.0",
  882. "phpdocumentor/reflection-common": "^2.0",
  883. "phpstan/phpdoc-parser": "^1.13"
  884. },
  885. "require-dev": {
  886. "ext-tokenizer": "*",
  887. "phpbench/phpbench": "^1.2",
  888. "phpstan/extension-installer": "^1.1",
  889. "phpstan/phpstan": "^1.8",
  890. "phpstan/phpstan-phpunit": "^1.1",
  891. "phpunit/phpunit": "^9.5",
  892. "rector/rector": "^0.13.9",
  893. "vimeo/psalm": "^4.25"
  894. },
  895. "type": "library",
  896. "extra": {
  897. "branch-alias": {
  898. "dev-1.x": "1.x-dev"
  899. }
  900. },
  901. "autoload": {
  902. "psr-4": {
  903. "phpDocumentor\\Reflection\\": "src"
  904. }
  905. },
  906. "notification-url": "https://packagist.org/downloads/",
  907. "license": [
  908. "MIT"
  909. ],
  910. "authors": [
  911. {
  912. "name": "Mike van Riel",
  913. "email": "me@mikevanriel.com"
  914. }
  915. ],
  916. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  917. "support": {
  918. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  919. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  920. },
  921. "time": "2024-02-23T11:10:43+00:00"
  922. },
  923. {
  924. "name": "phpstan/phpdoc-parser",
  925. "version": "1.30.1",
  926. "source": {
  927. "type": "git",
  928. "url": "https://github.com/phpstan/phpdoc-parser.git",
  929. "reference": "51b95ec8670af41009e2b2b56873bad96682413e"
  930. },
  931. "dist": {
  932. "type": "zip",
  933. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/51b95ec8670af41009e2b2b56873bad96682413e",
  934. "reference": "51b95ec8670af41009e2b2b56873bad96682413e",
  935. "shasum": ""
  936. },
  937. "require": {
  938. "php": "^7.2 || ^8.0"
  939. },
  940. "require-dev": {
  941. "doctrine/annotations": "^2.0",
  942. "nikic/php-parser": "^4.15",
  943. "php-parallel-lint/php-parallel-lint": "^1.2",
  944. "phpstan/extension-installer": "^1.0",
  945. "phpstan/phpstan": "^1.5",
  946. "phpstan/phpstan-phpunit": "^1.1",
  947. "phpstan/phpstan-strict-rules": "^1.0",
  948. "phpunit/phpunit": "^9.5",
  949. "symfony/process": "^5.2"
  950. },
  951. "type": "library",
  952. "autoload": {
  953. "psr-4": {
  954. "PHPStan\\PhpDocParser\\": [
  955. "src/"
  956. ]
  957. }
  958. },
  959. "notification-url": "https://packagist.org/downloads/",
  960. "license": [
  961. "MIT"
  962. ],
  963. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  964. "support": {
  965. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  966. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.30.1"
  967. },
  968. "time": "2024-09-07T20:13:05+00:00"
  969. },
  970. {
  971. "name": "psr/container",
  972. "version": "2.0.2",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/php-fig/container.git",
  976. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  981. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "php": ">=7.4.0"
  986. },
  987. "type": "library",
  988. "extra": {
  989. "branch-alias": {
  990. "dev-master": "2.0.x-dev"
  991. }
  992. },
  993. "autoload": {
  994. "psr-4": {
  995. "Psr\\Container\\": "src/"
  996. }
  997. },
  998. "notification-url": "https://packagist.org/downloads/",
  999. "license": [
  1000. "MIT"
  1001. ],
  1002. "authors": [
  1003. {
  1004. "name": "PHP-FIG",
  1005. "homepage": "https://www.php-fig.org/"
  1006. }
  1007. ],
  1008. "description": "Common Container Interface (PHP FIG PSR-11)",
  1009. "homepage": "https://github.com/php-fig/container",
  1010. "keywords": [
  1011. "PSR-11",
  1012. "container",
  1013. "container-interface",
  1014. "container-interop",
  1015. "psr"
  1016. ],
  1017. "support": {
  1018. "issues": "https://github.com/php-fig/container/issues",
  1019. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1020. },
  1021. "time": "2021-11-05T16:47:00+00:00"
  1022. },
  1023. {
  1024. "name": "psr/log",
  1025. "version": "3.0.2",
  1026. "source": {
  1027. "type": "git",
  1028. "url": "https://github.com/php-fig/log.git",
  1029. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  1030. },
  1031. "dist": {
  1032. "type": "zip",
  1033. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1034. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1035. "shasum": ""
  1036. },
  1037. "require": {
  1038. "php": ">=8.0.0"
  1039. },
  1040. "type": "library",
  1041. "extra": {
  1042. "branch-alias": {
  1043. "dev-master": "3.x-dev"
  1044. }
  1045. },
  1046. "autoload": {
  1047. "psr-4": {
  1048. "Psr\\Log\\": "src"
  1049. }
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "MIT"
  1054. ],
  1055. "authors": [
  1056. {
  1057. "name": "PHP-FIG",
  1058. "homepage": "https://www.php-fig.org/"
  1059. }
  1060. ],
  1061. "description": "Common interface for logging libraries",
  1062. "homepage": "https://github.com/php-fig/log",
  1063. "keywords": [
  1064. "log",
  1065. "psr",
  1066. "psr-3"
  1067. ],
  1068. "support": {
  1069. "source": "https://github.com/php-fig/log/tree/3.0.2"
  1070. },
  1071. "time": "2024-09-11T13:17:53+00:00"
  1072. },
  1073. {
  1074. "name": "sebastian/diff",
  1075. "version": "5.1.1",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/sebastianbergmann/diff.git",
  1079. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  1084. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "php": ">=8.1"
  1089. },
  1090. "require-dev": {
  1091. "phpunit/phpunit": "^10.0",
  1092. "symfony/process": "^6.4"
  1093. },
  1094. "type": "library",
  1095. "extra": {
  1096. "branch-alias": {
  1097. "dev-main": "5.1-dev"
  1098. }
  1099. },
  1100. "autoload": {
  1101. "classmap": [
  1102. "src/"
  1103. ]
  1104. },
  1105. "notification-url": "https://packagist.org/downloads/",
  1106. "license": [
  1107. "BSD-3-Clause"
  1108. ],
  1109. "authors": [
  1110. {
  1111. "name": "Sebastian Bergmann",
  1112. "email": "sebastian@phpunit.de"
  1113. },
  1114. {
  1115. "name": "Kore Nordmann",
  1116. "email": "mail@kore-nordmann.de"
  1117. }
  1118. ],
  1119. "description": "Diff implementation",
  1120. "homepage": "https://github.com/sebastianbergmann/diff",
  1121. "keywords": [
  1122. "diff",
  1123. "udiff",
  1124. "unidiff",
  1125. "unified diff"
  1126. ],
  1127. "support": {
  1128. "issues": "https://github.com/sebastianbergmann/diff/issues",
  1129. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  1130. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  1131. },
  1132. "funding": [
  1133. {
  1134. "url": "https://github.com/sebastianbergmann",
  1135. "type": "github"
  1136. }
  1137. ],
  1138. "time": "2024-03-02T07:15:17+00:00"
  1139. },
  1140. {
  1141. "name": "spatie/array-to-xml",
  1142. "version": "3.3.0",
  1143. "source": {
  1144. "type": "git",
  1145. "url": "https://github.com/spatie/array-to-xml.git",
  1146. "reference": "f56b220fe2db1ade4c88098d83413ebdfc3bf876"
  1147. },
  1148. "dist": {
  1149. "type": "zip",
  1150. "url": "https://api.github.com/repos/spatie/array-to-xml/zipball/f56b220fe2db1ade4c88098d83413ebdfc3bf876",
  1151. "reference": "f56b220fe2db1ade4c88098d83413ebdfc3bf876",
  1152. "shasum": ""
  1153. },
  1154. "require": {
  1155. "ext-dom": "*",
  1156. "php": "^8.0"
  1157. },
  1158. "require-dev": {
  1159. "mockery/mockery": "^1.2",
  1160. "pestphp/pest": "^1.21",
  1161. "spatie/pest-plugin-snapshots": "^1.1"
  1162. },
  1163. "type": "library",
  1164. "extra": {
  1165. "branch-alias": {
  1166. "dev-main": "3.x-dev"
  1167. }
  1168. },
  1169. "autoload": {
  1170. "psr-4": {
  1171. "Spatie\\ArrayToXml\\": "src"
  1172. }
  1173. },
  1174. "notification-url": "https://packagist.org/downloads/",
  1175. "license": [
  1176. "MIT"
  1177. ],
  1178. "authors": [
  1179. {
  1180. "name": "Freek Van der Herten",
  1181. "email": "freek@spatie.be",
  1182. "homepage": "https://freek.dev",
  1183. "role": "Developer"
  1184. }
  1185. ],
  1186. "description": "Convert an array to xml",
  1187. "homepage": "https://github.com/spatie/array-to-xml",
  1188. "keywords": [
  1189. "array",
  1190. "convert",
  1191. "xml"
  1192. ],
  1193. "support": {
  1194. "source": "https://github.com/spatie/array-to-xml/tree/3.3.0"
  1195. },
  1196. "funding": [
  1197. {
  1198. "url": "https://spatie.be/open-source/support-us",
  1199. "type": "custom"
  1200. },
  1201. {
  1202. "url": "https://github.com/spatie",
  1203. "type": "github"
  1204. }
  1205. ],
  1206. "time": "2024-05-01T10:20:27+00:00"
  1207. },
  1208. {
  1209. "name": "symfony/console",
  1210. "version": "v6.4.11",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/symfony/console.git",
  1214. "reference": "42686880adaacdad1835ee8fc2a9ec5b7bd63998"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/symfony/console/zipball/42686880adaacdad1835ee8fc2a9ec5b7bd63998",
  1219. "reference": "42686880adaacdad1835ee8fc2a9ec5b7bd63998",
  1220. "shasum": ""
  1221. },
  1222. "require": {
  1223. "php": ">=8.1",
  1224. "symfony/deprecation-contracts": "^2.5|^3",
  1225. "symfony/polyfill-mbstring": "~1.0",
  1226. "symfony/service-contracts": "^2.5|^3",
  1227. "symfony/string": "^5.4|^6.0|^7.0"
  1228. },
  1229. "conflict": {
  1230. "symfony/dependency-injection": "<5.4",
  1231. "symfony/dotenv": "<5.4",
  1232. "symfony/event-dispatcher": "<5.4",
  1233. "symfony/lock": "<5.4",
  1234. "symfony/process": "<5.4"
  1235. },
  1236. "provide": {
  1237. "psr/log-implementation": "1.0|2.0|3.0"
  1238. },
  1239. "require-dev": {
  1240. "psr/log": "^1|^2|^3",
  1241. "symfony/config": "^5.4|^6.0|^7.0",
  1242. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  1243. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  1244. "symfony/http-foundation": "^6.4|^7.0",
  1245. "symfony/http-kernel": "^6.4|^7.0",
  1246. "symfony/lock": "^5.4|^6.0|^7.0",
  1247. "symfony/messenger": "^5.4|^6.0|^7.0",
  1248. "symfony/process": "^5.4|^6.0|^7.0",
  1249. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  1250. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  1251. },
  1252. "type": "library",
  1253. "autoload": {
  1254. "psr-4": {
  1255. "Symfony\\Component\\Console\\": ""
  1256. },
  1257. "exclude-from-classmap": [
  1258. "/Tests/"
  1259. ]
  1260. },
  1261. "notification-url": "https://packagist.org/downloads/",
  1262. "license": [
  1263. "MIT"
  1264. ],
  1265. "authors": [
  1266. {
  1267. "name": "Fabien Potencier",
  1268. "email": "fabien@symfony.com"
  1269. },
  1270. {
  1271. "name": "Symfony Community",
  1272. "homepage": "https://symfony.com/contributors"
  1273. }
  1274. ],
  1275. "description": "Eases the creation of beautiful and testable command line interfaces",
  1276. "homepage": "https://symfony.com",
  1277. "keywords": [
  1278. "cli",
  1279. "command-line",
  1280. "console",
  1281. "terminal"
  1282. ],
  1283. "support": {
  1284. "source": "https://github.com/symfony/console/tree/v6.4.11"
  1285. },
  1286. "funding": [
  1287. {
  1288. "url": "https://symfony.com/sponsor",
  1289. "type": "custom"
  1290. },
  1291. {
  1292. "url": "https://github.com/fabpot",
  1293. "type": "github"
  1294. },
  1295. {
  1296. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1297. "type": "tidelift"
  1298. }
  1299. ],
  1300. "time": "2024-08-15T22:48:29+00:00"
  1301. },
  1302. {
  1303. "name": "symfony/deprecation-contracts",
  1304. "version": "v3.5.0",
  1305. "source": {
  1306. "type": "git",
  1307. "url": "https://github.com/symfony/deprecation-contracts.git",
  1308. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  1309. },
  1310. "dist": {
  1311. "type": "zip",
  1312. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  1313. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  1314. "shasum": ""
  1315. },
  1316. "require": {
  1317. "php": ">=8.1"
  1318. },
  1319. "type": "library",
  1320. "extra": {
  1321. "branch-alias": {
  1322. "dev-main": "3.5-dev"
  1323. },
  1324. "thanks": {
  1325. "name": "symfony/contracts",
  1326. "url": "https://github.com/symfony/contracts"
  1327. }
  1328. },
  1329. "autoload": {
  1330. "files": [
  1331. "function.php"
  1332. ]
  1333. },
  1334. "notification-url": "https://packagist.org/downloads/",
  1335. "license": [
  1336. "MIT"
  1337. ],
  1338. "authors": [
  1339. {
  1340. "name": "Nicolas Grekas",
  1341. "email": "p@tchwork.com"
  1342. },
  1343. {
  1344. "name": "Symfony Community",
  1345. "homepage": "https://symfony.com/contributors"
  1346. }
  1347. ],
  1348. "description": "A generic function and convention to trigger deprecation notices",
  1349. "homepage": "https://symfony.com",
  1350. "support": {
  1351. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  1352. },
  1353. "funding": [
  1354. {
  1355. "url": "https://symfony.com/sponsor",
  1356. "type": "custom"
  1357. },
  1358. {
  1359. "url": "https://github.com/fabpot",
  1360. "type": "github"
  1361. },
  1362. {
  1363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1364. "type": "tidelift"
  1365. }
  1366. ],
  1367. "time": "2024-04-18T09:32:20+00:00"
  1368. },
  1369. {
  1370. "name": "symfony/filesystem",
  1371. "version": "v6.4.9",
  1372. "source": {
  1373. "type": "git",
  1374. "url": "https://github.com/symfony/filesystem.git",
  1375. "reference": "b51ef8059159330b74a4d52f68e671033c0fe463"
  1376. },
  1377. "dist": {
  1378. "type": "zip",
  1379. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b51ef8059159330b74a4d52f68e671033c0fe463",
  1380. "reference": "b51ef8059159330b74a4d52f68e671033c0fe463",
  1381. "shasum": ""
  1382. },
  1383. "require": {
  1384. "php": ">=8.1",
  1385. "symfony/polyfill-ctype": "~1.8",
  1386. "symfony/polyfill-mbstring": "~1.8"
  1387. },
  1388. "require-dev": {
  1389. "symfony/process": "^5.4|^6.4|^7.0"
  1390. },
  1391. "type": "library",
  1392. "autoload": {
  1393. "psr-4": {
  1394. "Symfony\\Component\\Filesystem\\": ""
  1395. },
  1396. "exclude-from-classmap": [
  1397. "/Tests/"
  1398. ]
  1399. },
  1400. "notification-url": "https://packagist.org/downloads/",
  1401. "license": [
  1402. "MIT"
  1403. ],
  1404. "authors": [
  1405. {
  1406. "name": "Fabien Potencier",
  1407. "email": "fabien@symfony.com"
  1408. },
  1409. {
  1410. "name": "Symfony Community",
  1411. "homepage": "https://symfony.com/contributors"
  1412. }
  1413. ],
  1414. "description": "Provides basic utilities for the filesystem",
  1415. "homepage": "https://symfony.com",
  1416. "support": {
  1417. "source": "https://github.com/symfony/filesystem/tree/v6.4.9"
  1418. },
  1419. "funding": [
  1420. {
  1421. "url": "https://symfony.com/sponsor",
  1422. "type": "custom"
  1423. },
  1424. {
  1425. "url": "https://github.com/fabpot",
  1426. "type": "github"
  1427. },
  1428. {
  1429. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1430. "type": "tidelift"
  1431. }
  1432. ],
  1433. "time": "2024-06-28T09:49:33+00:00"
  1434. },
  1435. {
  1436. "name": "symfony/polyfill-ctype",
  1437. "version": "v1.31.0",
  1438. "source": {
  1439. "type": "git",
  1440. "url": "https://github.com/symfony/polyfill-ctype.git",
  1441. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  1442. },
  1443. "dist": {
  1444. "type": "zip",
  1445. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  1446. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  1447. "shasum": ""
  1448. },
  1449. "require": {
  1450. "php": ">=7.2"
  1451. },
  1452. "provide": {
  1453. "ext-ctype": "*"
  1454. },
  1455. "suggest": {
  1456. "ext-ctype": "For best performance"
  1457. },
  1458. "type": "library",
  1459. "extra": {
  1460. "thanks": {
  1461. "name": "symfony/polyfill",
  1462. "url": "https://github.com/symfony/polyfill"
  1463. }
  1464. },
  1465. "autoload": {
  1466. "files": [
  1467. "bootstrap.php"
  1468. ],
  1469. "psr-4": {
  1470. "Symfony\\Polyfill\\Ctype\\": ""
  1471. }
  1472. },
  1473. "notification-url": "https://packagist.org/downloads/",
  1474. "license": [
  1475. "MIT"
  1476. ],
  1477. "authors": [
  1478. {
  1479. "name": "Gert de Pagter",
  1480. "email": "BackEndTea@gmail.com"
  1481. },
  1482. {
  1483. "name": "Symfony Community",
  1484. "homepage": "https://symfony.com/contributors"
  1485. }
  1486. ],
  1487. "description": "Symfony polyfill for ctype functions",
  1488. "homepage": "https://symfony.com",
  1489. "keywords": [
  1490. "compatibility",
  1491. "ctype",
  1492. "polyfill",
  1493. "portable"
  1494. ],
  1495. "support": {
  1496. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  1497. },
  1498. "funding": [
  1499. {
  1500. "url": "https://symfony.com/sponsor",
  1501. "type": "custom"
  1502. },
  1503. {
  1504. "url": "https://github.com/fabpot",
  1505. "type": "github"
  1506. },
  1507. {
  1508. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1509. "type": "tidelift"
  1510. }
  1511. ],
  1512. "time": "2024-09-09T11:45:10+00:00"
  1513. },
  1514. {
  1515. "name": "symfony/polyfill-intl-grapheme",
  1516. "version": "v1.31.0",
  1517. "source": {
  1518. "type": "git",
  1519. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  1520. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  1521. },
  1522. "dist": {
  1523. "type": "zip",
  1524. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  1525. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  1526. "shasum": ""
  1527. },
  1528. "require": {
  1529. "php": ">=7.2"
  1530. },
  1531. "suggest": {
  1532. "ext-intl": "For best performance"
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "thanks": {
  1537. "name": "symfony/polyfill",
  1538. "url": "https://github.com/symfony/polyfill"
  1539. }
  1540. },
  1541. "autoload": {
  1542. "files": [
  1543. "bootstrap.php"
  1544. ],
  1545. "psr-4": {
  1546. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  1547. }
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "MIT"
  1552. ],
  1553. "authors": [
  1554. {
  1555. "name": "Nicolas Grekas",
  1556. "email": "p@tchwork.com"
  1557. },
  1558. {
  1559. "name": "Symfony Community",
  1560. "homepage": "https://symfony.com/contributors"
  1561. }
  1562. ],
  1563. "description": "Symfony polyfill for intl's grapheme_* functions",
  1564. "homepage": "https://symfony.com",
  1565. "keywords": [
  1566. "compatibility",
  1567. "grapheme",
  1568. "intl",
  1569. "polyfill",
  1570. "portable",
  1571. "shim"
  1572. ],
  1573. "support": {
  1574. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  1575. },
  1576. "funding": [
  1577. {
  1578. "url": "https://symfony.com/sponsor",
  1579. "type": "custom"
  1580. },
  1581. {
  1582. "url": "https://github.com/fabpot",
  1583. "type": "github"
  1584. },
  1585. {
  1586. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1587. "type": "tidelift"
  1588. }
  1589. ],
  1590. "time": "2024-09-09T11:45:10+00:00"
  1591. },
  1592. {
  1593. "name": "symfony/polyfill-intl-normalizer",
  1594. "version": "v1.31.0",
  1595. "source": {
  1596. "type": "git",
  1597. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1598. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  1599. },
  1600. "dist": {
  1601. "type": "zip",
  1602. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  1603. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  1604. "shasum": ""
  1605. },
  1606. "require": {
  1607. "php": ">=7.2"
  1608. },
  1609. "suggest": {
  1610. "ext-intl": "For best performance"
  1611. },
  1612. "type": "library",
  1613. "extra": {
  1614. "thanks": {
  1615. "name": "symfony/polyfill",
  1616. "url": "https://github.com/symfony/polyfill"
  1617. }
  1618. },
  1619. "autoload": {
  1620. "files": [
  1621. "bootstrap.php"
  1622. ],
  1623. "psr-4": {
  1624. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1625. },
  1626. "classmap": [
  1627. "Resources/stubs"
  1628. ]
  1629. },
  1630. "notification-url": "https://packagist.org/downloads/",
  1631. "license": [
  1632. "MIT"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "Nicolas Grekas",
  1637. "email": "p@tchwork.com"
  1638. },
  1639. {
  1640. "name": "Symfony Community",
  1641. "homepage": "https://symfony.com/contributors"
  1642. }
  1643. ],
  1644. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1645. "homepage": "https://symfony.com",
  1646. "keywords": [
  1647. "compatibility",
  1648. "intl",
  1649. "normalizer",
  1650. "polyfill",
  1651. "portable",
  1652. "shim"
  1653. ],
  1654. "support": {
  1655. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  1656. },
  1657. "funding": [
  1658. {
  1659. "url": "https://symfony.com/sponsor",
  1660. "type": "custom"
  1661. },
  1662. {
  1663. "url": "https://github.com/fabpot",
  1664. "type": "github"
  1665. },
  1666. {
  1667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1668. "type": "tidelift"
  1669. }
  1670. ],
  1671. "time": "2024-09-09T11:45:10+00:00"
  1672. },
  1673. {
  1674. "name": "symfony/polyfill-mbstring",
  1675. "version": "v1.31.0",
  1676. "source": {
  1677. "type": "git",
  1678. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1679. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  1680. },
  1681. "dist": {
  1682. "type": "zip",
  1683. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  1684. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  1685. "shasum": ""
  1686. },
  1687. "require": {
  1688. "php": ">=7.2"
  1689. },
  1690. "provide": {
  1691. "ext-mbstring": "*"
  1692. },
  1693. "suggest": {
  1694. "ext-mbstring": "For best performance"
  1695. },
  1696. "type": "library",
  1697. "extra": {
  1698. "thanks": {
  1699. "name": "symfony/polyfill",
  1700. "url": "https://github.com/symfony/polyfill"
  1701. }
  1702. },
  1703. "autoload": {
  1704. "files": [
  1705. "bootstrap.php"
  1706. ],
  1707. "psr-4": {
  1708. "Symfony\\Polyfill\\Mbstring\\": ""
  1709. }
  1710. },
  1711. "notification-url": "https://packagist.org/downloads/",
  1712. "license": [
  1713. "MIT"
  1714. ],
  1715. "authors": [
  1716. {
  1717. "name": "Nicolas Grekas",
  1718. "email": "p@tchwork.com"
  1719. },
  1720. {
  1721. "name": "Symfony Community",
  1722. "homepage": "https://symfony.com/contributors"
  1723. }
  1724. ],
  1725. "description": "Symfony polyfill for the Mbstring extension",
  1726. "homepage": "https://symfony.com",
  1727. "keywords": [
  1728. "compatibility",
  1729. "mbstring",
  1730. "polyfill",
  1731. "portable",
  1732. "shim"
  1733. ],
  1734. "support": {
  1735. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  1736. },
  1737. "funding": [
  1738. {
  1739. "url": "https://symfony.com/sponsor",
  1740. "type": "custom"
  1741. },
  1742. {
  1743. "url": "https://github.com/fabpot",
  1744. "type": "github"
  1745. },
  1746. {
  1747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1748. "type": "tidelift"
  1749. }
  1750. ],
  1751. "time": "2024-09-09T11:45:10+00:00"
  1752. },
  1753. {
  1754. "name": "symfony/service-contracts",
  1755. "version": "v3.5.0",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://github.com/symfony/service-contracts.git",
  1759. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  1764. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  1765. "shasum": ""
  1766. },
  1767. "require": {
  1768. "php": ">=8.1",
  1769. "psr/container": "^1.1|^2.0",
  1770. "symfony/deprecation-contracts": "^2.5|^3"
  1771. },
  1772. "conflict": {
  1773. "ext-psr": "<1.1|>=2"
  1774. },
  1775. "type": "library",
  1776. "extra": {
  1777. "branch-alias": {
  1778. "dev-main": "3.5-dev"
  1779. },
  1780. "thanks": {
  1781. "name": "symfony/contracts",
  1782. "url": "https://github.com/symfony/contracts"
  1783. }
  1784. },
  1785. "autoload": {
  1786. "psr-4": {
  1787. "Symfony\\Contracts\\Service\\": ""
  1788. },
  1789. "exclude-from-classmap": [
  1790. "/Test/"
  1791. ]
  1792. },
  1793. "notification-url": "https://packagist.org/downloads/",
  1794. "license": [
  1795. "MIT"
  1796. ],
  1797. "authors": [
  1798. {
  1799. "name": "Nicolas Grekas",
  1800. "email": "p@tchwork.com"
  1801. },
  1802. {
  1803. "name": "Symfony Community",
  1804. "homepage": "https://symfony.com/contributors"
  1805. }
  1806. ],
  1807. "description": "Generic abstractions related to writing services",
  1808. "homepage": "https://symfony.com",
  1809. "keywords": [
  1810. "abstractions",
  1811. "contracts",
  1812. "decoupling",
  1813. "interfaces",
  1814. "interoperability",
  1815. "standards"
  1816. ],
  1817. "support": {
  1818. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  1819. },
  1820. "funding": [
  1821. {
  1822. "url": "https://symfony.com/sponsor",
  1823. "type": "custom"
  1824. },
  1825. {
  1826. "url": "https://github.com/fabpot",
  1827. "type": "github"
  1828. },
  1829. {
  1830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1831. "type": "tidelift"
  1832. }
  1833. ],
  1834. "time": "2024-04-18T09:32:20+00:00"
  1835. },
  1836. {
  1837. "name": "symfony/string",
  1838. "version": "v6.4.11",
  1839. "source": {
  1840. "type": "git",
  1841. "url": "https://github.com/symfony/string.git",
  1842. "reference": "5bc3eb632cf9c8dbfd6529d89be9950d1518883b"
  1843. },
  1844. "dist": {
  1845. "type": "zip",
  1846. "url": "https://api.github.com/repos/symfony/string/zipball/5bc3eb632cf9c8dbfd6529d89be9950d1518883b",
  1847. "reference": "5bc3eb632cf9c8dbfd6529d89be9950d1518883b",
  1848. "shasum": ""
  1849. },
  1850. "require": {
  1851. "php": ">=8.1",
  1852. "symfony/polyfill-ctype": "~1.8",
  1853. "symfony/polyfill-intl-grapheme": "~1.0",
  1854. "symfony/polyfill-intl-normalizer": "~1.0",
  1855. "symfony/polyfill-mbstring": "~1.0"
  1856. },
  1857. "conflict": {
  1858. "symfony/translation-contracts": "<2.5"
  1859. },
  1860. "require-dev": {
  1861. "symfony/error-handler": "^5.4|^6.0|^7.0",
  1862. "symfony/http-client": "^5.4|^6.0|^7.0",
  1863. "symfony/intl": "^6.2|^7.0",
  1864. "symfony/translation-contracts": "^2.5|^3.0",
  1865. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  1866. },
  1867. "type": "library",
  1868. "autoload": {
  1869. "files": [
  1870. "Resources/functions.php"
  1871. ],
  1872. "psr-4": {
  1873. "Symfony\\Component\\String\\": ""
  1874. },
  1875. "exclude-from-classmap": [
  1876. "/Tests/"
  1877. ]
  1878. },
  1879. "notification-url": "https://packagist.org/downloads/",
  1880. "license": [
  1881. "MIT"
  1882. ],
  1883. "authors": [
  1884. {
  1885. "name": "Nicolas Grekas",
  1886. "email": "p@tchwork.com"
  1887. },
  1888. {
  1889. "name": "Symfony Community",
  1890. "homepage": "https://symfony.com/contributors"
  1891. }
  1892. ],
  1893. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  1894. "homepage": "https://symfony.com",
  1895. "keywords": [
  1896. "grapheme",
  1897. "i18n",
  1898. "string",
  1899. "unicode",
  1900. "utf-8",
  1901. "utf8"
  1902. ],
  1903. "support": {
  1904. "source": "https://github.com/symfony/string/tree/v6.4.11"
  1905. },
  1906. "funding": [
  1907. {
  1908. "url": "https://symfony.com/sponsor",
  1909. "type": "custom"
  1910. },
  1911. {
  1912. "url": "https://github.com/fabpot",
  1913. "type": "github"
  1914. },
  1915. {
  1916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1917. "type": "tidelift"
  1918. }
  1919. ],
  1920. "time": "2024-08-12T09:55:28+00:00"
  1921. },
  1922. {
  1923. "name": "vimeo/psalm",
  1924. "version": "5.26.1",
  1925. "source": {
  1926. "type": "git",
  1927. "url": "https://github.com/vimeo/psalm.git",
  1928. "reference": "d747f6500b38ac4f7dfc5edbcae6e4b637d7add0"
  1929. },
  1930. "dist": {
  1931. "type": "zip",
  1932. "url": "https://api.github.com/repos/vimeo/psalm/zipball/d747f6500b38ac4f7dfc5edbcae6e4b637d7add0",
  1933. "reference": "d747f6500b38ac4f7dfc5edbcae6e4b637d7add0",
  1934. "shasum": ""
  1935. },
  1936. "require": {
  1937. "amphp/amp": "^2.4.2",
  1938. "amphp/byte-stream": "^1.5",
  1939. "composer-runtime-api": "^2",
  1940. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  1941. "composer/xdebug-handler": "^2.0 || ^3.0",
  1942. "dnoegel/php-xdg-base-dir": "^0.1.1",
  1943. "ext-ctype": "*",
  1944. "ext-dom": "*",
  1945. "ext-json": "*",
  1946. "ext-libxml": "*",
  1947. "ext-mbstring": "*",
  1948. "ext-simplexml": "*",
  1949. "ext-tokenizer": "*",
  1950. "felixfbecker/advanced-json-rpc": "^3.1",
  1951. "felixfbecker/language-server-protocol": "^1.5.2",
  1952. "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1 || ^1.0.0",
  1953. "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
  1954. "nikic/php-parser": "^4.17",
  1955. "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
  1956. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  1957. "spatie/array-to-xml": "^2.17.0 || ^3.0",
  1958. "symfony/console": "^4.1.6 || ^5.0 || ^6.0 || ^7.0",
  1959. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0"
  1960. },
  1961. "conflict": {
  1962. "nikic/php-parser": "4.17.0"
  1963. },
  1964. "provide": {
  1965. "psalm/psalm": "self.version"
  1966. },
  1967. "require-dev": {
  1968. "amphp/phpunit-util": "^2.0",
  1969. "bamarni/composer-bin-plugin": "^1.4",
  1970. "brianium/paratest": "^6.9",
  1971. "ext-curl": "*",
  1972. "mockery/mockery": "^1.5",
  1973. "nunomaduro/mock-final-classes": "^1.1",
  1974. "php-parallel-lint/php-parallel-lint": "^1.2",
  1975. "phpstan/phpdoc-parser": "^1.6",
  1976. "phpunit/phpunit": "^9.6",
  1977. "psalm/plugin-mockery": "^1.1",
  1978. "psalm/plugin-phpunit": "^0.18",
  1979. "slevomat/coding-standard": "^8.4",
  1980. "squizlabs/php_codesniffer": "^3.6",
  1981. "symfony/process": "^4.4 || ^5.0 || ^6.0 || ^7.0"
  1982. },
  1983. "suggest": {
  1984. "ext-curl": "In order to send data to shepherd",
  1985. "ext-igbinary": "^2.0.5 is required, used to serialize caching data"
  1986. },
  1987. "bin": [
  1988. "psalm",
  1989. "psalm-language-server",
  1990. "psalm-plugin",
  1991. "psalm-refactor",
  1992. "psalter"
  1993. ],
  1994. "type": "project",
  1995. "extra": {
  1996. "branch-alias": {
  1997. "dev-master": "5.x-dev",
  1998. "dev-4.x": "4.x-dev",
  1999. "dev-3.x": "3.x-dev",
  2000. "dev-2.x": "2.x-dev",
  2001. "dev-1.x": "1.x-dev"
  2002. }
  2003. },
  2004. "autoload": {
  2005. "psr-4": {
  2006. "Psalm\\": "src/Psalm/"
  2007. }
  2008. },
  2009. "notification-url": "https://packagist.org/downloads/",
  2010. "license": [
  2011. "MIT"
  2012. ],
  2013. "authors": [
  2014. {
  2015. "name": "Matthew Brown"
  2016. }
  2017. ],
  2018. "description": "A static analysis tool for finding errors in PHP applications",
  2019. "keywords": [
  2020. "code",
  2021. "inspection",
  2022. "php",
  2023. "static analysis"
  2024. ],
  2025. "support": {
  2026. "docs": "https://psalm.dev/docs",
  2027. "issues": "https://github.com/vimeo/psalm/issues",
  2028. "source": "https://github.com/vimeo/psalm"
  2029. },
  2030. "time": "2024-09-08T18:53:08+00:00"
  2031. },
  2032. {
  2033. "name": "webmozart/assert",
  2034. "version": "1.11.0",
  2035. "source": {
  2036. "type": "git",
  2037. "url": "https://github.com/webmozarts/assert.git",
  2038. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  2039. },
  2040. "dist": {
  2041. "type": "zip",
  2042. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  2043. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  2044. "shasum": ""
  2045. },
  2046. "require": {
  2047. "ext-ctype": "*",
  2048. "php": "^7.2 || ^8.0"
  2049. },
  2050. "conflict": {
  2051. "phpstan/phpstan": "<0.12.20",
  2052. "vimeo/psalm": "<4.6.1 || 4.6.2"
  2053. },
  2054. "require-dev": {
  2055. "phpunit/phpunit": "^8.5.13"
  2056. },
  2057. "type": "library",
  2058. "extra": {
  2059. "branch-alias": {
  2060. "dev-master": "1.10-dev"
  2061. }
  2062. },
  2063. "autoload": {
  2064. "psr-4": {
  2065. "Webmozart\\Assert\\": "src/"
  2066. }
  2067. },
  2068. "notification-url": "https://packagist.org/downloads/",
  2069. "license": [
  2070. "MIT"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "Bernhard Schussek",
  2075. "email": "bschussek@gmail.com"
  2076. }
  2077. ],
  2078. "description": "Assertions to validate method input/output with nice error messages.",
  2079. "keywords": [
  2080. "assert",
  2081. "check",
  2082. "validate"
  2083. ],
  2084. "support": {
  2085. "issues": "https://github.com/webmozarts/assert/issues",
  2086. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  2087. },
  2088. "time": "2022-06-03T18:03:27+00:00"
  2089. }
  2090. ],
  2091. "packages-dev": [],
  2092. "aliases": [],
  2093. "minimum-stability": "stable",
  2094. "stability-flags": [],
  2095. "prefer-stable": false,
  2096. "prefer-lowest": false,
  2097. "platform": [],
  2098. "platform-dev": [],
  2099. "platform-overrides": {
  2100. "php": "8.1"
  2101. },
  2102. "plugin-api-version": "2.6.0"
  2103. }