composer.lock 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349
  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": "0fe1ca3c3cbf17aa53402929dca7aaff",
  8. "packages": [
  9. {
  10. "name": "composer/class-map-generator",
  11. "version": "1.7.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/class-map-generator.git",
  15. "reference": "2373419b7709815ed323ebf18c3c72d03ff4a8a6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/2373419b7709815ed323ebf18c3c72d03ff4a8a6",
  20. "reference": "2373419b7709815ed323ebf18c3c72d03ff4a8a6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer/pcre": "^2.1 || ^3.1",
  25. "php": "^7.2 || ^8.0",
  26. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7 || ^8"
  27. },
  28. "require-dev": {
  29. "phpstan/phpstan": "^1.12 || ^2",
  30. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  31. "phpstan/phpstan-phpunit": "^1 || ^2",
  32. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  33. "phpunit/phpunit": "^8",
  34. "symfony/filesystem": "^5.4 || ^6 || ^7 || ^8"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "branch-alias": {
  39. "dev-main": "1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "Composer\\ClassMapGenerator\\": "src"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Jordi Boggiano",
  54. "email": "j.boggiano@seld.be",
  55. "homepage": "https://seld.be"
  56. }
  57. ],
  58. "description": "Utilities to scan PHP code and generate class maps.",
  59. "keywords": [
  60. "classmap"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/composer/class-map-generator/issues",
  64. "source": "https://github.com/composer/class-map-generator/tree/1.7.0"
  65. },
  66. "funding": [
  67. {
  68. "url": "https://packagist.com",
  69. "type": "custom"
  70. },
  71. {
  72. "url": "https://github.com/composer",
  73. "type": "github"
  74. }
  75. ],
  76. "time": "2025-11-19T10:41:15+00:00"
  77. },
  78. {
  79. "name": "composer/pcre",
  80. "version": "3.3.2",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/composer/pcre.git",
  84. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  89. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "php": "^7.4 || ^8.0"
  94. },
  95. "conflict": {
  96. "phpstan/phpstan": "<1.11.10"
  97. },
  98. "require-dev": {
  99. "phpstan/phpstan": "^1.12 || ^2",
  100. "phpstan/phpstan-strict-rules": "^1 || ^2",
  101. "phpunit/phpunit": "^8 || ^9"
  102. },
  103. "type": "library",
  104. "extra": {
  105. "phpstan": {
  106. "includes": [
  107. "extension.neon"
  108. ]
  109. },
  110. "branch-alias": {
  111. "dev-main": "3.x-dev"
  112. }
  113. },
  114. "autoload": {
  115. "psr-4": {
  116. "Composer\\Pcre\\": "src"
  117. }
  118. },
  119. "notification-url": "https://packagist.org/downloads/",
  120. "license": [
  121. "MIT"
  122. ],
  123. "authors": [
  124. {
  125. "name": "Jordi Boggiano",
  126. "email": "j.boggiano@seld.be",
  127. "homepage": "http://seld.be"
  128. }
  129. ],
  130. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  131. "keywords": [
  132. "PCRE",
  133. "preg",
  134. "regex",
  135. "regular expression"
  136. ],
  137. "support": {
  138. "issues": "https://github.com/composer/pcre/issues",
  139. "source": "https://github.com/composer/pcre/tree/3.3.2"
  140. },
  141. "funding": [
  142. {
  143. "url": "https://packagist.com",
  144. "type": "custom"
  145. },
  146. {
  147. "url": "https://github.com/composer",
  148. "type": "github"
  149. },
  150. {
  151. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  152. "type": "tidelift"
  153. }
  154. ],
  155. "time": "2024-11-12T16:29:46+00:00"
  156. },
  157. {
  158. "name": "nikic/php-parser",
  159. "version": "v5.7.0",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/nikic/PHP-Parser.git",
  163. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  168. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "ext-ctype": "*",
  173. "ext-json": "*",
  174. "ext-tokenizer": "*",
  175. "php": ">=7.4"
  176. },
  177. "require-dev": {
  178. "ircmaxell/php-yacc": "^0.0.7",
  179. "phpunit/phpunit": "^9.0"
  180. },
  181. "bin": [
  182. "bin/php-parse"
  183. ],
  184. "type": "library",
  185. "extra": {
  186. "branch-alias": {
  187. "dev-master": "5.x-dev"
  188. }
  189. },
  190. "autoload": {
  191. "psr-4": {
  192. "PhpParser\\": "lib/PhpParser"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "BSD-3-Clause"
  198. ],
  199. "authors": [
  200. {
  201. "name": "Nikita Popov"
  202. }
  203. ],
  204. "description": "A PHP parser written in PHP",
  205. "keywords": [
  206. "parser",
  207. "php"
  208. ],
  209. "support": {
  210. "issues": "https://github.com/nikic/PHP-Parser/issues",
  211. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  212. },
  213. "time": "2025-12-06T11:56:16+00:00"
  214. },
  215. {
  216. "name": "psr/container",
  217. "version": "1.1.2",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/php-fig/container.git",
  221. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  226. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "php": ">=7.4.0"
  231. },
  232. "type": "library",
  233. "autoload": {
  234. "psr-4": {
  235. "Psr\\Container\\": "src/"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "MIT"
  241. ],
  242. "authors": [
  243. {
  244. "name": "PHP-FIG",
  245. "homepage": "https://www.php-fig.org/"
  246. }
  247. ],
  248. "description": "Common Container Interface (PHP FIG PSR-11)",
  249. "homepage": "https://github.com/php-fig/container",
  250. "keywords": [
  251. "PSR-11",
  252. "container",
  253. "container-interface",
  254. "container-interop",
  255. "psr"
  256. ],
  257. "support": {
  258. "issues": "https://github.com/php-fig/container/issues",
  259. "source": "https://github.com/php-fig/container/tree/1.1.2"
  260. },
  261. "time": "2021-11-05T16:50:12+00:00"
  262. },
  263. {
  264. "name": "symfony/console",
  265. "version": "v5.4.47",
  266. "source": {
  267. "type": "git",
  268. "url": "https://github.com/symfony/console.git",
  269. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  270. },
  271. "dist": {
  272. "type": "zip",
  273. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  274. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  275. "shasum": ""
  276. },
  277. "require": {
  278. "php": ">=7.2.5",
  279. "symfony/deprecation-contracts": "^2.1|^3",
  280. "symfony/polyfill-mbstring": "~1.0",
  281. "symfony/polyfill-php73": "^1.9",
  282. "symfony/polyfill-php80": "^1.16",
  283. "symfony/service-contracts": "^1.1|^2|^3",
  284. "symfony/string": "^5.1|^6.0"
  285. },
  286. "conflict": {
  287. "psr/log": ">=3",
  288. "symfony/dependency-injection": "<4.4",
  289. "symfony/dotenv": "<5.1",
  290. "symfony/event-dispatcher": "<4.4",
  291. "symfony/lock": "<4.4",
  292. "symfony/process": "<4.4"
  293. },
  294. "provide": {
  295. "psr/log-implementation": "1.0|2.0"
  296. },
  297. "require-dev": {
  298. "psr/log": "^1|^2",
  299. "symfony/config": "^4.4|^5.0|^6.0",
  300. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  301. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  302. "symfony/lock": "^4.4|^5.0|^6.0",
  303. "symfony/process": "^4.4|^5.0|^6.0",
  304. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  305. },
  306. "suggest": {
  307. "psr/log": "For using the console logger",
  308. "symfony/event-dispatcher": "",
  309. "symfony/lock": "",
  310. "symfony/process": ""
  311. },
  312. "type": "library",
  313. "autoload": {
  314. "psr-4": {
  315. "Symfony\\Component\\Console\\": ""
  316. },
  317. "exclude-from-classmap": [
  318. "/Tests/"
  319. ]
  320. },
  321. "notification-url": "https://packagist.org/downloads/",
  322. "license": [
  323. "MIT"
  324. ],
  325. "authors": [
  326. {
  327. "name": "Fabien Potencier",
  328. "email": "fabien@symfony.com"
  329. },
  330. {
  331. "name": "Symfony Community",
  332. "homepage": "https://symfony.com/contributors"
  333. }
  334. ],
  335. "description": "Eases the creation of beautiful and testable command line interfaces",
  336. "homepage": "https://symfony.com",
  337. "keywords": [
  338. "cli",
  339. "command-line",
  340. "console",
  341. "terminal"
  342. ],
  343. "support": {
  344. "source": "https://github.com/symfony/console/tree/v5.4.47"
  345. },
  346. "funding": [
  347. {
  348. "url": "https://symfony.com/sponsor",
  349. "type": "custom"
  350. },
  351. {
  352. "url": "https://github.com/fabpot",
  353. "type": "github"
  354. },
  355. {
  356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  357. "type": "tidelift"
  358. }
  359. ],
  360. "time": "2024-11-06T11:30:55+00:00"
  361. },
  362. {
  363. "name": "symfony/deprecation-contracts",
  364. "version": "v2.5.4",
  365. "source": {
  366. "type": "git",
  367. "url": "https://github.com/symfony/deprecation-contracts.git",
  368. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918"
  369. },
  370. "dist": {
  371. "type": "zip",
  372. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918",
  373. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918",
  374. "shasum": ""
  375. },
  376. "require": {
  377. "php": ">=7.1"
  378. },
  379. "type": "library",
  380. "extra": {
  381. "thanks": {
  382. "url": "https://github.com/symfony/contracts",
  383. "name": "symfony/contracts"
  384. },
  385. "branch-alias": {
  386. "dev-main": "2.5-dev"
  387. }
  388. },
  389. "autoload": {
  390. "files": [
  391. "function.php"
  392. ]
  393. },
  394. "notification-url": "https://packagist.org/downloads/",
  395. "license": [
  396. "MIT"
  397. ],
  398. "authors": [
  399. {
  400. "name": "Nicolas Grekas",
  401. "email": "p@tchwork.com"
  402. },
  403. {
  404. "name": "Symfony Community",
  405. "homepage": "https://symfony.com/contributors"
  406. }
  407. ],
  408. "description": "A generic function and convention to trigger deprecation notices",
  409. "homepage": "https://symfony.com",
  410. "support": {
  411. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.4"
  412. },
  413. "funding": [
  414. {
  415. "url": "https://symfony.com/sponsor",
  416. "type": "custom"
  417. },
  418. {
  419. "url": "https://github.com/fabpot",
  420. "type": "github"
  421. },
  422. {
  423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  424. "type": "tidelift"
  425. }
  426. ],
  427. "time": "2024-09-25T14:11:13+00:00"
  428. },
  429. {
  430. "name": "symfony/finder",
  431. "version": "v5.4.45",
  432. "source": {
  433. "type": "git",
  434. "url": "https://github.com/symfony/finder.git",
  435. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  436. },
  437. "dist": {
  438. "type": "zip",
  439. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  440. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  441. "shasum": ""
  442. },
  443. "require": {
  444. "php": ">=7.2.5",
  445. "symfony/deprecation-contracts": "^2.1|^3",
  446. "symfony/polyfill-php80": "^1.16"
  447. },
  448. "type": "library",
  449. "autoload": {
  450. "psr-4": {
  451. "Symfony\\Component\\Finder\\": ""
  452. },
  453. "exclude-from-classmap": [
  454. "/Tests/"
  455. ]
  456. },
  457. "notification-url": "https://packagist.org/downloads/",
  458. "license": [
  459. "MIT"
  460. ],
  461. "authors": [
  462. {
  463. "name": "Fabien Potencier",
  464. "email": "fabien@symfony.com"
  465. },
  466. {
  467. "name": "Symfony Community",
  468. "homepage": "https://symfony.com/contributors"
  469. }
  470. ],
  471. "description": "Finds files and directories via an intuitive fluent interface",
  472. "homepage": "https://symfony.com",
  473. "support": {
  474. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  475. },
  476. "funding": [
  477. {
  478. "url": "https://symfony.com/sponsor",
  479. "type": "custom"
  480. },
  481. {
  482. "url": "https://github.com/fabpot",
  483. "type": "github"
  484. },
  485. {
  486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  487. "type": "tidelift"
  488. }
  489. ],
  490. "time": "2024-09-28T13:32:08+00:00"
  491. },
  492. {
  493. "name": "symfony/polyfill-ctype",
  494. "version": "v1.33.0",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/symfony/polyfill-ctype.git",
  498. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  503. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  504. "shasum": ""
  505. },
  506. "require": {
  507. "php": ">=7.2"
  508. },
  509. "provide": {
  510. "ext-ctype": "*"
  511. },
  512. "suggest": {
  513. "ext-ctype": "For best performance"
  514. },
  515. "type": "library",
  516. "extra": {
  517. "thanks": {
  518. "url": "https://github.com/symfony/polyfill",
  519. "name": "symfony/polyfill"
  520. }
  521. },
  522. "autoload": {
  523. "files": [
  524. "bootstrap.php"
  525. ],
  526. "psr-4": {
  527. "Symfony\\Polyfill\\Ctype\\": ""
  528. }
  529. },
  530. "notification-url": "https://packagist.org/downloads/",
  531. "license": [
  532. "MIT"
  533. ],
  534. "authors": [
  535. {
  536. "name": "Gert de Pagter",
  537. "email": "BackEndTea@gmail.com"
  538. },
  539. {
  540. "name": "Symfony Community",
  541. "homepage": "https://symfony.com/contributors"
  542. }
  543. ],
  544. "description": "Symfony polyfill for ctype functions",
  545. "homepage": "https://symfony.com",
  546. "keywords": [
  547. "compatibility",
  548. "ctype",
  549. "polyfill",
  550. "portable"
  551. ],
  552. "support": {
  553. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  554. },
  555. "funding": [
  556. {
  557. "url": "https://symfony.com/sponsor",
  558. "type": "custom"
  559. },
  560. {
  561. "url": "https://github.com/fabpot",
  562. "type": "github"
  563. },
  564. {
  565. "url": "https://github.com/nicolas-grekas",
  566. "type": "github"
  567. },
  568. {
  569. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  570. "type": "tidelift"
  571. }
  572. ],
  573. "time": "2024-09-09T11:45:10+00:00"
  574. },
  575. {
  576. "name": "symfony/polyfill-iconv",
  577. "version": "v1.33.0",
  578. "source": {
  579. "type": "git",
  580. "url": "https://github.com/symfony/polyfill-iconv.git",
  581. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  582. },
  583. "dist": {
  584. "type": "zip",
  585. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  586. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  587. "shasum": ""
  588. },
  589. "require": {
  590. "php": ">=7.2"
  591. },
  592. "provide": {
  593. "ext-iconv": "*"
  594. },
  595. "suggest": {
  596. "ext-iconv": "For best performance"
  597. },
  598. "type": "library",
  599. "extra": {
  600. "thanks": {
  601. "url": "https://github.com/symfony/polyfill",
  602. "name": "symfony/polyfill"
  603. }
  604. },
  605. "autoload": {
  606. "files": [
  607. "bootstrap.php"
  608. ],
  609. "psr-4": {
  610. "Symfony\\Polyfill\\Iconv\\": ""
  611. }
  612. },
  613. "notification-url": "https://packagist.org/downloads/",
  614. "license": [
  615. "MIT"
  616. ],
  617. "authors": [
  618. {
  619. "name": "Nicolas Grekas",
  620. "email": "p@tchwork.com"
  621. },
  622. {
  623. "name": "Symfony Community",
  624. "homepage": "https://symfony.com/contributors"
  625. }
  626. ],
  627. "description": "Symfony polyfill for the Iconv extension",
  628. "homepage": "https://symfony.com",
  629. "keywords": [
  630. "compatibility",
  631. "iconv",
  632. "polyfill",
  633. "portable",
  634. "shim"
  635. ],
  636. "support": {
  637. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0"
  638. },
  639. "funding": [
  640. {
  641. "url": "https://symfony.com/sponsor",
  642. "type": "custom"
  643. },
  644. {
  645. "url": "https://github.com/fabpot",
  646. "type": "github"
  647. },
  648. {
  649. "url": "https://github.com/nicolas-grekas",
  650. "type": "github"
  651. },
  652. {
  653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  654. "type": "tidelift"
  655. }
  656. ],
  657. "time": "2024-09-17T14:58:18+00:00"
  658. },
  659. {
  660. "name": "symfony/polyfill-intl-grapheme",
  661. "version": "v1.33.0",
  662. "source": {
  663. "type": "git",
  664. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  665. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  666. },
  667. "dist": {
  668. "type": "zip",
  669. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  670. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  671. "shasum": ""
  672. },
  673. "require": {
  674. "php": ">=7.2"
  675. },
  676. "suggest": {
  677. "ext-intl": "For best performance"
  678. },
  679. "type": "library",
  680. "extra": {
  681. "thanks": {
  682. "url": "https://github.com/symfony/polyfill",
  683. "name": "symfony/polyfill"
  684. }
  685. },
  686. "autoload": {
  687. "files": [
  688. "bootstrap.php"
  689. ],
  690. "psr-4": {
  691. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  692. }
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "MIT"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Nicolas Grekas",
  701. "email": "p@tchwork.com"
  702. },
  703. {
  704. "name": "Symfony Community",
  705. "homepage": "https://symfony.com/contributors"
  706. }
  707. ],
  708. "description": "Symfony polyfill for intl's grapheme_* functions",
  709. "homepage": "https://symfony.com",
  710. "keywords": [
  711. "compatibility",
  712. "grapheme",
  713. "intl",
  714. "polyfill",
  715. "portable",
  716. "shim"
  717. ],
  718. "support": {
  719. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  720. },
  721. "funding": [
  722. {
  723. "url": "https://symfony.com/sponsor",
  724. "type": "custom"
  725. },
  726. {
  727. "url": "https://github.com/fabpot",
  728. "type": "github"
  729. },
  730. {
  731. "url": "https://github.com/nicolas-grekas",
  732. "type": "github"
  733. },
  734. {
  735. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  736. "type": "tidelift"
  737. }
  738. ],
  739. "time": "2025-06-27T09:58:17+00:00"
  740. },
  741. {
  742. "name": "symfony/polyfill-intl-normalizer",
  743. "version": "v1.33.0",
  744. "source": {
  745. "type": "git",
  746. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  747. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  748. },
  749. "dist": {
  750. "type": "zip",
  751. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  752. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  753. "shasum": ""
  754. },
  755. "require": {
  756. "php": ">=7.2"
  757. },
  758. "suggest": {
  759. "ext-intl": "For best performance"
  760. },
  761. "type": "library",
  762. "extra": {
  763. "thanks": {
  764. "url": "https://github.com/symfony/polyfill",
  765. "name": "symfony/polyfill"
  766. }
  767. },
  768. "autoload": {
  769. "files": [
  770. "bootstrap.php"
  771. ],
  772. "psr-4": {
  773. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  774. },
  775. "classmap": [
  776. "Resources/stubs"
  777. ]
  778. },
  779. "notification-url": "https://packagist.org/downloads/",
  780. "license": [
  781. "MIT"
  782. ],
  783. "authors": [
  784. {
  785. "name": "Nicolas Grekas",
  786. "email": "p@tchwork.com"
  787. },
  788. {
  789. "name": "Symfony Community",
  790. "homepage": "https://symfony.com/contributors"
  791. }
  792. ],
  793. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  794. "homepage": "https://symfony.com",
  795. "keywords": [
  796. "compatibility",
  797. "intl",
  798. "normalizer",
  799. "polyfill",
  800. "portable",
  801. "shim"
  802. ],
  803. "support": {
  804. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  805. },
  806. "funding": [
  807. {
  808. "url": "https://symfony.com/sponsor",
  809. "type": "custom"
  810. },
  811. {
  812. "url": "https://github.com/fabpot",
  813. "type": "github"
  814. },
  815. {
  816. "url": "https://github.com/nicolas-grekas",
  817. "type": "github"
  818. },
  819. {
  820. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  821. "type": "tidelift"
  822. }
  823. ],
  824. "time": "2024-09-09T11:45:10+00:00"
  825. },
  826. {
  827. "name": "symfony/polyfill-mbstring",
  828. "version": "v1.33.0",
  829. "source": {
  830. "type": "git",
  831. "url": "https://github.com/symfony/polyfill-mbstring.git",
  832. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  833. },
  834. "dist": {
  835. "type": "zip",
  836. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  837. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  838. "shasum": ""
  839. },
  840. "require": {
  841. "ext-iconv": "*",
  842. "php": ">=7.2"
  843. },
  844. "provide": {
  845. "ext-mbstring": "*"
  846. },
  847. "suggest": {
  848. "ext-mbstring": "For best performance"
  849. },
  850. "type": "library",
  851. "extra": {
  852. "thanks": {
  853. "url": "https://github.com/symfony/polyfill",
  854. "name": "symfony/polyfill"
  855. }
  856. },
  857. "autoload": {
  858. "files": [
  859. "bootstrap.php"
  860. ],
  861. "psr-4": {
  862. "Symfony\\Polyfill\\Mbstring\\": ""
  863. }
  864. },
  865. "notification-url": "https://packagist.org/downloads/",
  866. "license": [
  867. "MIT"
  868. ],
  869. "authors": [
  870. {
  871. "name": "Nicolas Grekas",
  872. "email": "p@tchwork.com"
  873. },
  874. {
  875. "name": "Symfony Community",
  876. "homepage": "https://symfony.com/contributors"
  877. }
  878. ],
  879. "description": "Symfony polyfill for the Mbstring extension",
  880. "homepage": "https://symfony.com",
  881. "keywords": [
  882. "compatibility",
  883. "mbstring",
  884. "polyfill",
  885. "portable",
  886. "shim"
  887. ],
  888. "support": {
  889. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  890. },
  891. "funding": [
  892. {
  893. "url": "https://symfony.com/sponsor",
  894. "type": "custom"
  895. },
  896. {
  897. "url": "https://github.com/fabpot",
  898. "type": "github"
  899. },
  900. {
  901. "url": "https://github.com/nicolas-grekas",
  902. "type": "github"
  903. },
  904. {
  905. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  906. "type": "tidelift"
  907. }
  908. ],
  909. "time": "2024-12-23T08:48:59+00:00"
  910. },
  911. {
  912. "name": "symfony/polyfill-php73",
  913. "version": "v1.33.0",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/symfony/polyfill-php73.git",
  917. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  922. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  923. "shasum": ""
  924. },
  925. "require": {
  926. "php": ">=7.2"
  927. },
  928. "type": "library",
  929. "extra": {
  930. "thanks": {
  931. "url": "https://github.com/symfony/polyfill",
  932. "name": "symfony/polyfill"
  933. }
  934. },
  935. "autoload": {
  936. "files": [
  937. "bootstrap.php"
  938. ],
  939. "psr-4": {
  940. "Symfony\\Polyfill\\Php73\\": ""
  941. },
  942. "classmap": [
  943. "Resources/stubs"
  944. ]
  945. },
  946. "notification-url": "https://packagist.org/downloads/",
  947. "license": [
  948. "MIT"
  949. ],
  950. "authors": [
  951. {
  952. "name": "Nicolas Grekas",
  953. "email": "p@tchwork.com"
  954. },
  955. {
  956. "name": "Symfony Community",
  957. "homepage": "https://symfony.com/contributors"
  958. }
  959. ],
  960. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  961. "homepage": "https://symfony.com",
  962. "keywords": [
  963. "compatibility",
  964. "polyfill",
  965. "portable",
  966. "shim"
  967. ],
  968. "support": {
  969. "source": "https://github.com/symfony/polyfill-php73/tree/v1.33.0"
  970. },
  971. "funding": [
  972. {
  973. "url": "https://symfony.com/sponsor",
  974. "type": "custom"
  975. },
  976. {
  977. "url": "https://github.com/fabpot",
  978. "type": "github"
  979. },
  980. {
  981. "url": "https://github.com/nicolas-grekas",
  982. "type": "github"
  983. },
  984. {
  985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  986. "type": "tidelift"
  987. }
  988. ],
  989. "time": "2024-09-09T11:45:10+00:00"
  990. },
  991. {
  992. "name": "symfony/polyfill-php80",
  993. "version": "v1.33.0",
  994. "source": {
  995. "type": "git",
  996. "url": "https://github.com/symfony/polyfill-php80.git",
  997. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  998. },
  999. "dist": {
  1000. "type": "zip",
  1001. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  1002. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  1003. "shasum": ""
  1004. },
  1005. "require": {
  1006. "php": ">=7.2"
  1007. },
  1008. "type": "library",
  1009. "extra": {
  1010. "thanks": {
  1011. "url": "https://github.com/symfony/polyfill",
  1012. "name": "symfony/polyfill"
  1013. }
  1014. },
  1015. "autoload": {
  1016. "files": [
  1017. "bootstrap.php"
  1018. ],
  1019. "psr-4": {
  1020. "Symfony\\Polyfill\\Php80\\": ""
  1021. },
  1022. "classmap": [
  1023. "Resources/stubs"
  1024. ]
  1025. },
  1026. "notification-url": "https://packagist.org/downloads/",
  1027. "license": [
  1028. "MIT"
  1029. ],
  1030. "authors": [
  1031. {
  1032. "name": "Ion Bazan",
  1033. "email": "ion.bazan@gmail.com"
  1034. },
  1035. {
  1036. "name": "Nicolas Grekas",
  1037. "email": "p@tchwork.com"
  1038. },
  1039. {
  1040. "name": "Symfony Community",
  1041. "homepage": "https://symfony.com/contributors"
  1042. }
  1043. ],
  1044. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1045. "homepage": "https://symfony.com",
  1046. "keywords": [
  1047. "compatibility",
  1048. "polyfill",
  1049. "portable",
  1050. "shim"
  1051. ],
  1052. "support": {
  1053. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  1054. },
  1055. "funding": [
  1056. {
  1057. "url": "https://symfony.com/sponsor",
  1058. "type": "custom"
  1059. },
  1060. {
  1061. "url": "https://github.com/fabpot",
  1062. "type": "github"
  1063. },
  1064. {
  1065. "url": "https://github.com/nicolas-grekas",
  1066. "type": "github"
  1067. },
  1068. {
  1069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1070. "type": "tidelift"
  1071. }
  1072. ],
  1073. "time": "2025-01-02T08:10:11+00:00"
  1074. },
  1075. {
  1076. "name": "symfony/service-contracts",
  1077. "version": "v2.5.4",
  1078. "source": {
  1079. "type": "git",
  1080. "url": "https://github.com/symfony/service-contracts.git",
  1081. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  1082. },
  1083. "dist": {
  1084. "type": "zip",
  1085. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  1086. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  1087. "shasum": ""
  1088. },
  1089. "require": {
  1090. "php": ">=7.2.5",
  1091. "psr/container": "^1.1",
  1092. "symfony/deprecation-contracts": "^2.1|^3"
  1093. },
  1094. "conflict": {
  1095. "ext-psr": "<1.1|>=2"
  1096. },
  1097. "suggest": {
  1098. "symfony/service-implementation": ""
  1099. },
  1100. "type": "library",
  1101. "extra": {
  1102. "thanks": {
  1103. "url": "https://github.com/symfony/contracts",
  1104. "name": "symfony/contracts"
  1105. },
  1106. "branch-alias": {
  1107. "dev-main": "2.5-dev"
  1108. }
  1109. },
  1110. "autoload": {
  1111. "psr-4": {
  1112. "Symfony\\Contracts\\Service\\": ""
  1113. }
  1114. },
  1115. "notification-url": "https://packagist.org/downloads/",
  1116. "license": [
  1117. "MIT"
  1118. ],
  1119. "authors": [
  1120. {
  1121. "name": "Nicolas Grekas",
  1122. "email": "p@tchwork.com"
  1123. },
  1124. {
  1125. "name": "Symfony Community",
  1126. "homepage": "https://symfony.com/contributors"
  1127. }
  1128. ],
  1129. "description": "Generic abstractions related to writing services",
  1130. "homepage": "https://symfony.com",
  1131. "keywords": [
  1132. "abstractions",
  1133. "contracts",
  1134. "decoupling",
  1135. "interfaces",
  1136. "interoperability",
  1137. "standards"
  1138. ],
  1139. "support": {
  1140. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  1141. },
  1142. "funding": [
  1143. {
  1144. "url": "https://symfony.com/sponsor",
  1145. "type": "custom"
  1146. },
  1147. {
  1148. "url": "https://github.com/fabpot",
  1149. "type": "github"
  1150. },
  1151. {
  1152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1153. "type": "tidelift"
  1154. }
  1155. ],
  1156. "time": "2024-09-25T14:11:13+00:00"
  1157. },
  1158. {
  1159. "name": "symfony/string",
  1160. "version": "v5.4.47",
  1161. "source": {
  1162. "type": "git",
  1163. "url": "https://github.com/symfony/string.git",
  1164. "reference": "136ca7d72f72b599f2631aca474a4f8e26719799"
  1165. },
  1166. "dist": {
  1167. "type": "zip",
  1168. "url": "https://api.github.com/repos/symfony/string/zipball/136ca7d72f72b599f2631aca474a4f8e26719799",
  1169. "reference": "136ca7d72f72b599f2631aca474a4f8e26719799",
  1170. "shasum": ""
  1171. },
  1172. "require": {
  1173. "php": ">=7.2.5",
  1174. "symfony/polyfill-ctype": "~1.8",
  1175. "symfony/polyfill-intl-grapheme": "~1.0",
  1176. "symfony/polyfill-intl-normalizer": "~1.0",
  1177. "symfony/polyfill-mbstring": "~1.0",
  1178. "symfony/polyfill-php80": "~1.15"
  1179. },
  1180. "conflict": {
  1181. "symfony/translation-contracts": ">=3.0"
  1182. },
  1183. "require-dev": {
  1184. "symfony/error-handler": "^4.4|^5.0|^6.0",
  1185. "symfony/http-client": "^4.4|^5.0|^6.0",
  1186. "symfony/translation-contracts": "^1.1|^2",
  1187. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  1188. },
  1189. "type": "library",
  1190. "autoload": {
  1191. "files": [
  1192. "Resources/functions.php"
  1193. ],
  1194. "psr-4": {
  1195. "Symfony\\Component\\String\\": ""
  1196. },
  1197. "exclude-from-classmap": [
  1198. "/Tests/"
  1199. ]
  1200. },
  1201. "notification-url": "https://packagist.org/downloads/",
  1202. "license": [
  1203. "MIT"
  1204. ],
  1205. "authors": [
  1206. {
  1207. "name": "Nicolas Grekas",
  1208. "email": "p@tchwork.com"
  1209. },
  1210. {
  1211. "name": "Symfony Community",
  1212. "homepage": "https://symfony.com/contributors"
  1213. }
  1214. ],
  1215. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  1216. "homepage": "https://symfony.com",
  1217. "keywords": [
  1218. "grapheme",
  1219. "i18n",
  1220. "string",
  1221. "unicode",
  1222. "utf-8",
  1223. "utf8"
  1224. ],
  1225. "support": {
  1226. "source": "https://github.com/symfony/string/tree/v5.4.47"
  1227. },
  1228. "funding": [
  1229. {
  1230. "url": "https://symfony.com/sponsor",
  1231. "type": "custom"
  1232. },
  1233. {
  1234. "url": "https://github.com/fabpot",
  1235. "type": "github"
  1236. },
  1237. {
  1238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1239. "type": "tidelift"
  1240. }
  1241. ],
  1242. "time": "2024-11-10T20:33:58+00:00"
  1243. },
  1244. {
  1245. "name": "symfony/var-dumper",
  1246. "version": "v5.4.48",
  1247. "source": {
  1248. "type": "git",
  1249. "url": "https://github.com/symfony/var-dumper.git",
  1250. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  1251. },
  1252. "dist": {
  1253. "type": "zip",
  1254. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  1255. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  1256. "shasum": ""
  1257. },
  1258. "require": {
  1259. "php": ">=7.2.5",
  1260. "symfony/polyfill-mbstring": "~1.0",
  1261. "symfony/polyfill-php80": "^1.16"
  1262. },
  1263. "conflict": {
  1264. "symfony/console": "<4.4"
  1265. },
  1266. "require-dev": {
  1267. "ext-iconv": "*",
  1268. "symfony/console": "^4.4|^5.0|^6.0",
  1269. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  1270. "symfony/process": "^4.4|^5.0|^6.0",
  1271. "symfony/uid": "^5.1|^6.0",
  1272. "twig/twig": "^2.13|^3.0.4"
  1273. },
  1274. "suggest": {
  1275. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1276. "ext-intl": "To show region name in time zone dump",
  1277. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  1278. },
  1279. "bin": [
  1280. "Resources/bin/var-dump-server"
  1281. ],
  1282. "type": "library",
  1283. "autoload": {
  1284. "files": [
  1285. "Resources/functions/dump.php"
  1286. ],
  1287. "psr-4": {
  1288. "Symfony\\Component\\VarDumper\\": ""
  1289. },
  1290. "exclude-from-classmap": [
  1291. "/Tests/"
  1292. ]
  1293. },
  1294. "notification-url": "https://packagist.org/downloads/",
  1295. "license": [
  1296. "MIT"
  1297. ],
  1298. "authors": [
  1299. {
  1300. "name": "Nicolas Grekas",
  1301. "email": "p@tchwork.com"
  1302. },
  1303. {
  1304. "name": "Symfony Community",
  1305. "homepage": "https://symfony.com/contributors"
  1306. }
  1307. ],
  1308. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  1309. "homepage": "https://symfony.com",
  1310. "keywords": [
  1311. "debug",
  1312. "dump"
  1313. ],
  1314. "support": {
  1315. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  1316. },
  1317. "funding": [
  1318. {
  1319. "url": "https://symfony.com/sponsor",
  1320. "type": "custom"
  1321. },
  1322. {
  1323. "url": "https://github.com/fabpot",
  1324. "type": "github"
  1325. },
  1326. {
  1327. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1328. "type": "tidelift"
  1329. }
  1330. ],
  1331. "time": "2024-11-08T15:21:10+00:00"
  1332. }
  1333. ],
  1334. "packages-dev": [
  1335. {
  1336. "name": "roave/security-advisories",
  1337. "version": "dev-latest",
  1338. "source": {
  1339. "type": "git",
  1340. "url": "https://github.com/Roave/SecurityAdvisories.git",
  1341. "reference": "6e9ea9dcd100b6dcc0b1cdfc139df3695ad73e38"
  1342. },
  1343. "dist": {
  1344. "type": "zip",
  1345. "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/6e9ea9dcd100b6dcc0b1cdfc139df3695ad73e38",
  1346. "reference": "6e9ea9dcd100b6dcc0b1cdfc139df3695ad73e38",
  1347. "shasum": ""
  1348. },
  1349. "conflict": {
  1350. "3f/pygmentize": "<1.2",
  1351. "adaptcms/adaptcms": "<=1.3",
  1352. "admidio/admidio": "<=4.3.16",
  1353. "adodb/adodb-php": "<=5.22.9",
  1354. "aheinze/cockpit": "<2.2",
  1355. "aimeos/ai-admin-graphql": ">=2022.04.1,<2022.10.10|>=2023.04.1,<2023.10.6|>=2024.04.1,<2024.07.2",
  1356. "aimeos/ai-admin-jsonadm": "<2020.10.13|>=2021.04.1,<2021.10.6|>=2022.04.1,<2022.10.3|>=2023.04.1,<2023.10.4|==2024.04.1",
  1357. "aimeos/ai-client-html": ">=2020.04.1,<2020.10.27|>=2021.04.1,<2021.10.22|>=2022.04.1,<2022.10.13|>=2023.04.1,<2023.10.15|>=2024.04.1,<2024.04.7",
  1358. "aimeos/ai-controller-frontend": "<2020.10.15|>=2021.04.1,<2021.10.8|>=2022.04.1,<2022.10.8|>=2023.04.1,<2023.10.9|==2024.04.1",
  1359. "aimeos/aimeos-core": ">=2022.04.1,<2022.10.17|>=2023.04.1,<2023.10.17|>=2024.04.1,<2024.04.7",
  1360. "aimeos/aimeos-typo3": "<19.10.12|>=20,<20.10.5",
  1361. "airesvsg/acf-to-rest-api": "<=3.1",
  1362. "akaunting/akaunting": "<2.1.13",
  1363. "akeneo/pim-community-dev": "<5.0.119|>=6,<6.0.53",
  1364. "alextselegidis/easyappointments": "<1.5.2.0-beta1",
  1365. "alt-design/alt-redirect": "<1.6.4",
  1366. "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
  1367. "amazing/media2click": ">=1,<1.3.3",
  1368. "ameos/ameos_tarteaucitron": "<1.2.23",
  1369. "amphp/artax": "<1.0.6|>=2,<2.0.6",
  1370. "amphp/http": "<=1.7.2|>=2,<=2.1",
  1371. "amphp/http-client": ">=4,<4.4",
  1372. "anchorcms/anchor-cms": "<=0.12.7",
  1373. "andreapollastri/cipi": "<=3.1.15",
  1374. "andrewhaine/silverstripe-form-capture": ">=0.2,<=0.2.3|>=1,<1.0.2|>=2,<2.2.5",
  1375. "aoe/restler": "<1.7.1",
  1376. "apache-solr-for-typo3/solr": "<2.8.3",
  1377. "apereo/phpcas": "<1.6",
  1378. "api-platform/core": "<3.4.17|>=4,<4.0.22|>=4.1,<4.1.5",
  1379. "api-platform/graphql": "<3.4.17|>=4,<4.0.22|>=4.1,<4.1.5",
  1380. "appwrite/server-ce": "<=1.2.1",
  1381. "arc/web": "<3",
  1382. "area17/twill": "<1.2.5|>=2,<2.5.3",
  1383. "artesaos/seotools": "<0.17.2",
  1384. "asymmetricrypt/asymmetricrypt": "<9.9.99",
  1385. "athlon1600/php-proxy": "<=5.1",
  1386. "athlon1600/php-proxy-app": "<=3",
  1387. "athlon1600/youtube-downloader": "<=4",
  1388. "austintoddj/canvas": "<=3.4.2",
  1389. "auth0/auth0-php": ">=3.3,<=8.16",
  1390. "auth0/login": "<=7.18",
  1391. "auth0/symfony": "<=5.4.1",
  1392. "auth0/wordpress": "<=5.3",
  1393. "automad/automad": "<2.0.0.0-alpha5",
  1394. "automattic/jetpack": "<9.8",
  1395. "awesome-support/awesome-support": "<=6.0.7",
  1396. "aws/aws-sdk-php": "<3.288.1",
  1397. "azuracast/azuracast": "<0.18.3",
  1398. "b13/seo_basics": "<0.8.2",
  1399. "backdrop/backdrop": "<=1.32",
  1400. "backpack/crud": "<3.4.9",
  1401. "backpack/filemanager": "<2.0.2|>=3,<3.0.9",
  1402. "bacula-web/bacula-web": "<9.7.1",
  1403. "badaso/core": "<=2.9.11",
  1404. "bagisto/bagisto": "<=2.3.7",
  1405. "barrelstrength/sprout-base-email": "<1.2.7",
  1406. "barrelstrength/sprout-forms": "<3.9",
  1407. "barryvdh/laravel-translation-manager": "<0.6.8",
  1408. "barzahlen/barzahlen-php": "<2.0.1",
  1409. "baserproject/basercms": "<=5.1.1",
  1410. "bassjobsen/bootstrap-3-typeahead": ">4.0.2",
  1411. "bbpress/bbpress": "<2.6.5",
  1412. "bcit-ci/codeigniter": "<3.1.3",
  1413. "bcosca/fatfree": "<3.7.2",
  1414. "bedita/bedita": "<4",
  1415. "bednee/cooluri": "<1.0.30",
  1416. "bigfork/silverstripe-form-capture": ">=3,<3.1.1",
  1417. "billz/raspap-webgui": "<3.3.6",
  1418. "binarytorch/larecipe": "<2.8.1",
  1419. "bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3",
  1420. "blueimp/jquery-file-upload": "==6.4.4",
  1421. "bmarshall511/wordpress_zero_spam": "<5.2.13",
  1422. "bolt/bolt": "<3.7.2",
  1423. "bolt/core": "<=4.2",
  1424. "born05/craft-twofactorauthentication": "<3.3.4",
  1425. "bottelet/flarepoint": "<2.2.1",
  1426. "bref/bref": "<2.1.17",
  1427. "brightlocal/phpwhois": "<=4.2.5",
  1428. "brotkrueml/codehighlight": "<2.7",
  1429. "brotkrueml/schema": "<1.13.1|>=2,<2.5.1",
  1430. "brotkrueml/typo3-matomo-integration": "<1.3.2",
  1431. "buddypress/buddypress": "<7.2.1",
  1432. "bugsnag/bugsnag-laravel": ">=2,<2.0.2",
  1433. "bvbmedia/multishop": "<2.0.39",
  1434. "bytefury/crater": "<6.0.2",
  1435. "cachethq/cachet": "<2.5.1",
  1436. "cakephp/cakephp": "<3.10.3|>=4,<4.0.10|>=4.1,<4.1.4|>=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
  1437. "cakephp/database": ">=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
  1438. "cardgate/magento2": "<2.0.33",
  1439. "cardgate/woocommerce": "<=3.1.15",
  1440. "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
  1441. "cart2quote/module-quotation-encoded": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
  1442. "cartalyst/sentry": "<=2.1.6",
  1443. "catfan/medoo": "<1.7.5",
  1444. "causal/oidc": "<4",
  1445. "cecil/cecil": "<7.47.1",
  1446. "centreon/centreon": "<22.10.15",
  1447. "cesnet/simplesamlphp-module-proxystatistics": "<3.1",
  1448. "chriskacerguis/codeigniter-restserver": "<=2.7.1",
  1449. "chrome-php/chrome": "<1.14",
  1450. "civicrm/civicrm-core": ">=4.2,<4.2.9|>=4.3,<4.3.3",
  1451. "ckeditor/ckeditor": "<4.25",
  1452. "clickstorm/cs-seo": ">=6,<6.8|>=7,<7.5|>=8,<8.4|>=9,<9.3",
  1453. "co-stack/fal_sftp": "<0.2.6",
  1454. "cockpit-hq/cockpit": "<2.11.4",
  1455. "code16/sharp": "<9.11.1",
  1456. "codeception/codeception": "<3.1.3|>=4,<4.1.22",
  1457. "codeigniter/framework": "<3.1.10",
  1458. "codeigniter4/framework": "<4.6.2",
  1459. "codeigniter4/shield": "<1.0.0.0-beta8",
  1460. "codiad/codiad": "<=2.8.4",
  1461. "codingms/additional-tca": ">=1.7,<1.15.17|>=1.16,<1.16.9",
  1462. "codingms/modules": "<4.3.11|>=5,<5.7.4|>=6,<6.4.2|>=7,<7.5.5",
  1463. "commerceteam/commerce": ">=0.9.6,<0.9.9",
  1464. "components/jquery": ">=1.0.3,<3.5",
  1465. "composer/composer": "<1.10.27|>=2,<2.2.24|>=2.3,<2.7.7",
  1466. "concrete5/concrete5": "<9.4.3",
  1467. "concrete5/core": "<8.5.8|>=9,<9.1",
  1468. "contao-components/mediaelement": ">=2.14.2,<2.21.1",
  1469. "contao/comments-bundle": ">=2,<4.13.40|>=5.0.0.0-RC1-dev,<5.3.4",
  1470. "contao/contao": ">=3,<3.5.37|>=4,<4.4.56|>=4.5,<4.13.56|>=5,<5.3.38|>=5.4.0.0-RC1-dev,<5.6.1",
  1471. "contao/core": "<3.5.39",
  1472. "contao/core-bundle": "<4.13.57|>=5,<5.3.42|>=5.4,<5.6.5",
  1473. "contao/listing-bundle": ">=3,<=3.5.30|>=4,<4.4.8",
  1474. "contao/managed-edition": "<=1.5",
  1475. "corveda/phpsandbox": "<1.3.5",
  1476. "cosenary/instagram": "<=2.3",
  1477. "couleurcitron/tarteaucitron-wp": "<0.3",
  1478. "craftcms/cms": "<=4.16.5|>=5,<=5.8.6",
  1479. "croogo/croogo": "<4",
  1480. "cuyz/valinor": "<0.12",
  1481. "czim/file-handling": "<1.5|>=2,<2.3",
  1482. "czproject/git-php": "<4.0.3",
  1483. "damienharper/auditor-bundle": "<5.2.6",
  1484. "dapphp/securimage": "<3.6.6",
  1485. "darylldoyle/safe-svg": "<1.9.10",
  1486. "datadog/dd-trace": ">=0.30,<0.30.2",
  1487. "datahihi1/tiny-env": "<1.0.3|>=1.0.9,<1.0.11",
  1488. "datatables/datatables": "<1.10.10",
  1489. "david-garcia/phpwhois": "<=4.3.1",
  1490. "dbrisinajumi/d2files": "<1",
  1491. "dcat/laravel-admin": "<=2.1.3|==2.2.0.0-beta|==2.2.2.0-beta",
  1492. "derhansen/fe_change_pwd": "<2.0.5|>=3,<3.0.3",
  1493. "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1|>=7,<7.4",
  1494. "desperado/xml-bundle": "<=0.1.7",
  1495. "dev-lancer/minecraft-motd-parser": "<=1.0.5",
  1496. "devcode-it/openstamanager": "<=2.9.4",
  1497. "devgroup/dotplant": "<2020.09.14-dev",
  1498. "digimix/wp-svg-upload": "<=1",
  1499. "directmailteam/direct-mail": "<6.0.3|>=7,<7.0.3|>=8,<9.5.2",
  1500. "dl/yag": "<3.0.1",
  1501. "dmk/webkitpdf": "<1.1.4",
  1502. "dnadesign/silverstripe-elemental": "<5.3.12",
  1503. "doctrine/annotations": "<1.2.7",
  1504. "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2",
  1505. "doctrine/common": "<2.4.3|>=2.5,<2.5.1",
  1506. "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2|>=3,<3.1.4",
  1507. "doctrine/doctrine-bundle": "<1.5.2",
  1508. "doctrine/doctrine-module": "<0.7.2",
  1509. "doctrine/mongodb-odm": "<1.0.2",
  1510. "doctrine/mongodb-odm-bundle": "<3.0.1",
  1511. "doctrine/orm": ">=1,<1.2.4|>=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4",
  1512. "dolibarr/dolibarr": "<21.0.3",
  1513. "dompdf/dompdf": "<2.0.4",
  1514. "doublethreedigital/guest-entries": "<3.1.2",
  1515. "drupal-pattern-lab/unified-twig-extensions": "<=0.1",
  1516. "drupal/access_code": "<2.0.5",
  1517. "drupal/acquia_dam": "<1.1.5",
  1518. "drupal/admin_audit_trail": "<1.0.5",
  1519. "drupal/ai": "<1.0.5",
  1520. "drupal/alogin": "<2.0.6",
  1521. "drupal/cache_utility": "<1.2.1",
  1522. "drupal/civictheme": "<1.12",
  1523. "drupal/commerce_alphabank_redirect": "<1.0.3",
  1524. "drupal/commerce_eurobank_redirect": "<2.1.1",
  1525. "drupal/config_split": "<1.10|>=2,<2.0.2",
  1526. "drupal/core": ">=6,<6.38|>=7,<7.102|>=8,<10.4.9|>=10.5,<10.5.6|>=11,<11.1.9|>=11.2,<11.2.8",
  1527. "drupal/core-recommended": ">=7,<7.102|>=8,<10.2.11|>=10.3,<10.3.9|>=11,<11.0.8",
  1528. "drupal/currency": "<3.5",
  1529. "drupal/drupal": ">=5,<5.11|>=6,<6.38|>=7,<7.102|>=8,<10.2.11|>=10.3,<10.3.9|>=11,<11.0.8",
  1530. "drupal/email_tfa": "<2.0.6",
  1531. "drupal/formatter_suite": "<2.1",
  1532. "drupal/gdpr": "<3.0.1|>=3.1,<3.1.2",
  1533. "drupal/google_tag": "<1.8|>=2,<2.0.8",
  1534. "drupal/ignition": "<1.0.4",
  1535. "drupal/json_field": "<1.5",
  1536. "drupal/lightgallery": "<1.6",
  1537. "drupal/link_field_display_mode_formatter": "<1.6",
  1538. "drupal/matomo": "<1.24",
  1539. "drupal/oauth2_client": "<4.1.3",
  1540. "drupal/oauth2_server": "<2.1",
  1541. "drupal/obfuscate": "<2.0.1",
  1542. "drupal/plausible_tracking": "<1.0.2",
  1543. "drupal/quick_node_block": "<2",
  1544. "drupal/rapidoc_elements_field_formatter": "<1.0.1",
  1545. "drupal/reverse_proxy_header": "<1.1.2",
  1546. "drupal/simple_multistep": "<2",
  1547. "drupal/simple_oauth": ">=6,<6.0.7",
  1548. "drupal/spamspan": "<3.2.1",
  1549. "drupal/tfa": "<1.10",
  1550. "drupal/umami_analytics": "<1.0.1",
  1551. "duncanmcclean/guest-entries": "<3.1.2",
  1552. "dweeves/magmi": "<=0.7.24",
  1553. "ec-cube/ec-cube": "<2.4.4|>=2.11,<=2.17.1|>=3,<=3.0.18.0-patch4|>=4,<=4.1.2",
  1554. "ecodev/newsletter": "<=4",
  1555. "ectouch/ectouch": "<=2.7.2",
  1556. "egroupware/egroupware": "<23.1.20240624",
  1557. "elefant/cms": "<2.0.7",
  1558. "elgg/elgg": "<3.3.24|>=4,<4.0.5",
  1559. "elijaa/phpmemcacheadmin": "<=1.3",
  1560. "elmsln/haxcms": "<11.0.14",
  1561. "encore/laravel-admin": "<=1.8.19",
  1562. "endroid/qr-code-bundle": "<3.4.2",
  1563. "enhavo/enhavo-app": "<=0.13.1",
  1564. "enshrined/svg-sanitize": "<0.22",
  1565. "erusev/parsedown": "<1.7.2",
  1566. "ether/logs": "<3.0.4",
  1567. "evolutioncms/evolution": "<=3.2.3",
  1568. "exceedone/exment": "<4.4.3|>=5,<5.0.3",
  1569. "exceedone/laravel-admin": "<2.2.3|==3",
  1570. "ezsystems/demobundle": ">=5.4,<5.4.6.1-dev",
  1571. "ezsystems/ez-support-tools": ">=2.2,<2.2.3",
  1572. "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1-dev",
  1573. "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1-dev|>=5.4,<5.4.11.1-dev|>=2017.12,<2017.12.0.1-dev",
  1574. "ezsystems/ezplatform": "<=1.13.6|>=2,<=2.5.24",
  1575. "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.39|>=3.3,<3.3.39",
  1576. "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1|>=5.3.0.0-beta1,<5.3.5",
  1577. "ezsystems/ezplatform-graphql": ">=1.0.0.0-RC1-dev,<1.0.13|>=2.0.0.0-beta1,<2.3.12",
  1578. "ezsystems/ezplatform-http-cache": "<2.3.16",
  1579. "ezsystems/ezplatform-kernel": "<1.2.5.1-dev|>=1.3,<1.3.35",
  1580. "ezsystems/ezplatform-rest": ">=1.2,<=1.2.2|>=1.3,<1.3.8",
  1581. "ezsystems/ezplatform-richtext": ">=2.3,<2.3.26|>=3.3,<3.3.40",
  1582. "ezsystems/ezplatform-solr-search-engine": ">=1.7,<1.7.12|>=2,<2.0.2|>=3.3,<3.3.15",
  1583. "ezsystems/ezplatform-user": ">=1,<1.0.1",
  1584. "ezsystems/ezpublish-kernel": "<6.13.8.2-dev|>=7,<7.5.31",
  1585. "ezsystems/ezpublish-legacy": "<=2017.12.7.3|>=2018.6,<=2019.03.5.1",
  1586. "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3",
  1587. "ezsystems/repository-forms": ">=2.3,<2.3.2.1-dev|>=2.5,<2.5.15",
  1588. "ezyang/htmlpurifier": "<=4.2",
  1589. "facade/ignition": "<1.16.15|>=2,<2.4.2|>=2.5,<2.5.2",
  1590. "facturascripts/facturascripts": "<=2022.08",
  1591. "fastly/magento2": "<1.2.26",
  1592. "feehi/cms": "<=2.1.1",
  1593. "feehi/feehicms": "<=2.1.1",
  1594. "fenom/fenom": "<=2.12.1",
  1595. "filament/actions": ">=3.2,<3.2.123",
  1596. "filament/infolists": ">=3,<3.2.115",
  1597. "filament/tables": ">=3,<3.2.115",
  1598. "filegator/filegator": "<7.8",
  1599. "filp/whoops": "<2.1.13",
  1600. "fineuploader/php-traditional-server": "<=1.2.2",
  1601. "firebase/php-jwt": "<6",
  1602. "fisharebest/webtrees": "<=2.1.18",
  1603. "fixpunkt/fp-masterquiz": "<2.2.1|>=3,<3.5.2",
  1604. "fixpunkt/fp-newsletter": "<1.1.1|>=1.2,<2.1.2|>=2.2,<3.2.6",
  1605. "flarum/core": "<1.8.10",
  1606. "flarum/flarum": "<0.1.0.0-beta8",
  1607. "flarum/framework": "<1.8.10",
  1608. "flarum/mentions": "<1.6.3",
  1609. "flarum/sticky": ">=0.1.0.0-beta14,<=0.1.0.0-beta15",
  1610. "flarum/tags": "<=0.1.0.0-beta13",
  1611. "floriangaerber/magnesium": "<0.3.1",
  1612. "fluidtypo3/vhs": "<5.1.1",
  1613. "fof/byobu": ">=0.3.0.0-beta2,<1.1.7",
  1614. "fof/upload": "<1.2.3",
  1615. "foodcoopshop/foodcoopshop": ">=3.2,<3.6.1",
  1616. "fooman/tcpdf": "<6.2.22",
  1617. "forkcms/forkcms": "<5.11.1",
  1618. "fossar/tcpdf-parser": "<6.2.22",
  1619. "francoisjacquet/rosariosis": "<=11.5.1",
  1620. "frappant/frp-form-answers": "<3.1.2|>=4,<4.0.2",
  1621. "friendsofsymfony/oauth2-php": "<1.3",
  1622. "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2",
  1623. "friendsofsymfony/user-bundle": ">=1,<1.3.5",
  1624. "friendsofsymfony1/swiftmailer": ">=4,<5.4.13|>=6,<6.2.5",
  1625. "friendsofsymfony1/symfony1": ">=1.1,<1.5.19",
  1626. "friendsoftypo3/mediace": ">=7.6.2,<7.6.5",
  1627. "friendsoftypo3/openid": ">=4.5,<4.5.31|>=4.7,<4.7.16|>=6,<6.0.11|>=6.1,<6.1.6",
  1628. "froala/wysiwyg-editor": "<=4.3",
  1629. "froxlor/froxlor": "<=2.2.5",
  1630. "frozennode/administrator": "<=5.0.12",
  1631. "fuel/core": "<1.8.1",
  1632. "funadmin/funadmin": "<=5.0.2",
  1633. "gaoming13/wechat-php-sdk": "<=1.10.2",
  1634. "genix/cms": "<=1.1.11",
  1635. "georgringer/news": "<1.3.3",
  1636. "geshi/geshi": "<=1.0.9.1",
  1637. "getformwork/formwork": "<2.2",
  1638. "getgrav/grav": "<1.11.0.0-beta1",
  1639. "getkirby/cms": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1|>=5,<5.1.4",
  1640. "getkirby/kirby": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1",
  1641. "getkirby/panel": "<2.5.14",
  1642. "getkirby/starterkit": "<=3.7.0.2",
  1643. "gilacms/gila": "<=1.15.4",
  1644. "gleez/cms": "<=1.3|==2",
  1645. "globalpayments/php-sdk": "<2",
  1646. "goalgorilla/open_social": "<12.3.11|>=12.4,<12.4.10|>=13.0.0.0-alpha1,<13.0.0.0-alpha11",
  1647. "gogentooss/samlbase": "<1.2.7",
  1648. "google/protobuf": "<3.4",
  1649. "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3",
  1650. "gp247/core": "<1.1.24",
  1651. "gree/jose": "<2.2.1",
  1652. "gregwar/rst": "<1.0.3",
  1653. "grumpydictator/firefly-iii": "<6.1.17",
  1654. "gugoan/economizzer": "<=0.9.0.0-beta1",
  1655. "guzzlehttp/guzzle": "<6.5.8|>=7,<7.4.5",
  1656. "guzzlehttp/oauth-subscriber": "<0.8.1",
  1657. "guzzlehttp/psr7": "<1.9.1|>=2,<2.4.5",
  1658. "haffner/jh_captcha": "<=2.1.3|>=3,<=3.0.2",
  1659. "handcraftedinthealps/goodby-csv": "<1.4.3",
  1660. "harvesthq/chosen": "<1.8.7",
  1661. "helloxz/imgurl": "<=2.31",
  1662. "hhxsv5/laravel-s": "<3.7.36",
  1663. "hillelcoren/invoice-ninja": "<5.3.35",
  1664. "himiklab/yii2-jqgrid-widget": "<1.0.8",
  1665. "hjue/justwriting": "<=1",
  1666. "hov/jobfair": "<1.0.13|>=2,<2.0.2",
  1667. "httpsoft/http-message": "<1.0.12",
  1668. "hyn/multi-tenant": ">=5.6,<5.7.2",
  1669. "ibexa/admin-ui": ">=4.2,<4.2.3|>=4.6,<4.6.25|>=5,<5.0.3",
  1670. "ibexa/admin-ui-assets": ">=4.6.0.0-alpha1,<4.6.21",
  1671. "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3|>=4.5,<4.5.6|>=4.6,<4.6.2",
  1672. "ibexa/fieldtype-richtext": ">=4.6,<4.6.25|>=5,<5.0.3",
  1673. "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3",
  1674. "ibexa/http-cache": ">=4.6,<4.6.14",
  1675. "ibexa/post-install": "<1.0.16|>=4.6,<4.6.14",
  1676. "ibexa/solr": ">=4.5,<4.5.4",
  1677. "ibexa/user": ">=4,<4.4.3|>=5,<5.0.3",
  1678. "icecoder/icecoder": "<=8.1",
  1679. "idno/known": "<=1.3.1",
  1680. "ilicmiljan/secure-props": ">=1.2,<1.2.2",
  1681. "illuminate/auth": "<5.5.10",
  1682. "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<6.18.31|>=7,<7.22.4",
  1683. "illuminate/database": "<6.20.26|>=7,<7.30.5|>=8,<8.40",
  1684. "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15",
  1685. "illuminate/view": "<6.20.42|>=7,<7.30.6|>=8,<8.75",
  1686. "imdbphp/imdbphp": "<=5.1.1",
  1687. "impresscms/impresscms": "<=1.4.5",
  1688. "impresspages/impresspages": "<1.0.13",
  1689. "in2code/femanager": "<6.4.2|>=7,<7.5.3|>=8,<8.3.1",
  1690. "in2code/ipandlanguageredirect": "<5.1.2",
  1691. "in2code/lux": "<17.6.1|>=18,<24.0.2",
  1692. "in2code/powermail": "<7.5.1|>=8,<8.5.1|>=9,<10.9.1|>=11,<12.5.3|==13",
  1693. "innologi/typo3-appointments": "<2.0.6",
  1694. "intelliants/subrion": "<4.2.2",
  1695. "inter-mediator/inter-mediator": "==5.5",
  1696. "ipl/web": "<0.10.1",
  1697. "islandora/crayfish": "<4.1",
  1698. "islandora/islandora": ">=2,<2.4.1",
  1699. "ivankristianto/phpwhois": "<=4.3",
  1700. "jackalope/jackalope-doctrine-dbal": "<1.7.4",
  1701. "jambagecom/div2007": "<0.10.2",
  1702. "james-heinrich/getid3": "<1.9.21",
  1703. "james-heinrich/phpthumb": "<=1.7.23",
  1704. "jasig/phpcas": "<1.3.3",
  1705. "jbartels/wec-map": "<3.0.3",
  1706. "jcbrand/converse.js": "<3.3.3",
  1707. "joelbutcher/socialstream": "<5.6|>=6,<6.2",
  1708. "johnbillion/wp-crontrol": "<1.16.2|>=1.17,<1.19.2",
  1709. "joomla/application": "<1.0.13",
  1710. "joomla/archive": "<1.1.12|>=2,<2.0.1",
  1711. "joomla/database": ">=1,<2.2|>=3,<3.4",
  1712. "joomla/filesystem": "<1.6.2|>=2,<2.0.1",
  1713. "joomla/filter": "<2.0.6|>=3,<3.0.5|==4",
  1714. "joomla/framework": "<1.5.7|>=2.5.4,<=3.8.12",
  1715. "joomla/input": ">=2,<2.0.2",
  1716. "joomla/joomla-cms": "<3.9.12|>=4,<4.4.13|>=5,<5.2.6",
  1717. "joomla/joomla-platform": "<1.5.4",
  1718. "joomla/session": "<1.3.1",
  1719. "joyqi/hyper-down": "<=2.4.27",
  1720. "jsdecena/laracom": "<2.0.9",
  1721. "jsmitty12/phpwhois": "<5.1",
  1722. "juzaweb/cms": "<=3.4.2",
  1723. "jweiland/events2": "<8.3.8|>=9,<9.0.6",
  1724. "jweiland/kk-downloader": "<1.2.2",
  1725. "kazist/phpwhois": "<=4.2.6",
  1726. "kelvinmo/simplexrd": "<3.1.1",
  1727. "kevinpapst/kimai2": "<1.16.7",
  1728. "khodakhah/nodcms": "<=3",
  1729. "kimai/kimai": "<=2.20.1",
  1730. "kitodo/presentation": "<3.2.3|>=3.3,<3.3.4",
  1731. "klaviyo/magento2-extension": ">=1,<3",
  1732. "knplabs/knp-snappy": "<=1.4.2",
  1733. "kohana/core": "<3.3.3",
  1734. "koillection/koillection": "<1.6.12",
  1735. "krayin/laravel-crm": "<=1.3",
  1736. "kreait/firebase-php": ">=3.2,<3.8.1",
  1737. "kumbiaphp/kumbiapp": "<=1.1.1",
  1738. "la-haute-societe/tcpdf": "<6.2.22",
  1739. "laminas/laminas-diactoros": "<2.18.1|==2.19|==2.20|==2.21|==2.22|==2.23|>=2.24,<2.24.2|>=2.25,<2.25.2",
  1740. "laminas/laminas-form": "<2.17.1|>=3,<3.0.2|>=3.1,<3.1.1",
  1741. "laminas/laminas-http": "<2.14.2",
  1742. "lara-zeus/artemis": ">=1,<=1.0.6",
  1743. "lara-zeus/dynamic-dashboard": ">=3,<=3.0.1",
  1744. "laravel/fortify": "<1.11.1",
  1745. "laravel/framework": "<10.48.29|>=11,<11.44.1|>=12,<12.1.1",
  1746. "laravel/laravel": ">=5.4,<5.4.22",
  1747. "laravel/pulse": "<1.3.1",
  1748. "laravel/reverb": "<1.4",
  1749. "laravel/socialite": ">=1,<2.0.10",
  1750. "latte/latte": "<2.10.8",
  1751. "lavalite/cms": "<=9|==10.1",
  1752. "lavitto/typo3-form-to-database": "<2.2.5|>=3,<3.2.2|>=4,<4.2.3|>=5,<5.0.2",
  1753. "lcobucci/jwt": ">=3.4,<3.4.6|>=4,<4.0.4|>=4.1,<4.1.5",
  1754. "league/commonmark": "<2.7",
  1755. "league/flysystem": "<1.1.4|>=2,<2.1.1",
  1756. "league/oauth2-server": ">=8.3.2,<8.4.2|>=8.5,<8.5.3",
  1757. "leantime/leantime": "<3.3",
  1758. "lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3",
  1759. "libreform/libreform": ">=2,<=2.0.8",
  1760. "librenms/librenms": "<2017.08.18",
  1761. "liftkit/database": "<2.13.2",
  1762. "lightsaml/lightsaml": "<1.3.5",
  1763. "limesurvey/limesurvey": "<6.5.12",
  1764. "livehelperchat/livehelperchat": "<=3.91",
  1765. "livewire/livewire": "<2.12.7|>=3.0.0.0-beta1,<3.6.4",
  1766. "livewire/volt": "<1.7",
  1767. "lms/routes": "<2.1.1",
  1768. "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2",
  1769. "lomkit/laravel-rest-api": "<2.13",
  1770. "luracast/restler": "<3.1",
  1771. "luyadev/yii-helpers": "<1.2.1",
  1772. "macropay-solutions/laravel-crud-wizard-free": "<3.4.17",
  1773. "maestroerror/php-heic-to-jpg": "<1.0.5",
  1774. "magento/community-edition": "<2.4.6.0-patch13|>=2.4.7.0-beta1,<2.4.7.0-patch8|>=2.4.8.0-beta1,<2.4.8.0-patch3|>=2.4.9.0-alpha1,<2.4.9.0-alpha3|==2.4.9",
  1775. "magento/core": "<=1.9.4.5",
  1776. "magento/magento1ce": "<1.9.4.3-dev",
  1777. "magento/magento1ee": ">=1,<1.14.4.3-dev",
  1778. "magento/product-community-edition": "<2.4.4.0-patch9|>=2.4.5,<2.4.5.0-patch8|>=2.4.6,<2.4.6.0-patch6|>=2.4.7,<2.4.7.0-patch1",
  1779. "magento/project-community-edition": "<=2.0.2",
  1780. "magneto/core": "<1.9.4.4-dev",
  1781. "mahocommerce/maho": "<25.9",
  1782. "maikuolan/phpmussel": ">=1,<1.6",
  1783. "mainwp/mainwp": "<=4.4.3.3",
  1784. "manogi/nova-tiptap": "<=3.2.6",
  1785. "mantisbt/mantisbt": "<2.27.2",
  1786. "marcwillmann/turn": "<0.3.3",
  1787. "marshmallow/nova-tiptap": "<5.7",
  1788. "matomo/matomo": "<1.11",
  1789. "matyhtf/framework": "<3.0.6",
  1790. "mautic/core": "<5.2.8|>=6.0.0.0-alpha,<6.0.5",
  1791. "mautic/core-lib": ">=1.0.0.0-beta,<4.4.13|>=5.0.0.0-alpha,<5.1.1",
  1792. "maximebf/debugbar": "<1.19",
  1793. "mdanter/ecc": "<2",
  1794. "mediawiki/abuse-filter": "<1.39.9|>=1.40,<1.41.3|>=1.42,<1.42.2",
  1795. "mediawiki/cargo": "<3.8.3",
  1796. "mediawiki/core": "<1.39.5|==1.40",
  1797. "mediawiki/data-transfer": ">=1.39,<1.39.11|>=1.41,<1.41.3|>=1.42,<1.42.2",
  1798. "mediawiki/matomo": "<2.4.3",
  1799. "mediawiki/semantic-media-wiki": "<4.0.2",
  1800. "mehrwert/phpmyadmin": "<3.2",
  1801. "melisplatform/melis-asset-manager": "<5.0.1",
  1802. "melisplatform/melis-cms": "<5.3.4",
  1803. "melisplatform/melis-cms-slider": "<5.3.1",
  1804. "melisplatform/melis-core": "<5.3.11",
  1805. "melisplatform/melis-front": "<5.0.1",
  1806. "mezzio/mezzio-swoole": "<3.7|>=4,<4.3",
  1807. "mgallegos/laravel-jqgrid": "<=1.3",
  1808. "microsoft/microsoft-graph": ">=1.16,<1.109.1|>=2,<2.0.1",
  1809. "microsoft/microsoft-graph-beta": "<2.0.1",
  1810. "microsoft/microsoft-graph-core": "<2.0.2",
  1811. "microweber/microweber": "<=2.0.19",
  1812. "mikehaertl/php-shellcommand": "<1.6.1",
  1813. "miniorange/miniorange-saml": "<1.4.3",
  1814. "mittwald/typo3_forum": "<1.2.1",
  1815. "mobiledetect/mobiledetectlib": "<2.8.32",
  1816. "modx/revolution": "<=3.1",
  1817. "mojo42/jirafeau": "<4.4",
  1818. "mongodb/mongodb": ">=1,<1.9.2",
  1819. "mongodb/mongodb-extension": "<1.21.2",
  1820. "monolog/monolog": ">=1.8,<1.12",
  1821. "moodle/moodle": "<4.4.11|>=4.5.0.0-beta,<4.5.7|>=5.0.0.0-beta,<5.0.3",
  1822. "moonshine/moonshine": "<=3.12.5",
  1823. "mos/cimage": "<0.7.19",
  1824. "movim/moxl": ">=0.8,<=0.10",
  1825. "movingbytes/social-network": "<=1.2.1",
  1826. "mpdf/mpdf": "<=7.1.7",
  1827. "munkireport/comment": "<4",
  1828. "munkireport/managedinstalls": "<2.6",
  1829. "munkireport/munki_facts": "<1.5",
  1830. "munkireport/reportdata": "<3.5",
  1831. "munkireport/softwareupdate": "<1.6",
  1832. "mustache/mustache": ">=2,<2.14.1",
  1833. "mwdelaney/wp-enable-svg": "<=0.2",
  1834. "namshi/jose": "<2.2",
  1835. "nasirkhan/laravel-starter": "<11.11",
  1836. "nategood/httpful": "<1",
  1837. "neoan3-apps/template": "<1.1.1",
  1838. "neorazorx/facturascripts": "<2022.04",
  1839. "neos/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
  1840. "neos/form": ">=1.2,<4.3.3|>=5,<5.0.9|>=5.1,<5.1.3",
  1841. "neos/media-browser": "<7.3.19|>=8,<8.0.16|>=8.1,<8.1.11|>=8.2,<8.2.11|>=8.3,<8.3.9",
  1842. "neos/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<5.3.10|>=7,<7.0.9|>=7.1,<7.1.7|>=7.2,<7.2.6|>=7.3,<7.3.4|>=8,<8.0.2",
  1843. "neos/swiftmailer": "<5.4.5",
  1844. "nesbot/carbon": "<2.72.6|>=3,<3.8.4",
  1845. "netcarver/textile": "<=4.1.2",
  1846. "netgen/tagsbundle": ">=3.4,<3.4.11|>=4,<4.0.15",
  1847. "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6",
  1848. "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13",
  1849. "nilsteampassnet/teampass": "<3.1.3.1-dev",
  1850. "nitsan/ns-backup": "<13.0.1",
  1851. "nonfiction/nterchange": "<4.1.1",
  1852. "notrinos/notrinos-erp": "<=0.7",
  1853. "noumo/easyii": "<=0.9",
  1854. "novaksolutions/infusionsoft-php-sdk": "<1",
  1855. "novosga/novosga": "<=2.2.12",
  1856. "nukeviet/nukeviet": "<4.5.02",
  1857. "nyholm/psr7": "<1.6.1",
  1858. "nystudio107/craft-seomatic": "<3.4.12",
  1859. "nzedb/nzedb": "<0.8",
  1860. "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1",
  1861. "october/backend": "<1.1.2",
  1862. "october/cms": "<1.0.469|==1.0.469|==1.0.471|==1.1.1",
  1863. "october/october": "<3.7.5",
  1864. "october/rain": "<1.0.472|>=1.1,<1.1.2",
  1865. "october/system": "<3.7.5",
  1866. "oliverklee/phpunit": "<3.5.15",
  1867. "omeka/omeka-s": "<4.0.3",
  1868. "onelogin/php-saml": "<2.10.4",
  1869. "oneup/uploader-bundle": ">=1,<1.9.3|>=2,<2.1.5",
  1870. "open-web-analytics/open-web-analytics": "<1.8.1",
  1871. "opencart/opencart": ">=0",
  1872. "openid/php-openid": "<2.3",
  1873. "openmage/magento-lts": "<20.16",
  1874. "opensolutions/vimbadmin": "<=3.0.15",
  1875. "opensource-workshop/connect-cms": "<1.8.7|>=2,<2.4.7",
  1876. "orchid/platform": ">=8,<14.43",
  1877. "oro/calendar-bundle": ">=4.2,<=4.2.6|>=5,<=5.0.6|>=5.1,<5.1.1",
  1878. "oro/commerce": ">=4.1,<5.0.11|>=5.1,<5.1.1",
  1879. "oro/crm": ">=1.7,<1.7.4|>=3.1,<4.1.17|>=4.2,<4.2.7",
  1880. "oro/crm-call-bundle": ">=4.2,<=4.2.5|>=5,<5.0.4|>=5.1,<5.1.1",
  1881. "oro/customer-portal": ">=4.1,<=4.1.13|>=4.2,<=4.2.10|>=5,<=5.0.11|>=5.1,<=5.1.3",
  1882. "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<=4.2.10|>=5,<=5.0.12|>=5.1,<=5.1.3",
  1883. "oveleon/contao-cookiebar": "<1.16.3|>=2,<2.1.3",
  1884. "oxid-esales/oxideshop-ce": "<=7.0.5",
  1885. "oxid-esales/paymorrow-module": ">=1,<1.0.2|>=2,<2.0.1",
  1886. "packbackbooks/lti-1-3-php-library": "<5",
  1887. "padraic/humbug_get_contents": "<1.1.2",
  1888. "pagarme/pagarme-php": "<3",
  1889. "pagekit/pagekit": "<=1.0.18",
  1890. "paragonie/ecc": "<2.0.1",
  1891. "paragonie/random_compat": "<2",
  1892. "passbolt/passbolt_api": "<4.6.2",
  1893. "paypal/adaptivepayments-sdk-php": "<=3.9.2",
  1894. "paypal/invoice-sdk-php": "<=3.9",
  1895. "paypal/merchant-sdk-php": "<3.12",
  1896. "paypal/permissions-sdk-php": "<=3.9.1",
  1897. "pear/archive_tar": "<1.4.14",
  1898. "pear/auth": "<1.2.4",
  1899. "pear/crypt_gpg": "<1.6.7",
  1900. "pear/http_request2": "<2.7",
  1901. "pear/pear": "<=1.10.1",
  1902. "pegasus/google-for-jobs": "<1.5.1|>=2,<2.1.1",
  1903. "personnummer/personnummer": "<3.0.2",
  1904. "phanan/koel": "<5.1.4",
  1905. "phenx/php-svg-lib": "<0.5.2",
  1906. "php-censor/php-censor": "<2.0.13|>=2.1,<2.1.5",
  1907. "php-mod/curl": "<2.3.2",
  1908. "phpbb/phpbb": "<3.3.11",
  1909. "phpems/phpems": ">=6,<=6.1.3",
  1910. "phpfastcache/phpfastcache": "<6.1.5|>=7,<7.1.2|>=8,<8.0.7",
  1911. "phpmailer/phpmailer": "<6.5",
  1912. "phpmussel/phpmussel": ">=1,<1.6",
  1913. "phpmyadmin/phpmyadmin": "<5.2.2",
  1914. "phpmyfaq/phpmyfaq": "<=4.0.13",
  1915. "phpoffice/common": "<0.2.9",
  1916. "phpoffice/math": "<=0.2",
  1917. "phpoffice/phpexcel": "<=1.8.2",
  1918. "phpoffice/phpspreadsheet": "<1.30|>=2,<2.1.12|>=2.2,<2.4|>=3,<3.10|>=4,<5",
  1919. "phppgadmin/phppgadmin": "<=7.13",
  1920. "phpseclib/phpseclib": "<2.0.47|>=3,<3.0.36",
  1921. "phpservermon/phpservermon": "<3.6",
  1922. "phpsysinfo/phpsysinfo": "<3.4.3",
  1923. "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3",
  1924. "phpwhois/phpwhois": "<=4.2.5",
  1925. "phpxmlrpc/extras": "<0.6.1",
  1926. "phpxmlrpc/phpxmlrpc": "<4.9.2",
  1927. "pi/pi": "<=2.5",
  1928. "pimcore/admin-ui-classic-bundle": "<1.7.6",
  1929. "pimcore/customer-management-framework-bundle": "<4.2.1",
  1930. "pimcore/data-hub": "<1.2.4",
  1931. "pimcore/data-importer": "<1.8.9|>=1.9,<1.9.3",
  1932. "pimcore/demo": "<10.3",
  1933. "pimcore/ecommerce-framework-bundle": "<1.0.10",
  1934. "pimcore/perspective-editor": "<1.5.1",
  1935. "pimcore/pimcore": "<11.5.4",
  1936. "piwik/piwik": "<1.11",
  1937. "pixelfed/pixelfed": "<0.12.5",
  1938. "plotly/plotly.js": "<2.25.2",
  1939. "pocketmine/bedrock-protocol": "<8.0.2",
  1940. "pocketmine/pocketmine-mp": "<5.32.1",
  1941. "pocketmine/raklib": ">=0.14,<0.14.6|>=0.15,<0.15.1",
  1942. "pressbooks/pressbooks": "<5.18",
  1943. "prestashop/autoupgrade": ">=4,<4.10.1",
  1944. "prestashop/blockreassurance": "<=5.1.3",
  1945. "prestashop/blockwishlist": ">=2,<2.1.1",
  1946. "prestashop/contactform": ">=1.0.1,<4.3",
  1947. "prestashop/gamification": "<2.3.2",
  1948. "prestashop/prestashop": "<8.2.3",
  1949. "prestashop/productcomments": "<5.0.2",
  1950. "prestashop/ps_checkout": "<4.4.1|>=5,<5.0.5",
  1951. "prestashop/ps_contactinfo": "<=3.3.2",
  1952. "prestashop/ps_emailsubscription": "<2.6.1",
  1953. "prestashop/ps_facetedsearch": "<3.4.1",
  1954. "prestashop/ps_linklist": "<3.1",
  1955. "privatebin/privatebin": "<1.4|>=1.5,<1.7.4|>=1.7.7,<2.0.3",
  1956. "processwire/processwire": "<=3.0.246",
  1957. "propel/propel": ">=2.0.0.0-alpha1,<=2.0.0.0-alpha7",
  1958. "propel/propel1": ">=1,<=1.7.1",
  1959. "pterodactyl/panel": "<=1.11.10",
  1960. "ptheofan/yii2-statemachine": ">=2.0.0.0-RC1-dev,<=2",
  1961. "ptrofimov/beanstalk_console": "<1.7.14",
  1962. "pubnub/pubnub": "<6.1",
  1963. "punktde/pt_extbase": "<1.5.1",
  1964. "pusher/pusher-php-server": "<2.2.1",
  1965. "pwweb/laravel-core": "<=0.3.6.0-beta",
  1966. "pxlrbt/filament-excel": "<1.1.14|>=2.0.0.0-alpha,<2.3.3",
  1967. "pyrocms/pyrocms": "<=3.9.1",
  1968. "qcubed/qcubed": "<=3.1.1",
  1969. "quickapps/cms": "<=2.0.0.0-beta2",
  1970. "rainlab/blog-plugin": "<1.4.1",
  1971. "rainlab/debugbar-plugin": "<3.1",
  1972. "rainlab/user-plugin": "<=1.4.5",
  1973. "rankmath/seo-by-rank-math": "<=1.0.95",
  1974. "rap2hpoutre/laravel-log-viewer": "<0.13",
  1975. "react/http": ">=0.7,<1.9",
  1976. "really-simple-plugins/complianz-gdpr": "<6.4.2",
  1977. "redaxo/source": "<5.20.1",
  1978. "remdex/livehelperchat": "<4.29",
  1979. "renolit/reint-downloadmanager": "<4.0.2|>=5,<5.0.1",
  1980. "reportico-web/reportico": "<=8.1",
  1981. "rhukster/dom-sanitizer": "<1.0.7",
  1982. "rmccue/requests": ">=1.6,<1.8",
  1983. "robrichards/xmlseclibs": ">=1,<3.0.4",
  1984. "roots/soil": "<4.1",
  1985. "roundcube/roundcubemail": "<1.5.10|>=1.6,<1.6.11",
  1986. "rudloff/alltube": "<3.0.3",
  1987. "rudloff/rtmpdump-bin": "<=2.3.1",
  1988. "s-cart/core": "<=9.0.5",
  1989. "s-cart/s-cart": "<6.9",
  1990. "sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1",
  1991. "sabre/dav": ">=1.6,<1.7.11|>=1.8,<1.8.9",
  1992. "samwilson/unlinked-wikibase": "<1.42",
  1993. "scheb/two-factor-bundle": "<3.26|>=4,<4.11",
  1994. "sensiolabs/connect": "<4.2.3",
  1995. "serluck/phpwhois": "<=4.2.6",
  1996. "setasign/fpdi": "<2.6.4",
  1997. "sfroemken/url_redirect": "<=1.2.1",
  1998. "sheng/yiicms": "<1.2.1",
  1999. "shopware/core": "<6.6.10.9-dev|>=6.7,<6.7.4.1-dev",
  2000. "shopware/platform": "<6.6.10.7-dev|>=6.7,<6.7.3.1-dev",
  2001. "shopware/production": "<=6.3.5.2",
  2002. "shopware/shopware": "<=5.7.17|>=6.7,<6.7.2.1-dev",
  2003. "shopware/storefront": "<=6.4.8.1|>=6.5.8,<6.5.8.7-dev",
  2004. "shopxo/shopxo": "<=6.4",
  2005. "showdoc/showdoc": "<2.10.4",
  2006. "shuchkin/simplexlsx": ">=1.0.12,<1.1.13",
  2007. "silverstripe-australia/advancedreports": ">=1,<=2",
  2008. "silverstripe/admin": "<1.13.19|>=2,<2.1.8",
  2009. "silverstripe/assets": ">=1,<1.11.1",
  2010. "silverstripe/cms": "<4.11.3",
  2011. "silverstripe/comments": ">=1.3,<3.1.1",
  2012. "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3",
  2013. "silverstripe/framework": "<5.3.23",
  2014. "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.8.2|>=4,<4.3.7|>=5,<5.1.3",
  2015. "silverstripe/hybridsessions": ">=1,<2.4.1|>=2.5,<2.5.1",
  2016. "silverstripe/recipe-cms": ">=4.5,<4.5.3",
  2017. "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1",
  2018. "silverstripe/reports": "<5.2.3",
  2019. "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4|>=2.1,<2.1.2",
  2020. "silverstripe/silverstripe-omnipay": "<2.5.2|>=3,<3.0.2|>=3.1,<3.1.4|>=3.2,<3.2.1",
  2021. "silverstripe/subsites": ">=2,<2.6.1",
  2022. "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1",
  2023. "silverstripe/userforms": "<3|>=5,<5.4.2",
  2024. "silverstripe/versioned-admin": ">=1,<1.11.1",
  2025. "simogeo/filemanager": "<=2.5",
  2026. "simple-updates/phpwhois": "<=1",
  2027. "simplesamlphp/saml2": "<=4.16.15|>=5.0.0.0-alpha1,<=5.0.0.0-alpha19",
  2028. "simplesamlphp/saml2-legacy": "<=4.16.15",
  2029. "simplesamlphp/simplesamlphp": "<1.18.6",
  2030. "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1",
  2031. "simplesamlphp/simplesamlphp-module-openid": "<1",
  2032. "simplesamlphp/simplesamlphp-module-openidprovider": "<0.9",
  2033. "simplesamlphp/xml-common": "<1.20",
  2034. "simplesamlphp/xml-security": "==1.6.11",
  2035. "simplito/elliptic-php": "<1.0.6",
  2036. "sitegeist/fluid-components": "<3.5",
  2037. "sjbr/sr-feuser-register": "<2.6.2|>=5.1,<12.5",
  2038. "sjbr/sr-freecap": "<2.4.6|>=2.5,<2.5.3",
  2039. "sjbr/static-info-tables": "<2.3.1",
  2040. "slim/psr7": "<1.4.1|>=1.5,<1.5.1|>=1.6,<1.6.1",
  2041. "slim/slim": "<2.6",
  2042. "slub/slub-events": "<3.0.3",
  2043. "smarty/smarty": "<4.5.3|>=5,<5.1.1",
  2044. "snipe/snipe-it": "<=8.3.4",
  2045. "socalnick/scn-social-auth": "<1.15.2",
  2046. "socialiteproviders/steam": "<1.1",
  2047. "solspace/craft-freeform": ">=5,<5.10.16",
  2048. "soosyze/soosyze": "<=2",
  2049. "spatie/browsershot": "<5.0.5",
  2050. "spatie/image-optimizer": "<1.7.3",
  2051. "spencer14420/sp-php-email-handler": "<1",
  2052. "spipu/html2pdf": "<5.2.8",
  2053. "spiral/roadrunner": "<2025.1",
  2054. "spoon/library": "<1.4.1",
  2055. "spoonity/tcpdf": "<6.2.22",
  2056. "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",
  2057. "ssddanbrown/bookstack": "<24.05.1",
  2058. "starcitizentools/citizen-skin": ">=1.9.4,<3.9",
  2059. "starcitizentools/short-description": ">=4,<4.0.1",
  2060. "starcitizentools/tabber-neue": ">=1.9.1,<2.7.2|>=3,<3.1.1",
  2061. "starcitizenwiki/embedvideo": "<=4",
  2062. "statamic/cms": "<=5.22",
  2063. "stormpath/sdk": "<9.9.99",
  2064. "studio-42/elfinder": "<=2.1.64",
  2065. "studiomitte/friendlycaptcha": "<0.1.4",
  2066. "subhh/libconnect": "<7.0.8|>=8,<8.1",
  2067. "sukohi/surpass": "<1",
  2068. "sulu/form-bundle": ">=2,<2.5.3",
  2069. "sulu/sulu": "<1.6.44|>=2,<2.5.25|>=2.6,<2.6.9|>=3.0.0.0-alpha1,<3.0.0.0-alpha3",
  2070. "sumocoders/framework-user-bundle": "<1.4",
  2071. "superbig/craft-audit": "<3.0.2",
  2072. "svewap/a21glossary": "<=0.4.10",
  2073. "swag/paypal": "<5.4.4",
  2074. "swiftmailer/swiftmailer": "<6.2.5",
  2075. "swiftyedit/swiftyedit": "<1.2",
  2076. "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
  2077. "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
  2078. "sylius/grid-bundle": "<1.10.1",
  2079. "sylius/paypal-plugin": "<1.6.2|>=1.7,<1.7.2|>=2,<2.0.2",
  2080. "sylius/resource-bundle": ">=1,<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4",
  2081. "sylius/sylius": "<1.12.19|>=1.13.0.0-alpha1,<1.13.4",
  2082. "symbiote/silverstripe-multivaluefield": ">=3,<3.1",
  2083. "symbiote/silverstripe-queuedjobs": ">=3,<3.0.2|>=3.1,<3.1.4|>=4,<4.0.7|>=4.1,<4.1.2|>=4.2,<4.2.4|>=4.3,<4.3.3|>=4.4,<4.4.3|>=4.5,<4.5.1|>=4.6,<4.6.4",
  2084. "symbiote/silverstripe-seed": "<6.0.3",
  2085. "symbiote/silverstripe-versionedfiles": "<=2.0.3",
  2086. "symfont/process": ">=0",
  2087. "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8",
  2088. "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
  2089. "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4",
  2090. "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1",
  2091. "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=5.3.14,<5.3.15|>=5.4.3,<5.4.4|>=6.0.3,<6.0.4",
  2092. "symfony/http-client": ">=4.3,<5.4.47|>=6,<6.4.15|>=7,<7.1.8",
  2093. "symfony/http-foundation": "<5.4.50|>=6,<6.4.29|>=7,<7.3.7",
  2094. "symfony/http-kernel": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6",
  2095. "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13",
  2096. "symfony/maker-bundle": ">=1.27,<1.29.2|>=1.30,<1.31.1",
  2097. "symfony/mime": ">=4.3,<4.3.8",
  2098. "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
  2099. "symfony/polyfill": ">=1,<1.10",
  2100. "symfony/polyfill-php55": ">=1,<1.10",
  2101. "symfony/process": "<5.4.46|>=6,<6.4.14|>=7,<7.1.7",
  2102. "symfony/proxy-manager-bridge": ">=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
  2103. "symfony/routing": ">=2,<2.0.19",
  2104. "symfony/runtime": ">=5.3,<5.4.46|>=6,<6.4.14|>=7,<7.1.7",
  2105. "symfony/security": ">=2,<2.7.51|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.8",
  2106. "symfony/security-bundle": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.4.10|>=7,<7.0.10|>=7.1,<7.1.3",
  2107. "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.9",
  2108. "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
  2109. "symfony/security-guard": ">=2.8,<3.4.48|>=4,<4.4.23|>=5,<5.2.8",
  2110. "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7|>=5.1,<5.2.8|>=5.3,<5.4.47|>=6,<6.4.15|>=7,<7.1.8",
  2111. "symfony/serializer": ">=2,<2.0.11|>=4.1,<4.4.35|>=5,<5.3.12",
  2112. "symfony/symfony": "<5.4.50|>=6,<6.4.29|>=7,<7.3.7",
  2113. "symfony/translation": ">=2,<2.0.17",
  2114. "symfony/twig-bridge": ">=2,<4.4.51|>=5,<5.4.31|>=6,<6.3.8",
  2115. "symfony/ux-autocomplete": "<2.11.2",
  2116. "symfony/ux-live-component": "<2.25.1",
  2117. "symfony/ux-twig-component": "<2.25.1",
  2118. "symfony/validator": "<5.4.43|>=6,<6.4.11|>=7,<7.1.4",
  2119. "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8",
  2120. "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",
  2121. "symfony/webhook": ">=6.3,<6.3.8",
  2122. "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7|>=2.2.0.0-beta1,<2.2.0.0-beta2",
  2123. "symphonycms/symphony-2": "<2.6.4",
  2124. "t3/dce": "<0.11.5|>=2.2,<2.6.2",
  2125. "t3g/svg-sanitizer": "<1.0.3",
  2126. "t3s/content-consent": "<1.0.3|>=2,<2.0.2",
  2127. "tastyigniter/tastyigniter": "<4",
  2128. "tcg/voyager": "<=1.8",
  2129. "tecnickcom/tc-lib-pdf-font": "<2.6.4",
  2130. "tecnickcom/tcpdf": "<6.8",
  2131. "terminal42/contao-tablelookupwizard": "<3.3.5",
  2132. "thelia/backoffice-default-template": ">=2.1,<2.1.2",
  2133. "thelia/thelia": ">=2.1,<2.1.3",
  2134. "theonedemon/phpwhois": "<=4.2.5",
  2135. "thinkcmf/thinkcmf": "<6.0.8",
  2136. "thorsten/phpmyfaq": "<=4.0.13",
  2137. "tikiwiki/tiki-manager": "<=17.1",
  2138. "timber/timber": ">=0.16.6,<1.23.1|>=1.24,<1.24.1|>=2,<2.1",
  2139. "tinymce/tinymce": "<7.2",
  2140. "tinymighty/wiki-seo": "<1.2.2",
  2141. "titon/framework": "<9.9.99",
  2142. "tltneon/lgsl": "<7",
  2143. "tobiasbg/tablepress": "<=2.0.0.0-RC1",
  2144. "topthink/framework": "<6.0.17|>=6.1,<=8.0.4",
  2145. "topthink/think": "<=6.1.1",
  2146. "topthink/thinkphp": "<=3.2.3|>=6.1.3,<=8.0.4",
  2147. "torrentpier/torrentpier": "<=2.8.8",
  2148. "tpwd/ke_search": "<4.0.3|>=4.1,<4.6.6|>=5,<5.0.2",
  2149. "tribalsystems/zenario": "<=9.7.61188",
  2150. "truckersmp/phpwhois": "<=4.3.1",
  2151. "ttskch/pagination-service-provider": "<1",
  2152. "twbs/bootstrap": "<3.4.1|>=4,<4.3.1",
  2153. "twig/twig": "<3.11.2|>=3.12,<3.14.1|>=3.16,<3.19",
  2154. "typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2",
  2155. "typo3/cms-backend": "<4.1.14|>=4.2,<4.2.15|>=4.3,<4.3.7|>=4.4,<4.4.4|>=7,<=7.6.50|>=8,<=8.7.39|>=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
  2156. "typo3/cms-belog": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
  2157. "typo3/cms-beuser": ">=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
  2158. "typo3/cms-core": "<=8.7.56|>=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
  2159. "typo3/cms-dashboard": ">=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
  2160. "typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1",
  2161. "typo3/cms-extensionmanager": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
  2162. "typo3/cms-felogin": ">=4.2,<4.2.3",
  2163. "typo3/cms-fluid": "<4.3.4|>=4.4,<4.4.1",
  2164. "typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
  2165. "typo3/cms-frontend": "<4.3.9|>=4.4,<4.4.5",
  2166. "typo3/cms-indexed-search": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
  2167. "typo3/cms-install": "<4.1.14|>=4.2,<4.2.16|>=4.3,<4.3.9|>=4.4,<4.4.5|>=12.2,<12.4.8|==13.4.2",
  2168. "typo3/cms-lowlevel": ">=11,<=11.5.41",
  2169. "typo3/cms-recordlist": ">=11,<11.5.48",
  2170. "typo3/cms-recycler": ">=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
  2171. "typo3/cms-rte-ckeditor": ">=9.5,<9.5.42|>=10,<10.4.39|>=11,<11.5.30",
  2172. "typo3/cms-scheduler": ">=11,<=11.5.41",
  2173. "typo3/cms-setup": ">=9,<=9.5.50|>=10,<=10.4.49|>=11,<=11.5.43|>=12,<=12.4.30|>=13,<=13.4.11",
  2174. "typo3/cms-webhooks": ">=12,<=12.4.30|>=13,<=13.4.11",
  2175. "typo3/cms-workspaces": ">=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
  2176. "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
  2177. "typo3/html-sanitizer": ">=1,<=1.5.2|>=2,<=2.1.3",
  2178. "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3",
  2179. "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1",
  2180. "typo3/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",
  2181. "typo3fluid/fluid": ">=2,<2.0.8|>=2.1,<2.1.7|>=2.2,<2.2.4|>=2.3,<2.3.7|>=2.4,<2.4.4|>=2.5,<2.5.11|>=2.6,<2.6.10",
  2182. "ua-parser/uap-php": "<3.8",
  2183. "uasoft-indonesia/badaso": "<=2.9.7",
  2184. "unisharp/laravel-filemanager": "<2.9.1",
  2185. "universal-omega/dynamic-page-list3": "<3.6.4",
  2186. "unopim/unopim": "<=0.3",
  2187. "userfrosting/userfrosting": ">=0.3.1,<4.6.3",
  2188. "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2",
  2189. "uvdesk/community-skeleton": "<=1.1.1",
  2190. "uvdesk/core-framework": "<=1.1.1",
  2191. "vanilla/safecurl": "<0.9.2",
  2192. "verbb/comments": "<1.5.5",
  2193. "verbb/formie": "<=2.1.43",
  2194. "verbb/image-resizer": "<2.0.9",
  2195. "verbb/knock-knock": "<1.2.8",
  2196. "verot/class.upload.php": "<=2.1.6",
  2197. "vertexvaar/falsftp": "<0.2.6",
  2198. "villagedefrance/opencart-overclocked": "<=1.11.1",
  2199. "vova07/yii2-fileapi-widget": "<0.1.9",
  2200. "vrana/adminer": "<=4.8.1",
  2201. "vufind/vufind": ">=2,<9.1.1",
  2202. "waldhacker/hcaptcha": "<2.1.2",
  2203. "wallabag/tcpdf": "<6.2.22",
  2204. "wallabag/wallabag": "<2.6.11",
  2205. "wanglelecc/laracms": "<=1.0.3",
  2206. "wapplersystems/a21glossary": "<=0.4.10",
  2207. "web-auth/webauthn-framework": ">=3.3,<3.3.4|>=4.5,<4.9",
  2208. "web-auth/webauthn-lib": ">=4.5,<4.9",
  2209. "web-feet/coastercms": "==5.5",
  2210. "web-tp3/wec_map": "<3.0.3",
  2211. "webbuilders-group/silverstripe-kapost-bridge": "<0.4",
  2212. "webcoast/deferred-image-processing": "<1.0.2",
  2213. "webklex/laravel-imap": "<5.3",
  2214. "webklex/php-imap": "<5.3",
  2215. "webpa/webpa": "<3.1.2",
  2216. "webreinvent/vaahcms": "<=2.3.1",
  2217. "wikibase/wikibase": "<=1.39.3",
  2218. "wikimedia/parsoid": "<0.12.2",
  2219. "willdurand/js-translation-bundle": "<2.1.1",
  2220. "winter/wn-backend-module": "<1.2.4",
  2221. "winter/wn-cms-module": "<1.0.476|>=1.1,<1.1.11|>=1.2,<1.2.7",
  2222. "winter/wn-dusk-plugin": "<2.1",
  2223. "winter/wn-system-module": "<1.2.4",
  2224. "wintercms/winter": "<=1.2.3",
  2225. "wireui/wireui": "<1.19.3|>=2,<2.1.3",
  2226. "woocommerce/woocommerce": "<6.6|>=8.8,<8.8.5|>=8.9,<8.9.3",
  2227. "wp-cli/wp-cli": ">=0.12,<2.5",
  2228. "wp-graphql/wp-graphql": "<=1.14.5",
  2229. "wp-premium/gravityforms": "<2.4.21",
  2230. "wpanel/wpanel4-cms": "<=4.3.1",
  2231. "wpcloud/wp-stateless": "<3.2",
  2232. "wpglobus/wpglobus": "<=1.9.6",
  2233. "wwbn/avideo": "<14.3",
  2234. "xataface/xataface": "<3",
  2235. "xpressengine/xpressengine": "<3.0.15",
  2236. "yab/quarx": "<2.4.5",
  2237. "yeswiki/yeswiki": "<=4.5.4",
  2238. "yetiforce/yetiforce-crm": "<6.5",
  2239. "yidashi/yii2cmf": "<=2",
  2240. "yii2mod/yii2-cms": "<1.9.2",
  2241. "yiisoft/yii": "<1.1.31",
  2242. "yiisoft/yii2": "<2.0.52",
  2243. "yiisoft/yii2-authclient": "<2.2.15",
  2244. "yiisoft/yii2-bootstrap": "<2.0.4",
  2245. "yiisoft/yii2-dev": "<=2.0.45",
  2246. "yiisoft/yii2-elasticsearch": "<2.0.5",
  2247. "yiisoft/yii2-gii": "<=2.2.4",
  2248. "yiisoft/yii2-jui": "<2.0.4",
  2249. "yiisoft/yii2-redis": "<2.0.20",
  2250. "yikesinc/yikes-inc-easy-mailchimp-extender": "<6.8.6",
  2251. "yoast-seo-for-typo3/yoast_seo": "<7.2.3",
  2252. "yourls/yourls": "<=1.8.2",
  2253. "yuan1994/tpadmin": "<=1.3.12",
  2254. "z-push/z-push-dev": "<2.7.6",
  2255. "zencart/zencart": "<=1.5.7.0-beta",
  2256. "zendesk/zendesk_api_client_php": "<2.2.11",
  2257. "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3",
  2258. "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2",
  2259. "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2",
  2260. "zendframework/zend-db": "<2.2.10|>=2.3,<2.3.5",
  2261. "zendframework/zend-developer-tools": ">=1.2.2,<1.2.3",
  2262. "zendframework/zend-diactoros": "<1.8.4",
  2263. "zendframework/zend-feed": "<2.10.3",
  2264. "zendframework/zend-form": ">=2,<2.2.7|>=2.3,<2.3.1",
  2265. "zendframework/zend-http": "<2.8.1",
  2266. "zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6",
  2267. "zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3",
  2268. "zendframework/zend-mail": "<2.4.11|>=2.5,<2.7.2",
  2269. "zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1",
  2270. "zendframework/zend-session": ">=2,<2.2.9|>=2.3,<2.3.4",
  2271. "zendframework/zend-validator": ">=2.3,<2.3.6",
  2272. "zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1",
  2273. "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6",
  2274. "zendframework/zendframework": "<=3",
  2275. "zendframework/zendframework1": "<1.12.20",
  2276. "zendframework/zendopenid": "<2.0.2",
  2277. "zendframework/zendrest": "<2.0.2",
  2278. "zendframework/zendservice-amazon": "<2.0.3",
  2279. "zendframework/zendservice-api": "<1",
  2280. "zendframework/zendservice-audioscrobbler": "<2.0.2",
  2281. "zendframework/zendservice-nirvanix": "<2.0.2",
  2282. "zendframework/zendservice-slideshare": "<2.0.2",
  2283. "zendframework/zendservice-technorati": "<2.0.2",
  2284. "zendframework/zendservice-windowsazure": "<2.0.2",
  2285. "zendframework/zendxml": ">=1,<1.0.1",
  2286. "zenstruck/collection": "<0.2.1",
  2287. "zetacomponents/mail": "<1.8.2",
  2288. "zf-commons/zfc-user": "<1.2.2",
  2289. "zfcampus/zf-apigility-doctrine": ">=1,<1.0.3",
  2290. "zfr/zfr-oauth2-server-module": "<0.1.2",
  2291. "zoujingli/thinkadmin": "<=6.1.53"
  2292. },
  2293. "default-branch": true,
  2294. "type": "metapackage",
  2295. "notification-url": "https://packagist.org/downloads/",
  2296. "license": [
  2297. "MIT"
  2298. ],
  2299. "authors": [
  2300. {
  2301. "name": "Marco Pivetta",
  2302. "email": "ocramius@gmail.com",
  2303. "role": "maintainer"
  2304. },
  2305. {
  2306. "name": "Ilya Tribusean",
  2307. "email": "slash3b@gmail.com",
  2308. "role": "maintainer"
  2309. }
  2310. ],
  2311. "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
  2312. "keywords": [
  2313. "dev"
  2314. ],
  2315. "support": {
  2316. "issues": "https://github.com/Roave/SecurityAdvisories/issues",
  2317. "source": "https://github.com/Roave/SecurityAdvisories/tree/latest"
  2318. },
  2319. "funding": [
  2320. {
  2321. "url": "https://github.com/Ocramius",
  2322. "type": "github"
  2323. },
  2324. {
  2325. "url": "https://tidelift.com/funding/github/packagist/roave/security-advisories",
  2326. "type": "tidelift"
  2327. }
  2328. ],
  2329. "time": "2025-12-02T01:33:57+00:00"
  2330. }
  2331. ],
  2332. "aliases": [],
  2333. "minimum-stability": "stable",
  2334. "stability-flags": {
  2335. "roave/security-advisories": 20
  2336. },
  2337. "prefer-stable": false,
  2338. "prefer-lowest": false,
  2339. "platform": {
  2340. "php": "^8.0 || ^7.4",
  2341. "ext-json": "*",
  2342. "ext-tokenizer": "*"
  2343. },
  2344. "platform-dev": {},
  2345. "platform-overrides": {
  2346. "php": "7.4.99"
  2347. },
  2348. "plugin-api-version": "2.6.0"
  2349. }