You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 86KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427
  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": "50f9c0973acafa44bb359f58b30b8e58",
  8. "packages": [
  9. {
  10. "name": "psr/cache",
  11. "version": "3.0.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/php-fig/cache.git",
  15. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  20. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=8.0.0"
  25. },
  26. "type": "library",
  27. "extra": {
  28. "branch-alias": {
  29. "dev-master": "1.0.x-dev"
  30. }
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Psr\\Cache\\": "src/"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "authors": [
  42. {
  43. "name": "PHP-FIG",
  44. "homepage": "https://www.php-fig.org/"
  45. }
  46. ],
  47. "description": "Common interface for caching libraries",
  48. "keywords": [
  49. "cache",
  50. "psr",
  51. "psr-6"
  52. ],
  53. "support": {
  54. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  55. },
  56. "time": "2021-02-03T23:26:27+00:00"
  57. },
  58. {
  59. "name": "psr/container",
  60. "version": "2.0.2",
  61. "source": {
  62. "type": "git",
  63. "url": "https://github.com/php-fig/container.git",
  64. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  65. },
  66. "dist": {
  67. "type": "zip",
  68. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  69. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  70. "shasum": ""
  71. },
  72. "require": {
  73. "php": ">=7.4.0"
  74. },
  75. "type": "library",
  76. "extra": {
  77. "branch-alias": {
  78. "dev-master": "2.0.x-dev"
  79. }
  80. },
  81. "autoload": {
  82. "psr-4": {
  83. "Psr\\Container\\": "src/"
  84. }
  85. },
  86. "notification-url": "https://packagist.org/downloads/",
  87. "license": [
  88. "MIT"
  89. ],
  90. "authors": [
  91. {
  92. "name": "PHP-FIG",
  93. "homepage": "https://www.php-fig.org/"
  94. }
  95. ],
  96. "description": "Common Container Interface (PHP FIG PSR-11)",
  97. "homepage": "https://github.com/php-fig/container",
  98. "keywords": [
  99. "PSR-11",
  100. "container",
  101. "container-interface",
  102. "container-interop",
  103. "psr"
  104. ],
  105. "support": {
  106. "issues": "https://github.com/php-fig/container/issues",
  107. "source": "https://github.com/php-fig/container/tree/2.0.2"
  108. },
  109. "time": "2021-11-05T16:47:00+00:00"
  110. },
  111. {
  112. "name": "psr/event-dispatcher",
  113. "version": "1.0.0",
  114. "source": {
  115. "type": "git",
  116. "url": "https://github.com/php-fig/event-dispatcher.git",
  117. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  118. },
  119. "dist": {
  120. "type": "zip",
  121. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  122. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  123. "shasum": ""
  124. },
  125. "require": {
  126. "php": ">=7.2.0"
  127. },
  128. "type": "library",
  129. "extra": {
  130. "branch-alias": {
  131. "dev-master": "1.0.x-dev"
  132. }
  133. },
  134. "autoload": {
  135. "psr-4": {
  136. "Psr\\EventDispatcher\\": "src/"
  137. }
  138. },
  139. "notification-url": "https://packagist.org/downloads/",
  140. "license": [
  141. "MIT"
  142. ],
  143. "authors": [
  144. {
  145. "name": "PHP-FIG",
  146. "homepage": "http://www.php-fig.org/"
  147. }
  148. ],
  149. "description": "Standard interfaces for event handling.",
  150. "keywords": [
  151. "events",
  152. "psr",
  153. "psr-14"
  154. ],
  155. "support": {
  156. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  157. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  158. },
  159. "time": "2019-01-08T18:20:26+00:00"
  160. },
  161. {
  162. "name": "psr/log",
  163. "version": "3.0.0",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/php-fig/log.git",
  167. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  172. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "php": ">=8.0.0"
  177. },
  178. "type": "library",
  179. "extra": {
  180. "branch-alias": {
  181. "dev-master": "3.x-dev"
  182. }
  183. },
  184. "autoload": {
  185. "psr-4": {
  186. "Psr\\Log\\": "src"
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "authors": [
  194. {
  195. "name": "PHP-FIG",
  196. "homepage": "https://www.php-fig.org/"
  197. }
  198. ],
  199. "description": "Common interface for logging libraries",
  200. "homepage": "https://github.com/php-fig/log",
  201. "keywords": [
  202. "log",
  203. "psr",
  204. "psr-3"
  205. ],
  206. "support": {
  207. "source": "https://github.com/php-fig/log/tree/3.0.0"
  208. },
  209. "time": "2021-07-14T16:46:02+00:00"
  210. },
  211. {
  212. "name": "symfony/cache",
  213. "version": "v7.1.0",
  214. "source": {
  215. "type": "git",
  216. "url": "https://github.com/symfony/cache.git",
  217. "reference": "c36a10e6456b32e40d1ef516b3a2749883f9117b"
  218. },
  219. "dist": {
  220. "type": "zip",
  221. "url": "https://api.github.com/repos/symfony/cache/zipball/c36a10e6456b32e40d1ef516b3a2749883f9117b",
  222. "reference": "c36a10e6456b32e40d1ef516b3a2749883f9117b",
  223. "shasum": ""
  224. },
  225. "require": {
  226. "php": ">=8.2",
  227. "psr/cache": "^2.0|^3.0",
  228. "psr/log": "^1.1|^2|^3",
  229. "symfony/cache-contracts": "^2.5|^3",
  230. "symfony/deprecation-contracts": "^2.5|^3.0",
  231. "symfony/service-contracts": "^2.5|^3",
  232. "symfony/var-exporter": "^6.4|^7.0"
  233. },
  234. "conflict": {
  235. "doctrine/dbal": "<3.6",
  236. "symfony/dependency-injection": "<6.4",
  237. "symfony/http-kernel": "<6.4",
  238. "symfony/var-dumper": "<6.4"
  239. },
  240. "provide": {
  241. "psr/cache-implementation": "2.0|3.0",
  242. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  243. "symfony/cache-implementation": "1.1|2.0|3.0"
  244. },
  245. "require-dev": {
  246. "cache/integration-tests": "dev-master",
  247. "doctrine/dbal": "^3.6|^4",
  248. "predis/predis": "^1.1|^2.0",
  249. "psr/simple-cache": "^1.0|^2.0|^3.0",
  250. "symfony/config": "^6.4|^7.0",
  251. "symfony/dependency-injection": "^6.4|^7.0",
  252. "symfony/filesystem": "^6.4|^7.0",
  253. "symfony/http-kernel": "^6.4|^7.0",
  254. "symfony/messenger": "^6.4|^7.0",
  255. "symfony/var-dumper": "^6.4|^7.0"
  256. },
  257. "type": "library",
  258. "autoload": {
  259. "psr-4": {
  260. "Symfony\\Component\\Cache\\": ""
  261. },
  262. "classmap": [
  263. "Traits/ValueWrapper.php"
  264. ],
  265. "exclude-from-classmap": [
  266. "/Tests/"
  267. ]
  268. },
  269. "notification-url": "https://packagist.org/downloads/",
  270. "license": [
  271. "MIT"
  272. ],
  273. "authors": [
  274. {
  275. "name": "Nicolas Grekas",
  276. "email": "p@tchwork.com"
  277. },
  278. {
  279. "name": "Symfony Community",
  280. "homepage": "https://symfony.com/contributors"
  281. }
  282. ],
  283. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  284. "homepage": "https://symfony.com",
  285. "keywords": [
  286. "caching",
  287. "psr6"
  288. ],
  289. "support": {
  290. "source": "https://github.com/symfony/cache/tree/v7.1.0"
  291. },
  292. "funding": [
  293. {
  294. "url": "https://symfony.com/sponsor",
  295. "type": "custom"
  296. },
  297. {
  298. "url": "https://github.com/fabpot",
  299. "type": "github"
  300. },
  301. {
  302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  303. "type": "tidelift"
  304. }
  305. ],
  306. "time": "2024-05-28T08:39:33+00:00"
  307. },
  308. {
  309. "name": "symfony/cache-contracts",
  310. "version": "v3.5.0",
  311. "source": {
  312. "type": "git",
  313. "url": "https://github.com/symfony/cache-contracts.git",
  314. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  315. },
  316. "dist": {
  317. "type": "zip",
  318. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  319. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  320. "shasum": ""
  321. },
  322. "require": {
  323. "php": ">=8.1",
  324. "psr/cache": "^3.0"
  325. },
  326. "type": "library",
  327. "extra": {
  328. "branch-alias": {
  329. "dev-main": "3.5-dev"
  330. },
  331. "thanks": {
  332. "name": "symfony/contracts",
  333. "url": "https://github.com/symfony/contracts"
  334. }
  335. },
  336. "autoload": {
  337. "psr-4": {
  338. "Symfony\\Contracts\\Cache\\": ""
  339. }
  340. },
  341. "notification-url": "https://packagist.org/downloads/",
  342. "license": [
  343. "MIT"
  344. ],
  345. "authors": [
  346. {
  347. "name": "Nicolas Grekas",
  348. "email": "p@tchwork.com"
  349. },
  350. {
  351. "name": "Symfony Community",
  352. "homepage": "https://symfony.com/contributors"
  353. }
  354. ],
  355. "description": "Generic abstractions related to caching",
  356. "homepage": "https://symfony.com",
  357. "keywords": [
  358. "abstractions",
  359. "contracts",
  360. "decoupling",
  361. "interfaces",
  362. "interoperability",
  363. "standards"
  364. ],
  365. "support": {
  366. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  367. },
  368. "funding": [
  369. {
  370. "url": "https://symfony.com/sponsor",
  371. "type": "custom"
  372. },
  373. {
  374. "url": "https://github.com/fabpot",
  375. "type": "github"
  376. },
  377. {
  378. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  379. "type": "tidelift"
  380. }
  381. ],
  382. "time": "2024-04-18T09:32:20+00:00"
  383. },
  384. {
  385. "name": "symfony/config",
  386. "version": "v7.1.0",
  387. "source": {
  388. "type": "git",
  389. "url": "https://github.com/symfony/config.git",
  390. "reference": "c4a60be1c7ec93aa8b7f19e07b6427143a502ef4"
  391. },
  392. "dist": {
  393. "type": "zip",
  394. "url": "https://api.github.com/repos/symfony/config/zipball/c4a60be1c7ec93aa8b7f19e07b6427143a502ef4",
  395. "reference": "c4a60be1c7ec93aa8b7f19e07b6427143a502ef4",
  396. "shasum": ""
  397. },
  398. "require": {
  399. "php": ">=8.2",
  400. "symfony/deprecation-contracts": "^2.5|^3",
  401. "symfony/filesystem": "^7.1",
  402. "symfony/polyfill-ctype": "~1.8"
  403. },
  404. "conflict": {
  405. "symfony/finder": "<6.4",
  406. "symfony/service-contracts": "<2.5"
  407. },
  408. "require-dev": {
  409. "symfony/event-dispatcher": "^6.4|^7.0",
  410. "symfony/finder": "^6.4|^7.0",
  411. "symfony/messenger": "^6.4|^7.0",
  412. "symfony/service-contracts": "^2.5|^3",
  413. "symfony/yaml": "^6.4|^7.0"
  414. },
  415. "type": "library",
  416. "autoload": {
  417. "psr-4": {
  418. "Symfony\\Component\\Config\\": ""
  419. },
  420. "exclude-from-classmap": [
  421. "/Tests/"
  422. ]
  423. },
  424. "notification-url": "https://packagist.org/downloads/",
  425. "license": [
  426. "MIT"
  427. ],
  428. "authors": [
  429. {
  430. "name": "Fabien Potencier",
  431. "email": "fabien@symfony.com"
  432. },
  433. {
  434. "name": "Symfony Community",
  435. "homepage": "https://symfony.com/contributors"
  436. }
  437. ],
  438. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  439. "homepage": "https://symfony.com",
  440. "support": {
  441. "source": "https://github.com/symfony/config/tree/v7.1.0"
  442. },
  443. "funding": [
  444. {
  445. "url": "https://symfony.com/sponsor",
  446. "type": "custom"
  447. },
  448. {
  449. "url": "https://github.com/fabpot",
  450. "type": "github"
  451. },
  452. {
  453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  454. "type": "tidelift"
  455. }
  456. ],
  457. "time": "2024-05-28T06:54:05+00:00"
  458. },
  459. {
  460. "name": "symfony/console",
  461. "version": "v7.1.0",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/symfony/console.git",
  465. "reference": "5bcde9e0b2ea9bd9772bca17618365ea921c5707"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/symfony/console/zipball/5bcde9e0b2ea9bd9772bca17618365ea921c5707",
  470. "reference": "5bcde9e0b2ea9bd9772bca17618365ea921c5707",
  471. "shasum": ""
  472. },
  473. "require": {
  474. "php": ">=8.2",
  475. "symfony/polyfill-mbstring": "~1.0",
  476. "symfony/service-contracts": "^2.5|^3",
  477. "symfony/string": "^6.4|^7.0"
  478. },
  479. "conflict": {
  480. "symfony/dependency-injection": "<6.4",
  481. "symfony/dotenv": "<6.4",
  482. "symfony/event-dispatcher": "<6.4",
  483. "symfony/lock": "<6.4",
  484. "symfony/process": "<6.4"
  485. },
  486. "provide": {
  487. "psr/log-implementation": "1.0|2.0|3.0"
  488. },
  489. "require-dev": {
  490. "psr/log": "^1|^2|^3",
  491. "symfony/config": "^6.4|^7.0",
  492. "symfony/dependency-injection": "^6.4|^7.0",
  493. "symfony/event-dispatcher": "^6.4|^7.0",
  494. "symfony/http-foundation": "^6.4|^7.0",
  495. "symfony/http-kernel": "^6.4|^7.0",
  496. "symfony/lock": "^6.4|^7.0",
  497. "symfony/messenger": "^6.4|^7.0",
  498. "symfony/process": "^6.4|^7.0",
  499. "symfony/stopwatch": "^6.4|^7.0",
  500. "symfony/var-dumper": "^6.4|^7.0"
  501. },
  502. "type": "library",
  503. "autoload": {
  504. "psr-4": {
  505. "Symfony\\Component\\Console\\": ""
  506. },
  507. "exclude-from-classmap": [
  508. "/Tests/"
  509. ]
  510. },
  511. "notification-url": "https://packagist.org/downloads/",
  512. "license": [
  513. "MIT"
  514. ],
  515. "authors": [
  516. {
  517. "name": "Fabien Potencier",
  518. "email": "fabien@symfony.com"
  519. },
  520. {
  521. "name": "Symfony Community",
  522. "homepage": "https://symfony.com/contributors"
  523. }
  524. ],
  525. "description": "Eases the creation of beautiful and testable command line interfaces",
  526. "homepage": "https://symfony.com",
  527. "keywords": [
  528. "cli",
  529. "command-line",
  530. "console",
  531. "terminal"
  532. ],
  533. "support": {
  534. "source": "https://github.com/symfony/console/tree/v7.1.0"
  535. },
  536. "funding": [
  537. {
  538. "url": "https://symfony.com/sponsor",
  539. "type": "custom"
  540. },
  541. {
  542. "url": "https://github.com/fabpot",
  543. "type": "github"
  544. },
  545. {
  546. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  547. "type": "tidelift"
  548. }
  549. ],
  550. "time": "2024-05-17T10:55:18+00:00"
  551. },
  552. {
  553. "name": "symfony/dependency-injection",
  554. "version": "v7.1.0",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/symfony/dependency-injection.git",
  558. "reference": "77f3166335d506e33314d257817e9b3c57068968"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/77f3166335d506e33314d257817e9b3c57068968",
  563. "reference": "77f3166335d506e33314d257817e9b3c57068968",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "php": ">=8.2",
  568. "psr/container": "^1.1|^2.0",
  569. "symfony/deprecation-contracts": "^2.5|^3",
  570. "symfony/service-contracts": "^3.5",
  571. "symfony/var-exporter": "^6.4|^7.0"
  572. },
  573. "conflict": {
  574. "ext-psr": "<1.1|>=2",
  575. "symfony/config": "<6.4",
  576. "symfony/finder": "<6.4",
  577. "symfony/yaml": "<6.4"
  578. },
  579. "provide": {
  580. "psr/container-implementation": "1.1|2.0",
  581. "symfony/service-implementation": "1.1|2.0|3.0"
  582. },
  583. "require-dev": {
  584. "symfony/config": "^6.4|^7.0",
  585. "symfony/expression-language": "^6.4|^7.0",
  586. "symfony/yaml": "^6.4|^7.0"
  587. },
  588. "type": "library",
  589. "autoload": {
  590. "psr-4": {
  591. "Symfony\\Component\\DependencyInjection\\": ""
  592. },
  593. "exclude-from-classmap": [
  594. "/Tests/"
  595. ]
  596. },
  597. "notification-url": "https://packagist.org/downloads/",
  598. "license": [
  599. "MIT"
  600. ],
  601. "authors": [
  602. {
  603. "name": "Fabien Potencier",
  604. "email": "fabien@symfony.com"
  605. },
  606. {
  607. "name": "Symfony Community",
  608. "homepage": "https://symfony.com/contributors"
  609. }
  610. ],
  611. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  612. "homepage": "https://symfony.com",
  613. "support": {
  614. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.0"
  615. },
  616. "funding": [
  617. {
  618. "url": "https://symfony.com/sponsor",
  619. "type": "custom"
  620. },
  621. {
  622. "url": "https://github.com/fabpot",
  623. "type": "github"
  624. },
  625. {
  626. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  627. "type": "tidelift"
  628. }
  629. ],
  630. "time": "2024-05-21T07:25:36+00:00"
  631. },
  632. {
  633. "name": "symfony/deprecation-contracts",
  634. "version": "v3.5.0",
  635. "source": {
  636. "type": "git",
  637. "url": "https://github.com/symfony/deprecation-contracts.git",
  638. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  639. },
  640. "dist": {
  641. "type": "zip",
  642. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  643. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  644. "shasum": ""
  645. },
  646. "require": {
  647. "php": ">=8.1"
  648. },
  649. "type": "library",
  650. "extra": {
  651. "branch-alias": {
  652. "dev-main": "3.5-dev"
  653. },
  654. "thanks": {
  655. "name": "symfony/contracts",
  656. "url": "https://github.com/symfony/contracts"
  657. }
  658. },
  659. "autoload": {
  660. "files": [
  661. "function.php"
  662. ]
  663. },
  664. "notification-url": "https://packagist.org/downloads/",
  665. "license": [
  666. "MIT"
  667. ],
  668. "authors": [
  669. {
  670. "name": "Nicolas Grekas",
  671. "email": "p@tchwork.com"
  672. },
  673. {
  674. "name": "Symfony Community",
  675. "homepage": "https://symfony.com/contributors"
  676. }
  677. ],
  678. "description": "A generic function and convention to trigger deprecation notices",
  679. "homepage": "https://symfony.com",
  680. "support": {
  681. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  682. },
  683. "funding": [
  684. {
  685. "url": "https://symfony.com/sponsor",
  686. "type": "custom"
  687. },
  688. {
  689. "url": "https://github.com/fabpot",
  690. "type": "github"
  691. },
  692. {
  693. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  694. "type": "tidelift"
  695. }
  696. ],
  697. "time": "2024-04-18T09:32:20+00:00"
  698. },
  699. {
  700. "name": "symfony/dotenv",
  701. "version": "v7.1.0",
  702. "source": {
  703. "type": "git",
  704. "url": "https://github.com/symfony/dotenv.git",
  705. "reference": "83026885fde02508235fc9dd175f227290542c99"
  706. },
  707. "dist": {
  708. "type": "zip",
  709. "url": "https://api.github.com/repos/symfony/dotenv/zipball/83026885fde02508235fc9dd175f227290542c99",
  710. "reference": "83026885fde02508235fc9dd175f227290542c99",
  711. "shasum": ""
  712. },
  713. "require": {
  714. "php": ">=8.2"
  715. },
  716. "conflict": {
  717. "symfony/console": "<6.4",
  718. "symfony/process": "<6.4"
  719. },
  720. "require-dev": {
  721. "symfony/console": "^6.4|^7.0",
  722. "symfony/process": "^6.4|^7.0"
  723. },
  724. "type": "library",
  725. "autoload": {
  726. "psr-4": {
  727. "Symfony\\Component\\Dotenv\\": ""
  728. },
  729. "exclude-from-classmap": [
  730. "/Tests/"
  731. ]
  732. },
  733. "notification-url": "https://packagist.org/downloads/",
  734. "license": [
  735. "MIT"
  736. ],
  737. "authors": [
  738. {
  739. "name": "Fabien Potencier",
  740. "email": "fabien@symfony.com"
  741. },
  742. {
  743. "name": "Symfony Community",
  744. "homepage": "https://symfony.com/contributors"
  745. }
  746. ],
  747. "description": "Registers environment variables from a .env file",
  748. "homepage": "https://symfony.com",
  749. "keywords": [
  750. "dotenv",
  751. "env",
  752. "environment"
  753. ],
  754. "support": {
  755. "source": "https://github.com/symfony/dotenv/tree/v7.1.0"
  756. },
  757. "funding": [
  758. {
  759. "url": "https://symfony.com/sponsor",
  760. "type": "custom"
  761. },
  762. {
  763. "url": "https://github.com/fabpot",
  764. "type": "github"
  765. },
  766. {
  767. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  768. "type": "tidelift"
  769. }
  770. ],
  771. "time": "2024-05-02T08:41:59+00:00"
  772. },
  773. {
  774. "name": "symfony/error-handler",
  775. "version": "v7.1.0",
  776. "source": {
  777. "type": "git",
  778. "url": "https://github.com/symfony/error-handler.git",
  779. "reference": "477d911900bf32fc43a675f78d4cbaedbb78378f"
  780. },
  781. "dist": {
  782. "type": "zip",
  783. "url": "https://api.github.com/repos/symfony/error-handler/zipball/477d911900bf32fc43a675f78d4cbaedbb78378f",
  784. "reference": "477d911900bf32fc43a675f78d4cbaedbb78378f",
  785. "shasum": ""
  786. },
  787. "require": {
  788. "php": ">=8.2",
  789. "psr/log": "^1|^2|^3",
  790. "symfony/var-dumper": "^6.4|^7.0"
  791. },
  792. "conflict": {
  793. "symfony/deprecation-contracts": "<2.5",
  794. "symfony/http-kernel": "<6.4"
  795. },
  796. "require-dev": {
  797. "symfony/deprecation-contracts": "^2.5|^3",
  798. "symfony/http-kernel": "^6.4|^7.0",
  799. "symfony/serializer": "^6.4|^7.0"
  800. },
  801. "bin": [
  802. "Resources/bin/patch-type-declarations"
  803. ],
  804. "type": "library",
  805. "autoload": {
  806. "psr-4": {
  807. "Symfony\\Component\\ErrorHandler\\": ""
  808. },
  809. "exclude-from-classmap": [
  810. "/Tests/"
  811. ]
  812. },
  813. "notification-url": "https://packagist.org/downloads/",
  814. "license": [
  815. "MIT"
  816. ],
  817. "authors": [
  818. {
  819. "name": "Fabien Potencier",
  820. "email": "fabien@symfony.com"
  821. },
  822. {
  823. "name": "Symfony Community",
  824. "homepage": "https://symfony.com/contributors"
  825. }
  826. ],
  827. "description": "Provides tools to manage errors and ease debugging PHP code",
  828. "homepage": "https://symfony.com",
  829. "support": {
  830. "source": "https://github.com/symfony/error-handler/tree/v7.1.0"
  831. },
  832. "funding": [
  833. {
  834. "url": "https://symfony.com/sponsor",
  835. "type": "custom"
  836. },
  837. {
  838. "url": "https://github.com/fabpot",
  839. "type": "github"
  840. },
  841. {
  842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  843. "type": "tidelift"
  844. }
  845. ],
  846. "time": "2024-05-17T10:55:18+00:00"
  847. },
  848. {
  849. "name": "symfony/event-dispatcher",
  850. "version": "v7.1.0",
  851. "source": {
  852. "type": "git",
  853. "url": "https://github.com/symfony/event-dispatcher.git",
  854. "reference": "522d2772d6c7bab843b0c52466dc7844622bacc2"
  855. },
  856. "dist": {
  857. "type": "zip",
  858. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/522d2772d6c7bab843b0c52466dc7844622bacc2",
  859. "reference": "522d2772d6c7bab843b0c52466dc7844622bacc2",
  860. "shasum": ""
  861. },
  862. "require": {
  863. "php": ">=8.2",
  864. "symfony/event-dispatcher-contracts": "^2.5|^3"
  865. },
  866. "conflict": {
  867. "symfony/dependency-injection": "<6.4",
  868. "symfony/service-contracts": "<2.5"
  869. },
  870. "provide": {
  871. "psr/event-dispatcher-implementation": "1.0",
  872. "symfony/event-dispatcher-implementation": "2.0|3.0"
  873. },
  874. "require-dev": {
  875. "psr/log": "^1|^2|^3",
  876. "symfony/config": "^6.4|^7.0",
  877. "symfony/dependency-injection": "^6.4|^7.0",
  878. "symfony/error-handler": "^6.4|^7.0",
  879. "symfony/expression-language": "^6.4|^7.0",
  880. "symfony/http-foundation": "^6.4|^7.0",
  881. "symfony/service-contracts": "^2.5|^3",
  882. "symfony/stopwatch": "^6.4|^7.0"
  883. },
  884. "type": "library",
  885. "autoload": {
  886. "psr-4": {
  887. "Symfony\\Component\\EventDispatcher\\": ""
  888. },
  889. "exclude-from-classmap": [
  890. "/Tests/"
  891. ]
  892. },
  893. "notification-url": "https://packagist.org/downloads/",
  894. "license": [
  895. "MIT"
  896. ],
  897. "authors": [
  898. {
  899. "name": "Fabien Potencier",
  900. "email": "fabien@symfony.com"
  901. },
  902. {
  903. "name": "Symfony Community",
  904. "homepage": "https://symfony.com/contributors"
  905. }
  906. ],
  907. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  908. "homepage": "https://symfony.com",
  909. "support": {
  910. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.0"
  911. },
  912. "funding": [
  913. {
  914. "url": "https://symfony.com/sponsor",
  915. "type": "custom"
  916. },
  917. {
  918. "url": "https://github.com/fabpot",
  919. "type": "github"
  920. },
  921. {
  922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  923. "type": "tidelift"
  924. }
  925. ],
  926. "time": "2024-04-18T09:32:20+00:00"
  927. },
  928. {
  929. "name": "symfony/event-dispatcher-contracts",
  930. "version": "v3.5.0",
  931. "source": {
  932. "type": "git",
  933. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  934. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  935. },
  936. "dist": {
  937. "type": "zip",
  938. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  939. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  940. "shasum": ""
  941. },
  942. "require": {
  943. "php": ">=8.1",
  944. "psr/event-dispatcher": "^1"
  945. },
  946. "type": "library",
  947. "extra": {
  948. "branch-alias": {
  949. "dev-main": "3.5-dev"
  950. },
  951. "thanks": {
  952. "name": "symfony/contracts",
  953. "url": "https://github.com/symfony/contracts"
  954. }
  955. },
  956. "autoload": {
  957. "psr-4": {
  958. "Symfony\\Contracts\\EventDispatcher\\": ""
  959. }
  960. },
  961. "notification-url": "https://packagist.org/downloads/",
  962. "license": [
  963. "MIT"
  964. ],
  965. "authors": [
  966. {
  967. "name": "Nicolas Grekas",
  968. "email": "p@tchwork.com"
  969. },
  970. {
  971. "name": "Symfony Community",
  972. "homepage": "https://symfony.com/contributors"
  973. }
  974. ],
  975. "description": "Generic abstractions related to dispatching event",
  976. "homepage": "https://symfony.com",
  977. "keywords": [
  978. "abstractions",
  979. "contracts",
  980. "decoupling",
  981. "interfaces",
  982. "interoperability",
  983. "standards"
  984. ],
  985. "support": {
  986. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  987. },
  988. "funding": [
  989. {
  990. "url": "https://symfony.com/sponsor",
  991. "type": "custom"
  992. },
  993. {
  994. "url": "https://github.com/fabpot",
  995. "type": "github"
  996. },
  997. {
  998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  999. "type": "tidelift"
  1000. }
  1001. ],
  1002. "time": "2024-04-18T09:32:20+00:00"
  1003. },
  1004. {
  1005. "name": "symfony/filesystem",
  1006. "version": "v7.1.0",
  1007. "source": {
  1008. "type": "git",
  1009. "url": "https://github.com/symfony/filesystem.git",
  1010. "reference": "8ecdde25881598f86cdd7cfe8b25302b66a402e9"
  1011. },
  1012. "dist": {
  1013. "type": "zip",
  1014. "url": "https://api.github.com/repos/symfony/filesystem/zipball/8ecdde25881598f86cdd7cfe8b25302b66a402e9",
  1015. "reference": "8ecdde25881598f86cdd7cfe8b25302b66a402e9",
  1016. "shasum": ""
  1017. },
  1018. "require": {
  1019. "php": ">=8.2",
  1020. "symfony/polyfill-ctype": "~1.8",
  1021. "symfony/polyfill-mbstring": "~1.8"
  1022. },
  1023. "require-dev": {
  1024. "symfony/process": "^6.4|^7.0"
  1025. },
  1026. "type": "library",
  1027. "autoload": {
  1028. "psr-4": {
  1029. "Symfony\\Component\\Filesystem\\": ""
  1030. },
  1031. "exclude-from-classmap": [
  1032. "/Tests/"
  1033. ]
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Fabien Potencier",
  1042. "email": "fabien@symfony.com"
  1043. },
  1044. {
  1045. "name": "Symfony Community",
  1046. "homepage": "https://symfony.com/contributors"
  1047. }
  1048. ],
  1049. "description": "Provides basic utilities for the filesystem",
  1050. "homepage": "https://symfony.com",
  1051. "support": {
  1052. "source": "https://github.com/symfony/filesystem/tree/v7.1.0"
  1053. },
  1054. "funding": [
  1055. {
  1056. "url": "https://symfony.com/sponsor",
  1057. "type": "custom"
  1058. },
  1059. {
  1060. "url": "https://github.com/fabpot",
  1061. "type": "github"
  1062. },
  1063. {
  1064. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1065. "type": "tidelift"
  1066. }
  1067. ],
  1068. "time": "2024-05-17T10:55:18+00:00"
  1069. },
  1070. {
  1071. "name": "symfony/finder",
  1072. "version": "v7.1.0",
  1073. "source": {
  1074. "type": "git",
  1075. "url": "https://github.com/symfony/finder.git",
  1076. "reference": "fb6c2d65c3dbf7ad83201a4168d4510c8dddaac7"
  1077. },
  1078. "dist": {
  1079. "type": "zip",
  1080. "url": "https://api.github.com/repos/symfony/finder/zipball/fb6c2d65c3dbf7ad83201a4168d4510c8dddaac7",
  1081. "reference": "fb6c2d65c3dbf7ad83201a4168d4510c8dddaac7",
  1082. "shasum": ""
  1083. },
  1084. "require": {
  1085. "php": ">=8.2"
  1086. },
  1087. "require-dev": {
  1088. "symfony/filesystem": "^6.4|^7.0"
  1089. },
  1090. "type": "library",
  1091. "autoload": {
  1092. "psr-4": {
  1093. "Symfony\\Component\\Finder\\": ""
  1094. },
  1095. "exclude-from-classmap": [
  1096. "/Tests/"
  1097. ]
  1098. },
  1099. "notification-url": "https://packagist.org/downloads/",
  1100. "license": [
  1101. "MIT"
  1102. ],
  1103. "authors": [
  1104. {
  1105. "name": "Fabien Potencier",
  1106. "email": "fabien@symfony.com"
  1107. },
  1108. {
  1109. "name": "Symfony Community",
  1110. "homepage": "https://symfony.com/contributors"
  1111. }
  1112. ],
  1113. "description": "Finds files and directories via an intuitive fluent interface",
  1114. "homepage": "https://symfony.com",
  1115. "support": {
  1116. "source": "https://github.com/symfony/finder/tree/v7.1.0"
  1117. },
  1118. "funding": [
  1119. {
  1120. "url": "https://symfony.com/sponsor",
  1121. "type": "custom"
  1122. },
  1123. {
  1124. "url": "https://github.com/fabpot",
  1125. "type": "github"
  1126. },
  1127. {
  1128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1129. "type": "tidelift"
  1130. }
  1131. ],
  1132. "time": "2024-04-28T18:29:00+00:00"
  1133. },
  1134. {
  1135. "name": "symfony/flex",
  1136. "version": "v2.4.5",
  1137. "source": {
  1138. "type": "git",
  1139. "url": "https://github.com/symfony/flex.git",
  1140. "reference": "b0a405f40614c9f584b489d54f91091817b0e26e"
  1141. },
  1142. "dist": {
  1143. "type": "zip",
  1144. "url": "https://api.github.com/repos/symfony/flex/zipball/b0a405f40614c9f584b489d54f91091817b0e26e",
  1145. "reference": "b0a405f40614c9f584b489d54f91091817b0e26e",
  1146. "shasum": ""
  1147. },
  1148. "require": {
  1149. "composer-plugin-api": "^2.1",
  1150. "php": ">=8.0"
  1151. },
  1152. "require-dev": {
  1153. "composer/composer": "^2.1",
  1154. "symfony/dotenv": "^5.4|^6.0",
  1155. "symfony/filesystem": "^5.4|^6.0",
  1156. "symfony/phpunit-bridge": "^5.4|^6.0",
  1157. "symfony/process": "^5.4|^6.0"
  1158. },
  1159. "type": "composer-plugin",
  1160. "extra": {
  1161. "class": "Symfony\\Flex\\Flex"
  1162. },
  1163. "autoload": {
  1164. "psr-4": {
  1165. "Symfony\\Flex\\": "src"
  1166. }
  1167. },
  1168. "notification-url": "https://packagist.org/downloads/",
  1169. "license": [
  1170. "MIT"
  1171. ],
  1172. "authors": [
  1173. {
  1174. "name": "Fabien Potencier",
  1175. "email": "fabien.potencier@gmail.com"
  1176. }
  1177. ],
  1178. "description": "Composer plugin for Symfony",
  1179. "support": {
  1180. "issues": "https://github.com/symfony/flex/issues",
  1181. "source": "https://github.com/symfony/flex/tree/v2.4.5"
  1182. },
  1183. "funding": [
  1184. {
  1185. "url": "https://symfony.com/sponsor",
  1186. "type": "custom"
  1187. },
  1188. {
  1189. "url": "https://github.com/fabpot",
  1190. "type": "github"
  1191. },
  1192. {
  1193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1194. "type": "tidelift"
  1195. }
  1196. ],
  1197. "time": "2024-03-02T08:16:47+00:00"
  1198. },
  1199. {
  1200. "name": "symfony/framework-bundle",
  1201. "version": "v7.1.0",
  1202. "source": {
  1203. "type": "git",
  1204. "url": "https://github.com/symfony/framework-bundle.git",
  1205. "reference": "e8cba2142d7a62bae0b96c1f6cb20e4ad39dc864"
  1206. },
  1207. "dist": {
  1208. "type": "zip",
  1209. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/e8cba2142d7a62bae0b96c1f6cb20e4ad39dc864",
  1210. "reference": "e8cba2142d7a62bae0b96c1f6cb20e4ad39dc864",
  1211. "shasum": ""
  1212. },
  1213. "require": {
  1214. "composer-runtime-api": ">=2.1",
  1215. "ext-xml": "*",
  1216. "php": ">=8.2",
  1217. "symfony/cache": "^6.4|^7.0",
  1218. "symfony/config": "^6.4|^7.0",
  1219. "symfony/dependency-injection": "^7.1",
  1220. "symfony/deprecation-contracts": "^2.5|^3",
  1221. "symfony/error-handler": "^6.4|^7.0",
  1222. "symfony/event-dispatcher": "^6.4|^7.0",
  1223. "symfony/filesystem": "^7.1",
  1224. "symfony/finder": "^6.4|^7.0",
  1225. "symfony/http-foundation": "^6.4|^7.0",
  1226. "symfony/http-kernel": "^6.4|^7.0",
  1227. "symfony/polyfill-mbstring": "~1.0",
  1228. "symfony/routing": "^6.4|^7.0"
  1229. },
  1230. "conflict": {
  1231. "doctrine/persistence": "<1.3",
  1232. "phpdocumentor/reflection-docblock": "<3.2.2",
  1233. "phpdocumentor/type-resolver": "<1.4.0",
  1234. "symfony/asset": "<6.4",
  1235. "symfony/asset-mapper": "<6.4",
  1236. "symfony/clock": "<6.4",
  1237. "symfony/console": "<6.4",
  1238. "symfony/dom-crawler": "<6.4",
  1239. "symfony/dotenv": "<6.4",
  1240. "symfony/form": "<6.4",
  1241. "symfony/http-client": "<6.4",
  1242. "symfony/lock": "<6.4",
  1243. "symfony/mailer": "<6.4",
  1244. "symfony/messenger": "<6.4",
  1245. "symfony/mime": "<6.4",
  1246. "symfony/property-access": "<6.4",
  1247. "symfony/property-info": "<6.4",
  1248. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  1249. "symfony/security-core": "<6.4",
  1250. "symfony/security-csrf": "<6.4",
  1251. "symfony/serializer": "<6.4",
  1252. "symfony/stopwatch": "<6.4",
  1253. "symfony/translation": "<6.4",
  1254. "symfony/twig-bridge": "<6.4",
  1255. "symfony/twig-bundle": "<6.4",
  1256. "symfony/validator": "<6.4",
  1257. "symfony/web-profiler-bundle": "<6.4",
  1258. "symfony/workflow": "<6.4"
  1259. },
  1260. "require-dev": {
  1261. "doctrine/persistence": "^1.3|^2|^3",
  1262. "dragonmantank/cron-expression": "^3.1",
  1263. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  1264. "seld/jsonlint": "^1.10",
  1265. "symfony/asset": "^6.4|^7.0",
  1266. "symfony/asset-mapper": "^6.4|^7.0",
  1267. "symfony/browser-kit": "^6.4|^7.0",
  1268. "symfony/clock": "^6.4|^7.0",
  1269. "symfony/console": "^6.4|^7.0",
  1270. "symfony/css-selector": "^6.4|^7.0",
  1271. "symfony/dom-crawler": "^6.4|^7.0",
  1272. "symfony/dotenv": "^6.4|^7.0",
  1273. "symfony/expression-language": "^6.4|^7.0",
  1274. "symfony/form": "^6.4|^7.0",
  1275. "symfony/html-sanitizer": "^6.4|^7.0",
  1276. "symfony/http-client": "^6.4|^7.0",
  1277. "symfony/lock": "^6.4|^7.0",
  1278. "symfony/mailer": "^6.4|^7.0",
  1279. "symfony/messenger": "^6.4|^7.0",
  1280. "symfony/mime": "^6.4|^7.0",
  1281. "symfony/notifier": "^6.4|^7.0",
  1282. "symfony/polyfill-intl-icu": "~1.0",
  1283. "symfony/process": "^6.4|^7.0",
  1284. "symfony/property-info": "^6.4|^7.0",
  1285. "symfony/rate-limiter": "^6.4|^7.0",
  1286. "symfony/scheduler": "^6.4.4|^7.0.4",
  1287. "symfony/security-bundle": "^6.4|^7.0",
  1288. "symfony/semaphore": "^6.4|^7.0",
  1289. "symfony/serializer": "^6.4|^7.0",
  1290. "symfony/stopwatch": "^6.4|^7.0",
  1291. "symfony/string": "^6.4|^7.0",
  1292. "symfony/translation": "^6.4|^7.0",
  1293. "symfony/twig-bundle": "^6.4|^7.0",
  1294. "symfony/type-info": "^7.1",
  1295. "symfony/uid": "^6.4|^7.0",
  1296. "symfony/validator": "^6.4|^7.0",
  1297. "symfony/web-link": "^6.4|^7.0",
  1298. "symfony/workflow": "^6.4|^7.0",
  1299. "symfony/yaml": "^6.4|^7.0",
  1300. "twig/twig": "^3.0.4"
  1301. },
  1302. "type": "symfony-bundle",
  1303. "autoload": {
  1304. "psr-4": {
  1305. "Symfony\\Bundle\\FrameworkBundle\\": ""
  1306. },
  1307. "exclude-from-classmap": [
  1308. "/Tests/"
  1309. ]
  1310. },
  1311. "notification-url": "https://packagist.org/downloads/",
  1312. "license": [
  1313. "MIT"
  1314. ],
  1315. "authors": [
  1316. {
  1317. "name": "Fabien Potencier",
  1318. "email": "fabien@symfony.com"
  1319. },
  1320. {
  1321. "name": "Symfony Community",
  1322. "homepage": "https://symfony.com/contributors"
  1323. }
  1324. ],
  1325. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  1326. "homepage": "https://symfony.com",
  1327. "support": {
  1328. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.0"
  1329. },
  1330. "funding": [
  1331. {
  1332. "url": "https://symfony.com/sponsor",
  1333. "type": "custom"
  1334. },
  1335. {
  1336. "url": "https://github.com/fabpot",
  1337. "type": "github"
  1338. },
  1339. {
  1340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1341. "type": "tidelift"
  1342. }
  1343. ],
  1344. "time": "2024-05-02T09:18:50+00:00"
  1345. },
  1346. {
  1347. "name": "symfony/http-foundation",
  1348. "version": "v7.1.0",
  1349. "source": {
  1350. "type": "git",
  1351. "url": "https://github.com/symfony/http-foundation.git",
  1352. "reference": "f9c54a6b1697d0b3b3d541e89e7843cdb3c9bfb7"
  1353. },
  1354. "dist": {
  1355. "type": "zip",
  1356. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f9c54a6b1697d0b3b3d541e89e7843cdb3c9bfb7",
  1357. "reference": "f9c54a6b1697d0b3b3d541e89e7843cdb3c9bfb7",
  1358. "shasum": ""
  1359. },
  1360. "require": {
  1361. "php": ">=8.2",
  1362. "symfony/polyfill-mbstring": "~1.1",
  1363. "symfony/polyfill-php83": "^1.27"
  1364. },
  1365. "conflict": {
  1366. "doctrine/dbal": "<3.6",
  1367. "symfony/cache": "<6.4"
  1368. },
  1369. "require-dev": {
  1370. "doctrine/dbal": "^3.6|^4",
  1371. "predis/predis": "^1.1|^2.0",
  1372. "symfony/cache": "^6.4|^7.0",
  1373. "symfony/dependency-injection": "^6.4|^7.0",
  1374. "symfony/expression-language": "^6.4|^7.0",
  1375. "symfony/http-kernel": "^6.4|^7.0",
  1376. "symfony/mime": "^6.4|^7.0",
  1377. "symfony/rate-limiter": "^6.4|^7.0"
  1378. },
  1379. "type": "library",
  1380. "autoload": {
  1381. "psr-4": {
  1382. "Symfony\\Component\\HttpFoundation\\": ""
  1383. },
  1384. "exclude-from-classmap": [
  1385. "/Tests/"
  1386. ]
  1387. },
  1388. "notification-url": "https://packagist.org/downloads/",
  1389. "license": [
  1390. "MIT"
  1391. ],
  1392. "authors": [
  1393. {
  1394. "name": "Fabien Potencier",
  1395. "email": "fabien@symfony.com"
  1396. },
  1397. {
  1398. "name": "Symfony Community",
  1399. "homepage": "https://symfony.com/contributors"
  1400. }
  1401. ],
  1402. "description": "Defines an object-oriented layer for the HTTP specification",
  1403. "homepage": "https://symfony.com",
  1404. "support": {
  1405. "source": "https://github.com/symfony/http-foundation/tree/v7.1.0"
  1406. },
  1407. "funding": [
  1408. {
  1409. "url": "https://symfony.com/sponsor",
  1410. "type": "custom"
  1411. },
  1412. {
  1413. "url": "https://github.com/fabpot",
  1414. "type": "github"
  1415. },
  1416. {
  1417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1418. "type": "tidelift"
  1419. }
  1420. ],
  1421. "time": "2024-05-20T16:41:11+00:00"
  1422. },
  1423. {
  1424. "name": "symfony/http-kernel",
  1425. "version": "v7.1.0",
  1426. "source": {
  1427. "type": "git",
  1428. "url": "https://github.com/symfony/http-kernel.git",
  1429. "reference": "7eb093ee3911354aa13704d757127535dd8d371f"
  1430. },
  1431. "dist": {
  1432. "type": "zip",
  1433. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/7eb093ee3911354aa13704d757127535dd8d371f",
  1434. "reference": "7eb093ee3911354aa13704d757127535dd8d371f",
  1435. "shasum": ""
  1436. },
  1437. "require": {
  1438. "php": ">=8.2",
  1439. "psr/log": "^1|^2|^3",
  1440. "symfony/deprecation-contracts": "^2.5|^3",
  1441. "symfony/error-handler": "^6.4|^7.0",
  1442. "symfony/event-dispatcher": "^6.4|^7.0",
  1443. "symfony/http-foundation": "^6.4|^7.0",
  1444. "symfony/polyfill-ctype": "^1.8"
  1445. },
  1446. "conflict": {
  1447. "symfony/browser-kit": "<6.4",
  1448. "symfony/cache": "<6.4",
  1449. "symfony/config": "<6.4",
  1450. "symfony/console": "<6.4",
  1451. "symfony/dependency-injection": "<6.4",
  1452. "symfony/doctrine-bridge": "<6.4",
  1453. "symfony/form": "<6.4",
  1454. "symfony/http-client": "<6.4",
  1455. "symfony/http-client-contracts": "<2.5",
  1456. "symfony/mailer": "<6.4",
  1457. "symfony/messenger": "<6.4",
  1458. "symfony/translation": "<6.4",
  1459. "symfony/translation-contracts": "<2.5",
  1460. "symfony/twig-bridge": "<6.4",
  1461. "symfony/validator": "<6.4",
  1462. "symfony/var-dumper": "<6.4",
  1463. "twig/twig": "<3.0.4"
  1464. },
  1465. "provide": {
  1466. "psr/log-implementation": "1.0|2.0|3.0"
  1467. },
  1468. "require-dev": {
  1469. "psr/cache": "^1.0|^2.0|^3.0",
  1470. "symfony/browser-kit": "^6.4|^7.0",
  1471. "symfony/clock": "^6.4|^7.0",
  1472. "symfony/config": "^6.4|^7.0",
  1473. "symfony/console": "^6.4|^7.0",
  1474. "symfony/css-selector": "^6.4|^7.0",
  1475. "symfony/dependency-injection": "^6.4|^7.0",
  1476. "symfony/dom-crawler": "^6.4|^7.0",
  1477. "symfony/expression-language": "^6.4|^7.0",
  1478. "symfony/finder": "^6.4|^7.0",
  1479. "symfony/http-client-contracts": "^2.5|^3",
  1480. "symfony/process": "^6.4|^7.0",
  1481. "symfony/property-access": "^7.1",
  1482. "symfony/routing": "^6.4|^7.0",
  1483. "symfony/serializer": "^7.1",
  1484. "symfony/stopwatch": "^6.4|^7.0",
  1485. "symfony/translation": "^6.4|^7.0",
  1486. "symfony/translation-contracts": "^2.5|^3",
  1487. "symfony/uid": "^6.4|^7.0",
  1488. "symfony/validator": "^6.4|^7.0",
  1489. "symfony/var-dumper": "^6.4|^7.0",
  1490. "symfony/var-exporter": "^6.4|^7.0",
  1491. "twig/twig": "^3.0.4"
  1492. },
  1493. "type": "library",
  1494. "autoload": {
  1495. "psr-4": {
  1496. "Symfony\\Component\\HttpKernel\\": ""
  1497. },
  1498. "exclude-from-classmap": [
  1499. "/Tests/"
  1500. ]
  1501. },
  1502. "notification-url": "https://packagist.org/downloads/",
  1503. "license": [
  1504. "MIT"
  1505. ],
  1506. "authors": [
  1507. {
  1508. "name": "Fabien Potencier",
  1509. "email": "fabien@symfony.com"
  1510. },
  1511. {
  1512. "name": "Symfony Community",
  1513. "homepage": "https://symfony.com/contributors"
  1514. }
  1515. ],
  1516. "description": "Provides a structured process for converting a Request into a Response",
  1517. "homepage": "https://symfony.com",
  1518. "support": {
  1519. "source": "https://github.com/symfony/http-kernel/tree/v7.1.0"
  1520. },
  1521. "funding": [
  1522. {
  1523. "url": "https://symfony.com/sponsor",
  1524. "type": "custom"
  1525. },
  1526. {
  1527. "url": "https://github.com/fabpot",
  1528. "type": "github"
  1529. },
  1530. {
  1531. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1532. "type": "tidelift"
  1533. }
  1534. ],
  1535. "time": "2024-05-31T07:46:30+00:00"
  1536. },
  1537. {
  1538. "name": "symfony/polyfill-intl-grapheme",
  1539. "version": "v1.29.0",
  1540. "source": {
  1541. "type": "git",
  1542. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  1543. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  1544. },
  1545. "dist": {
  1546. "type": "zip",
  1547. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  1548. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  1549. "shasum": ""
  1550. },
  1551. "require": {
  1552. "php": ">=7.1"
  1553. },
  1554. "suggest": {
  1555. "ext-intl": "For best performance"
  1556. },
  1557. "type": "library",
  1558. "extra": {
  1559. "thanks": {
  1560. "name": "symfony/polyfill",
  1561. "url": "https://github.com/symfony/polyfill"
  1562. }
  1563. },
  1564. "autoload": {
  1565. "files": [
  1566. "bootstrap.php"
  1567. ],
  1568. "psr-4": {
  1569. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  1570. }
  1571. },
  1572. "notification-url": "https://packagist.org/downloads/",
  1573. "license": [
  1574. "MIT"
  1575. ],
  1576. "authors": [
  1577. {
  1578. "name": "Nicolas Grekas",
  1579. "email": "p@tchwork.com"
  1580. },
  1581. {
  1582. "name": "Symfony Community",
  1583. "homepage": "https://symfony.com/contributors"
  1584. }
  1585. ],
  1586. "description": "Symfony polyfill for intl's grapheme_* functions",
  1587. "homepage": "https://symfony.com",
  1588. "keywords": [
  1589. "compatibility",
  1590. "grapheme",
  1591. "intl",
  1592. "polyfill",
  1593. "portable",
  1594. "shim"
  1595. ],
  1596. "support": {
  1597. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  1598. },
  1599. "funding": [
  1600. {
  1601. "url": "https://symfony.com/sponsor",
  1602. "type": "custom"
  1603. },
  1604. {
  1605. "url": "https://github.com/fabpot",
  1606. "type": "github"
  1607. },
  1608. {
  1609. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1610. "type": "tidelift"
  1611. }
  1612. ],
  1613. "time": "2024-01-29T20:11:03+00:00"
  1614. },
  1615. {
  1616. "name": "symfony/polyfill-intl-normalizer",
  1617. "version": "v1.29.0",
  1618. "source": {
  1619. "type": "git",
  1620. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1621. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  1622. },
  1623. "dist": {
  1624. "type": "zip",
  1625. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  1626. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  1627. "shasum": ""
  1628. },
  1629. "require": {
  1630. "php": ">=7.1"
  1631. },
  1632. "suggest": {
  1633. "ext-intl": "For best performance"
  1634. },
  1635. "type": "library",
  1636. "extra": {
  1637. "thanks": {
  1638. "name": "symfony/polyfill",
  1639. "url": "https://github.com/symfony/polyfill"
  1640. }
  1641. },
  1642. "autoload": {
  1643. "files": [
  1644. "bootstrap.php"
  1645. ],
  1646. "psr-4": {
  1647. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1648. },
  1649. "classmap": [
  1650. "Resources/stubs"
  1651. ]
  1652. },
  1653. "notification-url": "https://packagist.org/downloads/",
  1654. "license": [
  1655. "MIT"
  1656. ],
  1657. "authors": [
  1658. {
  1659. "name": "Nicolas Grekas",
  1660. "email": "p@tchwork.com"
  1661. },
  1662. {
  1663. "name": "Symfony Community",
  1664. "homepage": "https://symfony.com/contributors"
  1665. }
  1666. ],
  1667. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1668. "homepage": "https://symfony.com",
  1669. "keywords": [
  1670. "compatibility",
  1671. "intl",
  1672. "normalizer",
  1673. "polyfill",
  1674. "portable",
  1675. "shim"
  1676. ],
  1677. "support": {
  1678. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  1679. },
  1680. "funding": [
  1681. {
  1682. "url": "https://symfony.com/sponsor",
  1683. "type": "custom"
  1684. },
  1685. {
  1686. "url": "https://github.com/fabpot",
  1687. "type": "github"
  1688. },
  1689. {
  1690. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1691. "type": "tidelift"
  1692. }
  1693. ],
  1694. "time": "2024-01-29T20:11:03+00:00"
  1695. },
  1696. {
  1697. "name": "symfony/polyfill-mbstring",
  1698. "version": "v1.29.0",
  1699. "source": {
  1700. "type": "git",
  1701. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1702. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  1703. },
  1704. "dist": {
  1705. "type": "zip",
  1706. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  1707. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  1708. "shasum": ""
  1709. },
  1710. "require": {
  1711. "php": ">=7.1"
  1712. },
  1713. "provide": {
  1714. "ext-mbstring": "*"
  1715. },
  1716. "suggest": {
  1717. "ext-mbstring": "For best performance"
  1718. },
  1719. "type": "library",
  1720. "extra": {
  1721. "thanks": {
  1722. "name": "symfony/polyfill",
  1723. "url": "https://github.com/symfony/polyfill"
  1724. }
  1725. },
  1726. "autoload": {
  1727. "files": [
  1728. "bootstrap.php"
  1729. ],
  1730. "psr-4": {
  1731. "Symfony\\Polyfill\\Mbstring\\": ""
  1732. }
  1733. },
  1734. "notification-url": "https://packagist.org/downloads/",
  1735. "license": [
  1736. "MIT"
  1737. ],
  1738. "authors": [
  1739. {
  1740. "name": "Nicolas Grekas",
  1741. "email": "p@tchwork.com"
  1742. },
  1743. {
  1744. "name": "Symfony Community",
  1745. "homepage": "https://symfony.com/contributors"
  1746. }
  1747. ],
  1748. "description": "Symfony polyfill for the Mbstring extension",
  1749. "homepage": "https://symfony.com",
  1750. "keywords": [
  1751. "compatibility",
  1752. "mbstring",
  1753. "polyfill",
  1754. "portable",
  1755. "shim"
  1756. ],
  1757. "support": {
  1758. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  1759. },
  1760. "funding": [
  1761. {
  1762. "url": "https://symfony.com/sponsor",
  1763. "type": "custom"
  1764. },
  1765. {
  1766. "url": "https://github.com/fabpot",
  1767. "type": "github"
  1768. },
  1769. {
  1770. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1771. "type": "tidelift"
  1772. }
  1773. ],
  1774. "time": "2024-01-29T20:11:03+00:00"
  1775. },
  1776. {
  1777. "name": "symfony/polyfill-php83",
  1778. "version": "v1.29.0",
  1779. "source": {
  1780. "type": "git",
  1781. "url": "https://github.com/symfony/polyfill-php83.git",
  1782. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  1783. },
  1784. "dist": {
  1785. "type": "zip",
  1786. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  1787. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  1788. "shasum": ""
  1789. },
  1790. "require": {
  1791. "php": ">=7.1",
  1792. "symfony/polyfill-php80": "^1.14"
  1793. },
  1794. "type": "library",
  1795. "extra": {
  1796. "thanks": {
  1797. "name": "symfony/polyfill",
  1798. "url": "https://github.com/symfony/polyfill"
  1799. }
  1800. },
  1801. "autoload": {
  1802. "files": [
  1803. "bootstrap.php"
  1804. ],
  1805. "psr-4": {
  1806. "Symfony\\Polyfill\\Php83\\": ""
  1807. },
  1808. "classmap": [
  1809. "Resources/stubs"
  1810. ]
  1811. },
  1812. "notification-url": "https://packagist.org/downloads/",
  1813. "license": [
  1814. "MIT"
  1815. ],
  1816. "authors": [
  1817. {
  1818. "name": "Nicolas Grekas",
  1819. "email": "p@tchwork.com"
  1820. },
  1821. {
  1822. "name": "Symfony Community",
  1823. "homepage": "https://symfony.com/contributors"
  1824. }
  1825. ],
  1826. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  1827. "homepage": "https://symfony.com",
  1828. "keywords": [
  1829. "compatibility",
  1830. "polyfill",
  1831. "portable",
  1832. "shim"
  1833. ],
  1834. "support": {
  1835. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  1836. },
  1837. "funding": [
  1838. {
  1839. "url": "https://symfony.com/sponsor",
  1840. "type": "custom"
  1841. },
  1842. {
  1843. "url": "https://github.com/fabpot",
  1844. "type": "github"
  1845. },
  1846. {
  1847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1848. "type": "tidelift"
  1849. }
  1850. ],
  1851. "time": "2024-01-29T20:11:03+00:00"
  1852. },
  1853. {
  1854. "name": "symfony/routing",
  1855. "version": "v7.1.0",
  1856. "source": {
  1857. "type": "git",
  1858. "url": "https://github.com/symfony/routing.git",
  1859. "reference": "0ec2f36fbd769467f98c9c02cea1b76ed117115d"
  1860. },
  1861. "dist": {
  1862. "type": "zip",
  1863. "url": "https://api.github.com/repos/symfony/routing/zipball/0ec2f36fbd769467f98c9c02cea1b76ed117115d",
  1864. "reference": "0ec2f36fbd769467f98c9c02cea1b76ed117115d",
  1865. "shasum": ""
  1866. },
  1867. "require": {
  1868. "php": ">=8.2",
  1869. "symfony/deprecation-contracts": "^2.5|^3"
  1870. },
  1871. "conflict": {
  1872. "symfony/config": "<6.4",
  1873. "symfony/dependency-injection": "<6.4",
  1874. "symfony/yaml": "<6.4"
  1875. },
  1876. "require-dev": {
  1877. "psr/log": "^1|^2|^3",
  1878. "symfony/config": "^6.4|^7.0",
  1879. "symfony/dependency-injection": "^6.4|^7.0",
  1880. "symfony/expression-language": "^6.4|^7.0",
  1881. "symfony/http-foundation": "^6.4|^7.0",
  1882. "symfony/yaml": "^6.4|^7.0"
  1883. },
  1884. "type": "library",
  1885. "autoload": {
  1886. "psr-4": {
  1887. "Symfony\\Component\\Routing\\": ""
  1888. },
  1889. "exclude-from-classmap": [
  1890. "/Tests/"
  1891. ]
  1892. },
  1893. "notification-url": "https://packagist.org/downloads/",
  1894. "license": [
  1895. "MIT"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "Fabien Potencier",
  1900. "email": "fabien@symfony.com"
  1901. },
  1902. {
  1903. "name": "Symfony Community",
  1904. "homepage": "https://symfony.com/contributors"
  1905. }
  1906. ],
  1907. "description": "Maps an HTTP request to a set of configuration variables",
  1908. "homepage": "https://symfony.com",
  1909. "keywords": [
  1910. "router",
  1911. "routing",
  1912. "uri",
  1913. "url"
  1914. ],
  1915. "support": {
  1916. "source": "https://github.com/symfony/routing/tree/v7.1.0"
  1917. },
  1918. "funding": [
  1919. {
  1920. "url": "https://symfony.com/sponsor",
  1921. "type": "custom"
  1922. },
  1923. {
  1924. "url": "https://github.com/fabpot",
  1925. "type": "github"
  1926. },
  1927. {
  1928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1929. "type": "tidelift"
  1930. }
  1931. ],
  1932. "time": "2024-05-28T06:54:05+00:00"
  1933. },
  1934. {
  1935. "name": "symfony/runtime",
  1936. "version": "v7.1.0",
  1937. "source": {
  1938. "type": "git",
  1939. "url": "https://github.com/symfony/runtime.git",
  1940. "reference": "e120730ef206b31bb5521b1a2389c058adbba9c7"
  1941. },
  1942. "dist": {
  1943. "type": "zip",
  1944. "url": "https://api.github.com/repos/symfony/runtime/zipball/e120730ef206b31bb5521b1a2389c058adbba9c7",
  1945. "reference": "e120730ef206b31bb5521b1a2389c058adbba9c7",
  1946. "shasum": ""
  1947. },
  1948. "require": {
  1949. "composer-plugin-api": "^1.0|^2.0",
  1950. "php": ">=8.2"
  1951. },
  1952. "conflict": {
  1953. "symfony/dotenv": "<6.4"
  1954. },
  1955. "require-dev": {
  1956. "composer/composer": "^2.6",
  1957. "symfony/console": "^6.4|^7.0",
  1958. "symfony/dotenv": "^6.4|^7.0",
  1959. "symfony/http-foundation": "^6.4|^7.0",
  1960. "symfony/http-kernel": "^6.4|^7.0"
  1961. },
  1962. "type": "composer-plugin",
  1963. "extra": {
  1964. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  1965. },
  1966. "autoload": {
  1967. "psr-4": {
  1968. "Symfony\\Component\\Runtime\\": "",
  1969. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  1970. },
  1971. "exclude-from-classmap": [
  1972. "/Tests/"
  1973. ]
  1974. },
  1975. "notification-url": "https://packagist.org/downloads/",
  1976. "license": [
  1977. "MIT"
  1978. ],
  1979. "authors": [
  1980. {
  1981. "name": "Nicolas Grekas",
  1982. "email": "p@tchwork.com"
  1983. },
  1984. {
  1985. "name": "Symfony Community",
  1986. "homepage": "https://symfony.com/contributors"
  1987. }
  1988. ],
  1989. "description": "Enables decoupling PHP applications from global state",
  1990. "homepage": "https://symfony.com",
  1991. "keywords": [
  1992. "runtime"
  1993. ],
  1994. "support": {
  1995. "source": "https://github.com/symfony/runtime/tree/v7.1.0"
  1996. },
  1997. "funding": [
  1998. {
  1999. "url": "https://symfony.com/sponsor",
  2000. "type": "custom"
  2001. },
  2002. {
  2003. "url": "https://github.com/fabpot",
  2004. "type": "github"
  2005. },
  2006. {
  2007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2008. "type": "tidelift"
  2009. }
  2010. ],
  2011. "time": "2024-04-18T09:29:19+00:00"
  2012. },
  2013. {
  2014. "name": "symfony/service-contracts",
  2015. "version": "v3.5.0",
  2016. "source": {
  2017. "type": "git",
  2018. "url": "https://github.com/symfony/service-contracts.git",
  2019. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  2020. },
  2021. "dist": {
  2022. "type": "zip",
  2023. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  2024. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  2025. "shasum": ""
  2026. },
  2027. "require": {
  2028. "php": ">=8.1",
  2029. "psr/container": "^1.1|^2.0",
  2030. "symfony/deprecation-contracts": "^2.5|^3"
  2031. },
  2032. "conflict": {
  2033. "ext-psr": "<1.1|>=2"
  2034. },
  2035. "type": "library",
  2036. "extra": {
  2037. "branch-alias": {
  2038. "dev-main": "3.5-dev"
  2039. },
  2040. "thanks": {
  2041. "name": "symfony/contracts",
  2042. "url": "https://github.com/symfony/contracts"
  2043. }
  2044. },
  2045. "autoload": {
  2046. "psr-4": {
  2047. "Symfony\\Contracts\\Service\\": ""
  2048. },
  2049. "exclude-from-classmap": [
  2050. "/Test/"
  2051. ]
  2052. },
  2053. "notification-url": "https://packagist.org/downloads/",
  2054. "license": [
  2055. "MIT"
  2056. ],
  2057. "authors": [
  2058. {
  2059. "name": "Nicolas Grekas",
  2060. "email": "p@tchwork.com"
  2061. },
  2062. {
  2063. "name": "Symfony Community",
  2064. "homepage": "https://symfony.com/contributors"
  2065. }
  2066. ],
  2067. "description": "Generic abstractions related to writing services",
  2068. "homepage": "https://symfony.com",
  2069. "keywords": [
  2070. "abstractions",
  2071. "contracts",
  2072. "decoupling",
  2073. "interfaces",
  2074. "interoperability",
  2075. "standards"
  2076. ],
  2077. "support": {
  2078. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  2079. },
  2080. "funding": [
  2081. {
  2082. "url": "https://symfony.com/sponsor",
  2083. "type": "custom"
  2084. },
  2085. {
  2086. "url": "https://github.com/fabpot",
  2087. "type": "github"
  2088. },
  2089. {
  2090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2091. "type": "tidelift"
  2092. }
  2093. ],
  2094. "time": "2024-04-18T09:32:20+00:00"
  2095. },
  2096. {
  2097. "name": "symfony/string",
  2098. "version": "v7.1.0",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://github.com/symfony/string.git",
  2102. "reference": "6f41b185e742737917e6f2e3eca37767fba5f17a"
  2103. },
  2104. "dist": {
  2105. "type": "zip",
  2106. "url": "https://api.github.com/repos/symfony/string/zipball/6f41b185e742737917e6f2e3eca37767fba5f17a",
  2107. "reference": "6f41b185e742737917e6f2e3eca37767fba5f17a",
  2108. "shasum": ""
  2109. },
  2110. "require": {
  2111. "php": ">=8.2",
  2112. "symfony/polyfill-ctype": "~1.8",
  2113. "symfony/polyfill-intl-grapheme": "~1.0",
  2114. "symfony/polyfill-intl-normalizer": "~1.0",
  2115. "symfony/polyfill-mbstring": "~1.0"
  2116. },
  2117. "conflict": {
  2118. "symfony/translation-contracts": "<2.5"
  2119. },
  2120. "require-dev": {
  2121. "symfony/emoji": "^7.1",
  2122. "symfony/error-handler": "^6.4|^7.0",
  2123. "symfony/http-client": "^6.4|^7.0",
  2124. "symfony/intl": "^6.4|^7.0",
  2125. "symfony/translation-contracts": "^2.5|^3.0",
  2126. "symfony/var-exporter": "^6.4|^7.0"
  2127. },
  2128. "type": "library",
  2129. "autoload": {
  2130. "files": [
  2131. "Resources/functions.php"
  2132. ],
  2133. "psr-4": {
  2134. "Symfony\\Component\\String\\": ""
  2135. },
  2136. "exclude-from-classmap": [
  2137. "/Tests/"
  2138. ]
  2139. },
  2140. "notification-url": "https://packagist.org/downloads/",
  2141. "license": [
  2142. "MIT"
  2143. ],
  2144. "authors": [
  2145. {
  2146. "name": "Nicolas Grekas",
  2147. "email": "p@tchwork.com"
  2148. },
  2149. {
  2150. "name": "Symfony Community",
  2151. "homepage": "https://symfony.com/contributors"
  2152. }
  2153. ],
  2154. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  2155. "homepage": "https://symfony.com",
  2156. "keywords": [
  2157. "grapheme",
  2158. "i18n",
  2159. "string",
  2160. "unicode",
  2161. "utf-8",
  2162. "utf8"
  2163. ],
  2164. "support": {
  2165. "source": "https://github.com/symfony/string/tree/v7.1.0"
  2166. },
  2167. "funding": [
  2168. {
  2169. "url": "https://symfony.com/sponsor",
  2170. "type": "custom"
  2171. },
  2172. {
  2173. "url": "https://github.com/fabpot",
  2174. "type": "github"
  2175. },
  2176. {
  2177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2178. "type": "tidelift"
  2179. }
  2180. ],
  2181. "time": "2024-05-17T10:55:18+00:00"
  2182. },
  2183. {
  2184. "name": "symfony/var-dumper",
  2185. "version": "v7.1.0",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://github.com/symfony/var-dumper.git",
  2189. "reference": "595e4a4bc2118e7f4884315a684678b9403d44a6"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/595e4a4bc2118e7f4884315a684678b9403d44a6",
  2194. "reference": "595e4a4bc2118e7f4884315a684678b9403d44a6",
  2195. "shasum": ""
  2196. },
  2197. "require": {
  2198. "php": ">=8.2",
  2199. "symfony/polyfill-mbstring": "~1.0"
  2200. },
  2201. "conflict": {
  2202. "symfony/console": "<6.4"
  2203. },
  2204. "require-dev": {
  2205. "ext-iconv": "*",
  2206. "symfony/console": "^6.4|^7.0",
  2207. "symfony/http-kernel": "^6.4|^7.0",
  2208. "symfony/process": "^6.4|^7.0",
  2209. "symfony/uid": "^6.4|^7.0",
  2210. "twig/twig": "^3.0.4"
  2211. },
  2212. "bin": [
  2213. "Resources/bin/var-dump-server"
  2214. ],
  2215. "type": "library",
  2216. "autoload": {
  2217. "files": [
  2218. "Resources/functions/dump.php"
  2219. ],
  2220. "psr-4": {
  2221. "Symfony\\Component\\VarDumper\\": ""
  2222. },
  2223. "exclude-from-classmap": [
  2224. "/Tests/"
  2225. ]
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "MIT"
  2230. ],
  2231. "authors": [
  2232. {
  2233. "name": "Nicolas Grekas",
  2234. "email": "p@tchwork.com"
  2235. },
  2236. {
  2237. "name": "Symfony Community",
  2238. "homepage": "https://symfony.com/contributors"
  2239. }
  2240. ],
  2241. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  2242. "homepage": "https://symfony.com",
  2243. "keywords": [
  2244. "debug",
  2245. "dump"
  2246. ],
  2247. "support": {
  2248. "source": "https://github.com/symfony/var-dumper/tree/v7.1.0"
  2249. },
  2250. "funding": [
  2251. {
  2252. "url": "https://symfony.com/sponsor",
  2253. "type": "custom"
  2254. },
  2255. {
  2256. "url": "https://github.com/fabpot",
  2257. "type": "github"
  2258. },
  2259. {
  2260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2261. "type": "tidelift"
  2262. }
  2263. ],
  2264. "time": "2024-05-28T06:54:05+00:00"
  2265. },
  2266. {
  2267. "name": "symfony/var-exporter",
  2268. "version": "v7.1.0",
  2269. "source": {
  2270. "type": "git",
  2271. "url": "https://github.com/symfony/var-exporter.git",
  2272. "reference": "353688d70dcd43e8f7a5cc13b9afba49d4946c39"
  2273. },
  2274. "dist": {
  2275. "type": "zip",
  2276. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/353688d70dcd43e8f7a5cc13b9afba49d4946c39",
  2277. "reference": "353688d70dcd43e8f7a5cc13b9afba49d4946c39",
  2278. "shasum": ""
  2279. },
  2280. "require": {
  2281. "php": ">=8.2"
  2282. },
  2283. "require-dev": {
  2284. "symfony/property-access": "^6.4|^7.0",
  2285. "symfony/serializer": "^6.4|^7.0",
  2286. "symfony/var-dumper": "^6.4|^7.0"
  2287. },
  2288. "type": "library",
  2289. "autoload": {
  2290. "psr-4": {
  2291. "Symfony\\Component\\VarExporter\\": ""
  2292. },
  2293. "exclude-from-classmap": [
  2294. "/Tests/"
  2295. ]
  2296. },
  2297. "notification-url": "https://packagist.org/downloads/",
  2298. "license": [
  2299. "MIT"
  2300. ],
  2301. "authors": [
  2302. {
  2303. "name": "Nicolas Grekas",
  2304. "email": "p@tchwork.com"
  2305. },
  2306. {
  2307. "name": "Symfony Community",
  2308. "homepage": "https://symfony.com/contributors"
  2309. }
  2310. ],
  2311. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  2312. "homepage": "https://symfony.com",
  2313. "keywords": [
  2314. "clone",
  2315. "construct",
  2316. "export",
  2317. "hydrate",
  2318. "instantiate",
  2319. "lazy-loading",
  2320. "proxy",
  2321. "serialize"
  2322. ],
  2323. "support": {
  2324. "source": "https://github.com/symfony/var-exporter/tree/v7.1.0"
  2325. },
  2326. "funding": [
  2327. {
  2328. "url": "https://symfony.com/sponsor",
  2329. "type": "custom"
  2330. },
  2331. {
  2332. "url": "https://github.com/fabpot",
  2333. "type": "github"
  2334. },
  2335. {
  2336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2337. "type": "tidelift"
  2338. }
  2339. ],
  2340. "time": "2024-05-22T10:14:54+00:00"
  2341. },
  2342. {
  2343. "name": "symfony/yaml",
  2344. "version": "v7.1.0",
  2345. "source": {
  2346. "type": "git",
  2347. "url": "https://github.com/symfony/yaml.git",
  2348. "reference": "c5f718c94e3c37dd77b77484e6cf0b524b2d405e"
  2349. },
  2350. "dist": {
  2351. "type": "zip",
  2352. "url": "https://api.github.com/repos/symfony/yaml/zipball/c5f718c94e3c37dd77b77484e6cf0b524b2d405e",
  2353. "reference": "c5f718c94e3c37dd77b77484e6cf0b524b2d405e",
  2354. "shasum": ""
  2355. },
  2356. "require": {
  2357. "php": ">=8.2",
  2358. "symfony/polyfill-ctype": "^1.8"
  2359. },
  2360. "conflict": {
  2361. "symfony/console": "<6.4"
  2362. },
  2363. "require-dev": {
  2364. "symfony/console": "^6.4|^7.0"
  2365. },
  2366. "bin": [
  2367. "Resources/bin/yaml-lint"
  2368. ],
  2369. "type": "library",
  2370. "autoload": {
  2371. "psr-4": {
  2372. "Symfony\\Component\\Yaml\\": ""
  2373. },
  2374. "exclude-from-classmap": [
  2375. "/Tests/"
  2376. ]
  2377. },
  2378. "notification-url": "https://packagist.org/downloads/",
  2379. "license": [
  2380. "MIT"
  2381. ],
  2382. "authors": [
  2383. {
  2384. "name": "Fabien Potencier",
  2385. "email": "fabien@symfony.com"
  2386. },
  2387. {
  2388. "name": "Symfony Community",
  2389. "homepage": "https://symfony.com/contributors"
  2390. }
  2391. ],
  2392. "description": "Loads and dumps YAML files",
  2393. "homepage": "https://symfony.com",
  2394. "support": {
  2395. "source": "https://github.com/symfony/yaml/tree/v7.1.0"
  2396. },
  2397. "funding": [
  2398. {
  2399. "url": "https://symfony.com/sponsor",
  2400. "type": "custom"
  2401. },
  2402. {
  2403. "url": "https://github.com/fabpot",
  2404. "type": "github"
  2405. },
  2406. {
  2407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2408. "type": "tidelift"
  2409. }
  2410. ],
  2411. "time": "2024-04-28T18:29:00+00:00"
  2412. }
  2413. ],
  2414. "packages-dev": [],
  2415. "aliases": [],
  2416. "minimum-stability": "stable",
  2417. "stability-flags": [],
  2418. "prefer-stable": true,
  2419. "prefer-lowest": false,
  2420. "platform": {
  2421. "php": ">=8.2",
  2422. "ext-ctype": "*",
  2423. "ext-iconv": "*"
  2424. },
  2425. "platform-dev": [],
  2426. "plugin-api-version": "2.6.0"
  2427. }