composer.lock 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259
  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": "3c6bc45f8cc92ede530a2a5c08b4ad70",
  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.3",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/composer/semver.git",
  254. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  259. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  260. "shasum": ""
  261. },
  262. "require": {
  263. "php": "^5.3.2 || ^7.0 || ^8.0"
  264. },
  265. "require-dev": {
  266. "phpstan/phpstan": "^1.11",
  267. "symfony/phpunit-bridge": "^3 || ^7"
  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.3"
  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-09-19T14:15:21+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.3",
  527. "source": {
  528. "type": "git",
  529. "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
  530. "reference": "a9e113dbc7d849e35b8776da39edaf4313b7b6c9"
  531. },
  532. "dist": {
  533. "type": "zip",
  534. "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/a9e113dbc7d849e35b8776da39edaf4313b7b6c9",
  535. "reference": "a9e113dbc7d849e35b8776da39edaf4313b7b6c9",
  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.3"
  577. },
  578. "time": "2024-04-30T00:40:11+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.4",
  695. "source": {
  696. "type": "git",
  697. "url": "https://github.com/nikic/PHP-Parser.git",
  698. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  699. },
  700. "dist": {
  701. "type": "zip",
  702. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  703. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  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": "^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.4"
  745. },
  746. "time": "2024-09-29T15:01:53+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.33.0",
  926. "source": {
  927. "type": "git",
  928. "url": "https://github.com/phpstan/phpdoc-parser.git",
  929. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140"
  930. },
  931. "dist": {
  932. "type": "zip",
  933. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  934. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  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.33.0"
  967. },
  968. "time": "2024-10-13T11:25:22+00:00"
  969. },
  970. {
  971. "name": "psr/container",
  972. "version": "1.1.2",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/php-fig/container.git",
  976. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  981. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "php": ">=7.4.0"
  986. },
  987. "type": "library",
  988. "autoload": {
  989. "psr-4": {
  990. "Psr\\Container\\": "src/"
  991. }
  992. },
  993. "notification-url": "https://packagist.org/downloads/",
  994. "license": [
  995. "MIT"
  996. ],
  997. "authors": [
  998. {
  999. "name": "PHP-FIG",
  1000. "homepage": "https://www.php-fig.org/"
  1001. }
  1002. ],
  1003. "description": "Common Container Interface (PHP FIG PSR-11)",
  1004. "homepage": "https://github.com/php-fig/container",
  1005. "keywords": [
  1006. "PSR-11",
  1007. "container",
  1008. "container-interface",
  1009. "container-interop",
  1010. "psr"
  1011. ],
  1012. "support": {
  1013. "issues": "https://github.com/php-fig/container/issues",
  1014. "source": "https://github.com/php-fig/container/tree/1.1.2"
  1015. },
  1016. "time": "2021-11-05T16:50:12+00:00"
  1017. },
  1018. {
  1019. "name": "psr/log",
  1020. "version": "2.0.0",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/php-fig/log.git",
  1024. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  1029. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  1030. "shasum": ""
  1031. },
  1032. "require": {
  1033. "php": ">=8.0.0"
  1034. },
  1035. "type": "library",
  1036. "extra": {
  1037. "branch-alias": {
  1038. "dev-master": "2.0.x-dev"
  1039. }
  1040. },
  1041. "autoload": {
  1042. "psr-4": {
  1043. "Psr\\Log\\": "src"
  1044. }
  1045. },
  1046. "notification-url": "https://packagist.org/downloads/",
  1047. "license": [
  1048. "MIT"
  1049. ],
  1050. "authors": [
  1051. {
  1052. "name": "PHP-FIG",
  1053. "homepage": "https://www.php-fig.org/"
  1054. }
  1055. ],
  1056. "description": "Common interface for logging libraries",
  1057. "homepage": "https://github.com/php-fig/log",
  1058. "keywords": [
  1059. "log",
  1060. "psr",
  1061. "psr-3"
  1062. ],
  1063. "support": {
  1064. "source": "https://github.com/php-fig/log/tree/2.0.0"
  1065. },
  1066. "time": "2021-07-14T16:41:46+00:00"
  1067. },
  1068. {
  1069. "name": "sebastian/diff",
  1070. "version": "4.0.6",
  1071. "source": {
  1072. "type": "git",
  1073. "url": "https://github.com/sebastianbergmann/diff.git",
  1074. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  1075. },
  1076. "dist": {
  1077. "type": "zip",
  1078. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  1079. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  1080. "shasum": ""
  1081. },
  1082. "require": {
  1083. "php": ">=7.3"
  1084. },
  1085. "require-dev": {
  1086. "phpunit/phpunit": "^9.3",
  1087. "symfony/process": "^4.2 || ^5"
  1088. },
  1089. "type": "library",
  1090. "extra": {
  1091. "branch-alias": {
  1092. "dev-master": "4.0-dev"
  1093. }
  1094. },
  1095. "autoload": {
  1096. "classmap": [
  1097. "src/"
  1098. ]
  1099. },
  1100. "notification-url": "https://packagist.org/downloads/",
  1101. "license": [
  1102. "BSD-3-Clause"
  1103. ],
  1104. "authors": [
  1105. {
  1106. "name": "Sebastian Bergmann",
  1107. "email": "sebastian@phpunit.de"
  1108. },
  1109. {
  1110. "name": "Kore Nordmann",
  1111. "email": "mail@kore-nordmann.de"
  1112. }
  1113. ],
  1114. "description": "Diff implementation",
  1115. "homepage": "https://github.com/sebastianbergmann/diff",
  1116. "keywords": [
  1117. "diff",
  1118. "udiff",
  1119. "unidiff",
  1120. "unified diff"
  1121. ],
  1122. "support": {
  1123. "issues": "https://github.com/sebastianbergmann/diff/issues",
  1124. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  1125. },
  1126. "funding": [
  1127. {
  1128. "url": "https://github.com/sebastianbergmann",
  1129. "type": "github"
  1130. }
  1131. ],
  1132. "time": "2024-03-02T06:30:58+00:00"
  1133. },
  1134. {
  1135. "name": "spatie/array-to-xml",
  1136. "version": "3.3.0",
  1137. "source": {
  1138. "type": "git",
  1139. "url": "https://github.com/spatie/array-to-xml.git",
  1140. "reference": "f56b220fe2db1ade4c88098d83413ebdfc3bf876"
  1141. },
  1142. "dist": {
  1143. "type": "zip",
  1144. "url": "https://api.github.com/repos/spatie/array-to-xml/zipball/f56b220fe2db1ade4c88098d83413ebdfc3bf876",
  1145. "reference": "f56b220fe2db1ade4c88098d83413ebdfc3bf876",
  1146. "shasum": ""
  1147. },
  1148. "require": {
  1149. "ext-dom": "*",
  1150. "php": "^8.0"
  1151. },
  1152. "require-dev": {
  1153. "mockery/mockery": "^1.2",
  1154. "pestphp/pest": "^1.21",
  1155. "spatie/pest-plugin-snapshots": "^1.1"
  1156. },
  1157. "type": "library",
  1158. "extra": {
  1159. "branch-alias": {
  1160. "dev-main": "3.x-dev"
  1161. }
  1162. },
  1163. "autoload": {
  1164. "psr-4": {
  1165. "Spatie\\ArrayToXml\\": "src"
  1166. }
  1167. },
  1168. "notification-url": "https://packagist.org/downloads/",
  1169. "license": [
  1170. "MIT"
  1171. ],
  1172. "authors": [
  1173. {
  1174. "name": "Freek Van der Herten",
  1175. "email": "freek@spatie.be",
  1176. "homepage": "https://freek.dev",
  1177. "role": "Developer"
  1178. }
  1179. ],
  1180. "description": "Convert an array to xml",
  1181. "homepage": "https://github.com/spatie/array-to-xml",
  1182. "keywords": [
  1183. "array",
  1184. "convert",
  1185. "xml"
  1186. ],
  1187. "support": {
  1188. "source": "https://github.com/spatie/array-to-xml/tree/3.3.0"
  1189. },
  1190. "funding": [
  1191. {
  1192. "url": "https://spatie.be/open-source/support-us",
  1193. "type": "custom"
  1194. },
  1195. {
  1196. "url": "https://github.com/spatie",
  1197. "type": "github"
  1198. }
  1199. ],
  1200. "time": "2024-05-01T10:20:27+00:00"
  1201. },
  1202. {
  1203. "name": "symfony/console",
  1204. "version": "v5.4.45",
  1205. "source": {
  1206. "type": "git",
  1207. "url": "https://github.com/symfony/console.git",
  1208. "reference": "108d436c2af470858bdaba3257baab3a74172017"
  1209. },
  1210. "dist": {
  1211. "type": "zip",
  1212. "url": "https://api.github.com/repos/symfony/console/zipball/108d436c2af470858bdaba3257baab3a74172017",
  1213. "reference": "108d436c2af470858bdaba3257baab3a74172017",
  1214. "shasum": ""
  1215. },
  1216. "require": {
  1217. "php": ">=7.2.5",
  1218. "symfony/deprecation-contracts": "^2.1|^3",
  1219. "symfony/polyfill-mbstring": "~1.0",
  1220. "symfony/polyfill-php73": "^1.9",
  1221. "symfony/polyfill-php80": "^1.16",
  1222. "symfony/service-contracts": "^1.1|^2|^3",
  1223. "symfony/string": "^5.1|^6.0"
  1224. },
  1225. "conflict": {
  1226. "psr/log": ">=3",
  1227. "symfony/dependency-injection": "<4.4",
  1228. "symfony/dotenv": "<5.1",
  1229. "symfony/event-dispatcher": "<4.4",
  1230. "symfony/lock": "<4.4",
  1231. "symfony/process": "<4.4"
  1232. },
  1233. "provide": {
  1234. "psr/log-implementation": "1.0|2.0"
  1235. },
  1236. "require-dev": {
  1237. "psr/log": "^1|^2",
  1238. "symfony/config": "^4.4|^5.0|^6.0",
  1239. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  1240. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  1241. "symfony/lock": "^4.4|^5.0|^6.0",
  1242. "symfony/process": "^4.4|^5.0|^6.0",
  1243. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  1244. },
  1245. "suggest": {
  1246. "psr/log": "For using the console logger",
  1247. "symfony/event-dispatcher": "",
  1248. "symfony/lock": "",
  1249. "symfony/process": ""
  1250. },
  1251. "type": "library",
  1252. "autoload": {
  1253. "psr-4": {
  1254. "Symfony\\Component\\Console\\": ""
  1255. },
  1256. "exclude-from-classmap": [
  1257. "/Tests/"
  1258. ]
  1259. },
  1260. "notification-url": "https://packagist.org/downloads/",
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "Fabien Potencier",
  1267. "email": "fabien@symfony.com"
  1268. },
  1269. {
  1270. "name": "Symfony Community",
  1271. "homepage": "https://symfony.com/contributors"
  1272. }
  1273. ],
  1274. "description": "Eases the creation of beautiful and testable command line interfaces",
  1275. "homepage": "https://symfony.com",
  1276. "keywords": [
  1277. "cli",
  1278. "command-line",
  1279. "console",
  1280. "terminal"
  1281. ],
  1282. "support": {
  1283. "source": "https://github.com/symfony/console/tree/v5.4.45"
  1284. },
  1285. "funding": [
  1286. {
  1287. "url": "https://symfony.com/sponsor",
  1288. "type": "custom"
  1289. },
  1290. {
  1291. "url": "https://github.com/fabpot",
  1292. "type": "github"
  1293. },
  1294. {
  1295. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1296. "type": "tidelift"
  1297. }
  1298. ],
  1299. "time": "2024-10-08T07:27:17+00:00"
  1300. },
  1301. {
  1302. "name": "symfony/deprecation-contracts",
  1303. "version": "v2.5.3",
  1304. "source": {
  1305. "type": "git",
  1306. "url": "https://github.com/symfony/deprecation-contracts.git",
  1307. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  1308. },
  1309. "dist": {
  1310. "type": "zip",
  1311. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  1312. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  1313. "shasum": ""
  1314. },
  1315. "require": {
  1316. "php": ">=7.1"
  1317. },
  1318. "type": "library",
  1319. "extra": {
  1320. "branch-alias": {
  1321. "dev-main": "2.5-dev"
  1322. },
  1323. "thanks": {
  1324. "name": "symfony/contracts",
  1325. "url": "https://github.com/symfony/contracts"
  1326. }
  1327. },
  1328. "autoload": {
  1329. "files": [
  1330. "function.php"
  1331. ]
  1332. },
  1333. "notification-url": "https://packagist.org/downloads/",
  1334. "license": [
  1335. "MIT"
  1336. ],
  1337. "authors": [
  1338. {
  1339. "name": "Nicolas Grekas",
  1340. "email": "p@tchwork.com"
  1341. },
  1342. {
  1343. "name": "Symfony Community",
  1344. "homepage": "https://symfony.com/contributors"
  1345. }
  1346. ],
  1347. "description": "A generic function and convention to trigger deprecation notices",
  1348. "homepage": "https://symfony.com",
  1349. "support": {
  1350. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  1351. },
  1352. "funding": [
  1353. {
  1354. "url": "https://symfony.com/sponsor",
  1355. "type": "custom"
  1356. },
  1357. {
  1358. "url": "https://github.com/fabpot",
  1359. "type": "github"
  1360. },
  1361. {
  1362. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1363. "type": "tidelift"
  1364. }
  1365. ],
  1366. "time": "2023-01-24T14:02:46+00:00"
  1367. },
  1368. {
  1369. "name": "symfony/filesystem",
  1370. "version": "v5.4.45",
  1371. "source": {
  1372. "type": "git",
  1373. "url": "https://github.com/symfony/filesystem.git",
  1374. "reference": "57c8294ed37d4a055b77057827c67f9558c95c54"
  1375. },
  1376. "dist": {
  1377. "type": "zip",
  1378. "url": "https://api.github.com/repos/symfony/filesystem/zipball/57c8294ed37d4a055b77057827c67f9558c95c54",
  1379. "reference": "57c8294ed37d4a055b77057827c67f9558c95c54",
  1380. "shasum": ""
  1381. },
  1382. "require": {
  1383. "php": ">=7.2.5",
  1384. "symfony/polyfill-ctype": "~1.8",
  1385. "symfony/polyfill-mbstring": "~1.8",
  1386. "symfony/polyfill-php80": "^1.16"
  1387. },
  1388. "require-dev": {
  1389. "symfony/process": "^5.4|^6.4"
  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/v5.4.45"
  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-10-22T13:05:35+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/polyfill-php73",
  1755. "version": "v1.31.0",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://github.com/symfony/polyfill-php73.git",
  1759. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  1764. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  1765. "shasum": ""
  1766. },
  1767. "require": {
  1768. "php": ">=7.2"
  1769. },
  1770. "type": "library",
  1771. "extra": {
  1772. "thanks": {
  1773. "name": "symfony/polyfill",
  1774. "url": "https://github.com/symfony/polyfill"
  1775. }
  1776. },
  1777. "autoload": {
  1778. "files": [
  1779. "bootstrap.php"
  1780. ],
  1781. "psr-4": {
  1782. "Symfony\\Polyfill\\Php73\\": ""
  1783. },
  1784. "classmap": [
  1785. "Resources/stubs"
  1786. ]
  1787. },
  1788. "notification-url": "https://packagist.org/downloads/",
  1789. "license": [
  1790. "MIT"
  1791. ],
  1792. "authors": [
  1793. {
  1794. "name": "Nicolas Grekas",
  1795. "email": "p@tchwork.com"
  1796. },
  1797. {
  1798. "name": "Symfony Community",
  1799. "homepage": "https://symfony.com/contributors"
  1800. }
  1801. ],
  1802. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  1803. "homepage": "https://symfony.com",
  1804. "keywords": [
  1805. "compatibility",
  1806. "polyfill",
  1807. "portable",
  1808. "shim"
  1809. ],
  1810. "support": {
  1811. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  1812. },
  1813. "funding": [
  1814. {
  1815. "url": "https://symfony.com/sponsor",
  1816. "type": "custom"
  1817. },
  1818. {
  1819. "url": "https://github.com/fabpot",
  1820. "type": "github"
  1821. },
  1822. {
  1823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1824. "type": "tidelift"
  1825. }
  1826. ],
  1827. "time": "2024-09-09T11:45:10+00:00"
  1828. },
  1829. {
  1830. "name": "symfony/polyfill-php80",
  1831. "version": "v1.31.0",
  1832. "source": {
  1833. "type": "git",
  1834. "url": "https://github.com/symfony/polyfill-php80.git",
  1835. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  1836. },
  1837. "dist": {
  1838. "type": "zip",
  1839. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  1840. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  1841. "shasum": ""
  1842. },
  1843. "require": {
  1844. "php": ">=7.2"
  1845. },
  1846. "type": "library",
  1847. "extra": {
  1848. "thanks": {
  1849. "name": "symfony/polyfill",
  1850. "url": "https://github.com/symfony/polyfill"
  1851. }
  1852. },
  1853. "autoload": {
  1854. "files": [
  1855. "bootstrap.php"
  1856. ],
  1857. "psr-4": {
  1858. "Symfony\\Polyfill\\Php80\\": ""
  1859. },
  1860. "classmap": [
  1861. "Resources/stubs"
  1862. ]
  1863. },
  1864. "notification-url": "https://packagist.org/downloads/",
  1865. "license": [
  1866. "MIT"
  1867. ],
  1868. "authors": [
  1869. {
  1870. "name": "Ion Bazan",
  1871. "email": "ion.bazan@gmail.com"
  1872. },
  1873. {
  1874. "name": "Nicolas Grekas",
  1875. "email": "p@tchwork.com"
  1876. },
  1877. {
  1878. "name": "Symfony Community",
  1879. "homepage": "https://symfony.com/contributors"
  1880. }
  1881. ],
  1882. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1883. "homepage": "https://symfony.com",
  1884. "keywords": [
  1885. "compatibility",
  1886. "polyfill",
  1887. "portable",
  1888. "shim"
  1889. ],
  1890. "support": {
  1891. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  1892. },
  1893. "funding": [
  1894. {
  1895. "url": "https://symfony.com/sponsor",
  1896. "type": "custom"
  1897. },
  1898. {
  1899. "url": "https://github.com/fabpot",
  1900. "type": "github"
  1901. },
  1902. {
  1903. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1904. "type": "tidelift"
  1905. }
  1906. ],
  1907. "time": "2024-09-09T11:45:10+00:00"
  1908. },
  1909. {
  1910. "name": "symfony/service-contracts",
  1911. "version": "v2.5.3",
  1912. "source": {
  1913. "type": "git",
  1914. "url": "https://github.com/symfony/service-contracts.git",
  1915. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
  1916. },
  1917. "dist": {
  1918. "type": "zip",
  1919. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  1920. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  1921. "shasum": ""
  1922. },
  1923. "require": {
  1924. "php": ">=7.2.5",
  1925. "psr/container": "^1.1",
  1926. "symfony/deprecation-contracts": "^2.1|^3"
  1927. },
  1928. "conflict": {
  1929. "ext-psr": "<1.1|>=2"
  1930. },
  1931. "suggest": {
  1932. "symfony/service-implementation": ""
  1933. },
  1934. "type": "library",
  1935. "extra": {
  1936. "branch-alias": {
  1937. "dev-main": "2.5-dev"
  1938. },
  1939. "thanks": {
  1940. "name": "symfony/contracts",
  1941. "url": "https://github.com/symfony/contracts"
  1942. }
  1943. },
  1944. "autoload": {
  1945. "psr-4": {
  1946. "Symfony\\Contracts\\Service\\": ""
  1947. }
  1948. },
  1949. "notification-url": "https://packagist.org/downloads/",
  1950. "license": [
  1951. "MIT"
  1952. ],
  1953. "authors": [
  1954. {
  1955. "name": "Nicolas Grekas",
  1956. "email": "p@tchwork.com"
  1957. },
  1958. {
  1959. "name": "Symfony Community",
  1960. "homepage": "https://symfony.com/contributors"
  1961. }
  1962. ],
  1963. "description": "Generic abstractions related to writing services",
  1964. "homepage": "https://symfony.com",
  1965. "keywords": [
  1966. "abstractions",
  1967. "contracts",
  1968. "decoupling",
  1969. "interfaces",
  1970. "interoperability",
  1971. "standards"
  1972. ],
  1973. "support": {
  1974. "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
  1975. },
  1976. "funding": [
  1977. {
  1978. "url": "https://symfony.com/sponsor",
  1979. "type": "custom"
  1980. },
  1981. {
  1982. "url": "https://github.com/fabpot",
  1983. "type": "github"
  1984. },
  1985. {
  1986. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1987. "type": "tidelift"
  1988. }
  1989. ],
  1990. "time": "2023-04-21T15:04:16+00:00"
  1991. },
  1992. {
  1993. "name": "symfony/string",
  1994. "version": "v5.4.45",
  1995. "source": {
  1996. "type": "git",
  1997. "url": "https://github.com/symfony/string.git",
  1998. "reference": "7f6807add88b1e2635f3c6de5e1ace631ed7cad2"
  1999. },
  2000. "dist": {
  2001. "type": "zip",
  2002. "url": "https://api.github.com/repos/symfony/string/zipball/7f6807add88b1e2635f3c6de5e1ace631ed7cad2",
  2003. "reference": "7f6807add88b1e2635f3c6de5e1ace631ed7cad2",
  2004. "shasum": ""
  2005. },
  2006. "require": {
  2007. "php": ">=7.2.5",
  2008. "symfony/polyfill-ctype": "~1.8",
  2009. "symfony/polyfill-intl-grapheme": "~1.0",
  2010. "symfony/polyfill-intl-normalizer": "~1.0",
  2011. "symfony/polyfill-mbstring": "~1.0",
  2012. "symfony/polyfill-php80": "~1.15"
  2013. },
  2014. "conflict": {
  2015. "symfony/translation-contracts": ">=3.0"
  2016. },
  2017. "require-dev": {
  2018. "symfony/error-handler": "^4.4|^5.0|^6.0",
  2019. "symfony/http-client": "^4.4|^5.0|^6.0",
  2020. "symfony/translation-contracts": "^1.1|^2",
  2021. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2022. },
  2023. "type": "library",
  2024. "autoload": {
  2025. "files": [
  2026. "Resources/functions.php"
  2027. ],
  2028. "psr-4": {
  2029. "Symfony\\Component\\String\\": ""
  2030. },
  2031. "exclude-from-classmap": [
  2032. "/Tests/"
  2033. ]
  2034. },
  2035. "notification-url": "https://packagist.org/downloads/",
  2036. "license": [
  2037. "MIT"
  2038. ],
  2039. "authors": [
  2040. {
  2041. "name": "Nicolas Grekas",
  2042. "email": "p@tchwork.com"
  2043. },
  2044. {
  2045. "name": "Symfony Community",
  2046. "homepage": "https://symfony.com/contributors"
  2047. }
  2048. ],
  2049. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  2050. "homepage": "https://symfony.com",
  2051. "keywords": [
  2052. "grapheme",
  2053. "i18n",
  2054. "string",
  2055. "unicode",
  2056. "utf-8",
  2057. "utf8"
  2058. ],
  2059. "support": {
  2060. "source": "https://github.com/symfony/string/tree/v5.4.45"
  2061. },
  2062. "funding": [
  2063. {
  2064. "url": "https://symfony.com/sponsor",
  2065. "type": "custom"
  2066. },
  2067. {
  2068. "url": "https://github.com/fabpot",
  2069. "type": "github"
  2070. },
  2071. {
  2072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2073. "type": "tidelift"
  2074. }
  2075. ],
  2076. "time": "2024-09-25T14:11:13+00:00"
  2077. },
  2078. {
  2079. "name": "vimeo/psalm",
  2080. "version": "5.26.1",
  2081. "source": {
  2082. "type": "git",
  2083. "url": "https://github.com/vimeo/psalm.git",
  2084. "reference": "d747f6500b38ac4f7dfc5edbcae6e4b637d7add0"
  2085. },
  2086. "dist": {
  2087. "type": "zip",
  2088. "url": "https://api.github.com/repos/vimeo/psalm/zipball/d747f6500b38ac4f7dfc5edbcae6e4b637d7add0",
  2089. "reference": "d747f6500b38ac4f7dfc5edbcae6e4b637d7add0",
  2090. "shasum": ""
  2091. },
  2092. "require": {
  2093. "amphp/amp": "^2.4.2",
  2094. "amphp/byte-stream": "^1.5",
  2095. "composer-runtime-api": "^2",
  2096. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  2097. "composer/xdebug-handler": "^2.0 || ^3.0",
  2098. "dnoegel/php-xdg-base-dir": "^0.1.1",
  2099. "ext-ctype": "*",
  2100. "ext-dom": "*",
  2101. "ext-json": "*",
  2102. "ext-libxml": "*",
  2103. "ext-mbstring": "*",
  2104. "ext-simplexml": "*",
  2105. "ext-tokenizer": "*",
  2106. "felixfbecker/advanced-json-rpc": "^3.1",
  2107. "felixfbecker/language-server-protocol": "^1.5.2",
  2108. "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1 || ^1.0.0",
  2109. "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
  2110. "nikic/php-parser": "^4.17",
  2111. "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
  2112. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  2113. "spatie/array-to-xml": "^2.17.0 || ^3.0",
  2114. "symfony/console": "^4.1.6 || ^5.0 || ^6.0 || ^7.0",
  2115. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0"
  2116. },
  2117. "conflict": {
  2118. "nikic/php-parser": "4.17.0"
  2119. },
  2120. "provide": {
  2121. "psalm/psalm": "self.version"
  2122. },
  2123. "require-dev": {
  2124. "amphp/phpunit-util": "^2.0",
  2125. "bamarni/composer-bin-plugin": "^1.4",
  2126. "brianium/paratest": "^6.9",
  2127. "ext-curl": "*",
  2128. "mockery/mockery": "^1.5",
  2129. "nunomaduro/mock-final-classes": "^1.1",
  2130. "php-parallel-lint/php-parallel-lint": "^1.2",
  2131. "phpstan/phpdoc-parser": "^1.6",
  2132. "phpunit/phpunit": "^9.6",
  2133. "psalm/plugin-mockery": "^1.1",
  2134. "psalm/plugin-phpunit": "^0.18",
  2135. "slevomat/coding-standard": "^8.4",
  2136. "squizlabs/php_codesniffer": "^3.6",
  2137. "symfony/process": "^4.4 || ^5.0 || ^6.0 || ^7.0"
  2138. },
  2139. "suggest": {
  2140. "ext-curl": "In order to send data to shepherd",
  2141. "ext-igbinary": "^2.0.5 is required, used to serialize caching data"
  2142. },
  2143. "bin": [
  2144. "psalm",
  2145. "psalm-language-server",
  2146. "psalm-plugin",
  2147. "psalm-refactor",
  2148. "psalter"
  2149. ],
  2150. "type": "project",
  2151. "extra": {
  2152. "branch-alias": {
  2153. "dev-master": "5.x-dev",
  2154. "dev-4.x": "4.x-dev",
  2155. "dev-3.x": "3.x-dev",
  2156. "dev-2.x": "2.x-dev",
  2157. "dev-1.x": "1.x-dev"
  2158. }
  2159. },
  2160. "autoload": {
  2161. "psr-4": {
  2162. "Psalm\\": "src/Psalm/"
  2163. }
  2164. },
  2165. "notification-url": "https://packagist.org/downloads/",
  2166. "license": [
  2167. "MIT"
  2168. ],
  2169. "authors": [
  2170. {
  2171. "name": "Matthew Brown"
  2172. }
  2173. ],
  2174. "description": "A static analysis tool for finding errors in PHP applications",
  2175. "keywords": [
  2176. "code",
  2177. "inspection",
  2178. "php",
  2179. "static analysis"
  2180. ],
  2181. "support": {
  2182. "docs": "https://psalm.dev/docs",
  2183. "issues": "https://github.com/vimeo/psalm/issues",
  2184. "source": "https://github.com/vimeo/psalm"
  2185. },
  2186. "time": "2024-09-08T18:53:08+00:00"
  2187. },
  2188. {
  2189. "name": "webmozart/assert",
  2190. "version": "1.11.0",
  2191. "source": {
  2192. "type": "git",
  2193. "url": "https://github.com/webmozarts/assert.git",
  2194. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  2195. },
  2196. "dist": {
  2197. "type": "zip",
  2198. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  2199. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  2200. "shasum": ""
  2201. },
  2202. "require": {
  2203. "ext-ctype": "*",
  2204. "php": "^7.2 || ^8.0"
  2205. },
  2206. "conflict": {
  2207. "phpstan/phpstan": "<0.12.20",
  2208. "vimeo/psalm": "<4.6.1 || 4.6.2"
  2209. },
  2210. "require-dev": {
  2211. "phpunit/phpunit": "^8.5.13"
  2212. },
  2213. "type": "library",
  2214. "extra": {
  2215. "branch-alias": {
  2216. "dev-master": "1.10-dev"
  2217. }
  2218. },
  2219. "autoload": {
  2220. "psr-4": {
  2221. "Webmozart\\Assert\\": "src/"
  2222. }
  2223. },
  2224. "notification-url": "https://packagist.org/downloads/",
  2225. "license": [
  2226. "MIT"
  2227. ],
  2228. "authors": [
  2229. {
  2230. "name": "Bernhard Schussek",
  2231. "email": "bschussek@gmail.com"
  2232. }
  2233. ],
  2234. "description": "Assertions to validate method input/output with nice error messages.",
  2235. "keywords": [
  2236. "assert",
  2237. "check",
  2238. "validate"
  2239. ],
  2240. "support": {
  2241. "issues": "https://github.com/webmozarts/assert/issues",
  2242. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  2243. },
  2244. "time": "2022-06-03T18:03:27+00:00"
  2245. }
  2246. ],
  2247. "packages-dev": [],
  2248. "aliases": [],
  2249. "minimum-stability": "stable",
  2250. "stability-flags": {},
  2251. "prefer-stable": false,
  2252. "prefer-lowest": false,
  2253. "platform": {},
  2254. "platform-dev": {},
  2255. "platform-overrides": {
  2256. "php": "8.0"
  2257. },
  2258. "plugin-api-version": "2.6.0"
  2259. }