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 183KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055
  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": "4a3f1535ad976353a15a4d894f6a885c",
  8. "packages": [
  9. {
  10. "name": "doctrine/collections",
  11. "version": "2.6.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/collections.git",
  15. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/collections/zipball/7713da39d8e237f28411d6a616a3dce5e20d5de2",
  20. "reference": "7713da39d8e237f28411d6a616a3dce5e20d5de2",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/deprecations": "^1",
  25. "php": "^8.1",
  26. "symfony/polyfill-php84": "^1.30"
  27. },
  28. "require-dev": {
  29. "doctrine/coding-standard": "^14",
  30. "ext-json": "*",
  31. "phpstan/phpstan": "^2.1.30",
  32. "phpstan/phpstan-phpunit": "^2.0.7",
  33. "phpunit/phpunit": "^10.5.58 || ^11.5.42 || ^12.4"
  34. },
  35. "type": "library",
  36. "autoload": {
  37. "psr-4": {
  38. "Doctrine\\Common\\Collections\\": "src"
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "authors": [
  46. {
  47. "name": "Guilherme Blanco",
  48. "email": "guilhermeblanco@gmail.com"
  49. },
  50. {
  51. "name": "Roman Borschel",
  52. "email": "roman@code-factory.org"
  53. },
  54. {
  55. "name": "Benjamin Eberlei",
  56. "email": "kontakt@beberlei.de"
  57. },
  58. {
  59. "name": "Jonathan Wage",
  60. "email": "jonwage@gmail.com"
  61. },
  62. {
  63. "name": "Johannes Schmitt",
  64. "email": "schmittjoh@gmail.com"
  65. }
  66. ],
  67. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  68. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  69. "keywords": [
  70. "array",
  71. "collections",
  72. "iterators",
  73. "php"
  74. ],
  75. "support": {
  76. "issues": "https://github.com/doctrine/collections/issues",
  77. "source": "https://github.com/doctrine/collections/tree/2.6.0"
  78. },
  79. "funding": [
  80. {
  81. "url": "https://www.doctrine-project.org/sponsorship.html",
  82. "type": "custom"
  83. },
  84. {
  85. "url": "https://www.patreon.com/phpdoctrine",
  86. "type": "patreon"
  87. },
  88. {
  89. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  90. "type": "tidelift"
  91. }
  92. ],
  93. "time": "2026-01-15T10:01:58+00:00"
  94. },
  95. {
  96. "name": "doctrine/dbal",
  97. "version": "3.10.5",
  98. "source": {
  99. "type": "git",
  100. "url": "https://github.com/doctrine/dbal.git",
  101. "reference": "95d84866bf3c04b2ddca1df7c049714660959aef"
  102. },
  103. "dist": {
  104. "type": "zip",
  105. "url": "https://api.github.com/repos/doctrine/dbal/zipball/95d84866bf3c04b2ddca1df7c049714660959aef",
  106. "reference": "95d84866bf3c04b2ddca1df7c049714660959aef",
  107. "shasum": ""
  108. },
  109. "require": {
  110. "composer-runtime-api": "^2",
  111. "doctrine/deprecations": "^0.5.3|^1",
  112. "doctrine/event-manager": "^1|^2",
  113. "php": "^7.4 || ^8.0",
  114. "psr/cache": "^1|^2|^3",
  115. "psr/log": "^1|^2|^3"
  116. },
  117. "conflict": {
  118. "doctrine/cache": "< 1.11"
  119. },
  120. "require-dev": {
  121. "doctrine/cache": "^1.11|^2.0",
  122. "doctrine/coding-standard": "14.0.0",
  123. "fig/log-test": "^1",
  124. "jetbrains/phpstorm-stubs": "2023.1",
  125. "phpstan/phpstan": "2.1.30",
  126. "phpstan/phpstan-strict-rules": "^2",
  127. "phpunit/phpunit": "9.6.34",
  128. "slevomat/coding-standard": "8.27.1",
  129. "squizlabs/php_codesniffer": "4.0.1",
  130. "symfony/cache": "^5.4|^6.0|^7.0|^8.0",
  131. "symfony/console": "^4.4|^5.4|^6.0|^7.0|^8.0"
  132. },
  133. "suggest": {
  134. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  135. },
  136. "bin": [
  137. "bin/doctrine-dbal"
  138. ],
  139. "type": "library",
  140. "autoload": {
  141. "psr-4": {
  142. "Doctrine\\DBAL\\": "src"
  143. }
  144. },
  145. "notification-url": "https://packagist.org/downloads/",
  146. "license": [
  147. "MIT"
  148. ],
  149. "authors": [
  150. {
  151. "name": "Guilherme Blanco",
  152. "email": "guilhermeblanco@gmail.com"
  153. },
  154. {
  155. "name": "Roman Borschel",
  156. "email": "roman@code-factory.org"
  157. },
  158. {
  159. "name": "Benjamin Eberlei",
  160. "email": "kontakt@beberlei.de"
  161. },
  162. {
  163. "name": "Jonathan Wage",
  164. "email": "jonwage@gmail.com"
  165. }
  166. ],
  167. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  168. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  169. "keywords": [
  170. "abstraction",
  171. "database",
  172. "db2",
  173. "dbal",
  174. "mariadb",
  175. "mssql",
  176. "mysql",
  177. "oci8",
  178. "oracle",
  179. "pdo",
  180. "pgsql",
  181. "postgresql",
  182. "queryobject",
  183. "sasql",
  184. "sql",
  185. "sqlite",
  186. "sqlserver",
  187. "sqlsrv"
  188. ],
  189. "support": {
  190. "issues": "https://github.com/doctrine/dbal/issues",
  191. "source": "https://github.com/doctrine/dbal/tree/3.10.5"
  192. },
  193. "funding": [
  194. {
  195. "url": "https://www.doctrine-project.org/sponsorship.html",
  196. "type": "custom"
  197. },
  198. {
  199. "url": "https://www.patreon.com/phpdoctrine",
  200. "type": "patreon"
  201. },
  202. {
  203. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  204. "type": "tidelift"
  205. }
  206. ],
  207. "time": "2026-02-24T08:03:57+00:00"
  208. },
  209. {
  210. "name": "doctrine/deprecations",
  211. "version": "1.1.6",
  212. "source": {
  213. "type": "git",
  214. "url": "https://github.com/doctrine/deprecations.git",
  215. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  216. },
  217. "dist": {
  218. "type": "zip",
  219. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  220. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  221. "shasum": ""
  222. },
  223. "require": {
  224. "php": "^7.1 || ^8.0"
  225. },
  226. "conflict": {
  227. "phpunit/phpunit": "<=7.5 || >=14"
  228. },
  229. "require-dev": {
  230. "doctrine/coding-standard": "^9 || ^12 || ^14",
  231. "phpstan/phpstan": "1.4.10 || 2.1.30",
  232. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  233. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  234. "psr/log": "^1 || ^2 || ^3"
  235. },
  236. "suggest": {
  237. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  238. },
  239. "type": "library",
  240. "autoload": {
  241. "psr-4": {
  242. "Doctrine\\Deprecations\\": "src"
  243. }
  244. },
  245. "notification-url": "https://packagist.org/downloads/",
  246. "license": [
  247. "MIT"
  248. ],
  249. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  250. "homepage": "https://www.doctrine-project.org/",
  251. "support": {
  252. "issues": "https://github.com/doctrine/deprecations/issues",
  253. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  254. },
  255. "time": "2026-02-07T07:09:04+00:00"
  256. },
  257. {
  258. "name": "doctrine/doctrine-bundle",
  259. "version": "2.18.2",
  260. "source": {
  261. "type": "git",
  262. "url": "https://github.com/doctrine/DoctrineBundle.git",
  263. "reference": "0ff098b29b8b3c68307c8987dcaed7fd829c6546"
  264. },
  265. "dist": {
  266. "type": "zip",
  267. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/0ff098b29b8b3c68307c8987dcaed7fd829c6546",
  268. "reference": "0ff098b29b8b3c68307c8987dcaed7fd829c6546",
  269. "shasum": ""
  270. },
  271. "require": {
  272. "doctrine/dbal": "^3.7.0 || ^4.0",
  273. "doctrine/deprecations": "^1.0",
  274. "doctrine/persistence": "^3.1 || ^4",
  275. "doctrine/sql-formatter": "^1.0.1",
  276. "php": "^8.1",
  277. "symfony/cache": "^6.4 || ^7.0",
  278. "symfony/config": "^6.4 || ^7.0",
  279. "symfony/console": "^6.4 || ^7.0",
  280. "symfony/dependency-injection": "^6.4 || ^7.0",
  281. "symfony/doctrine-bridge": "^6.4.3 || ^7.0.3",
  282. "symfony/framework-bundle": "^6.4 || ^7.0",
  283. "symfony/service-contracts": "^2.5 || ^3"
  284. },
  285. "conflict": {
  286. "doctrine/annotations": ">=3.0",
  287. "doctrine/cache": "< 1.11",
  288. "doctrine/orm": "<2.17 || >=4.0",
  289. "symfony/var-exporter": "< 6.4.1 || 7.0.0",
  290. "twig/twig": "<2.13 || >=3.0 <3.0.4"
  291. },
  292. "require-dev": {
  293. "doctrine/annotations": "^1 || ^2",
  294. "doctrine/cache": "^1.11 || ^2.0",
  295. "doctrine/coding-standard": "^14",
  296. "doctrine/orm": "^2.17 || ^3.1",
  297. "friendsofphp/proxy-manager-lts": "^1.0",
  298. "phpstan/phpstan": "2.1.1",
  299. "phpstan/phpstan-phpunit": "2.0.3",
  300. "phpstan/phpstan-strict-rules": "^2",
  301. "phpunit/phpunit": "^10.5.53 || ^12.3.10",
  302. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  303. "symfony/doctrine-messenger": "^6.4 || ^7.0",
  304. "symfony/expression-language": "^6.4 || ^7.0",
  305. "symfony/messenger": "^6.4 || ^7.0",
  306. "symfony/property-info": "^6.4 || ^7.0",
  307. "symfony/security-bundle": "^6.4 || ^7.0",
  308. "symfony/stopwatch": "^6.4 || ^7.0",
  309. "symfony/string": "^6.4 || ^7.0",
  310. "symfony/twig-bridge": "^6.4 || ^7.0",
  311. "symfony/validator": "^6.4 || ^7.0",
  312. "symfony/var-exporter": "^6.4.1 || ^7.0.1",
  313. "symfony/web-profiler-bundle": "^6.4 || ^7.0",
  314. "symfony/yaml": "^6.4 || ^7.0",
  315. "twig/twig": "^2.14.7 || ^3.0.4"
  316. },
  317. "suggest": {
  318. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  319. "ext-pdo": "*",
  320. "symfony/web-profiler-bundle": "To use the data collector."
  321. },
  322. "type": "symfony-bundle",
  323. "autoload": {
  324. "psr-4": {
  325. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  326. }
  327. },
  328. "notification-url": "https://packagist.org/downloads/",
  329. "license": [
  330. "MIT"
  331. ],
  332. "authors": [
  333. {
  334. "name": "Fabien Potencier",
  335. "email": "fabien@symfony.com"
  336. },
  337. {
  338. "name": "Benjamin Eberlei",
  339. "email": "kontakt@beberlei.de"
  340. },
  341. {
  342. "name": "Symfony Community",
  343. "homepage": "https://symfony.com/contributors"
  344. },
  345. {
  346. "name": "Doctrine Project",
  347. "homepage": "https://www.doctrine-project.org/"
  348. }
  349. ],
  350. "description": "Symfony DoctrineBundle",
  351. "homepage": "https://www.doctrine-project.org",
  352. "keywords": [
  353. "database",
  354. "dbal",
  355. "orm",
  356. "persistence"
  357. ],
  358. "support": {
  359. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  360. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.18.2"
  361. },
  362. "funding": [
  363. {
  364. "url": "https://www.doctrine-project.org/sponsorship.html",
  365. "type": "custom"
  366. },
  367. {
  368. "url": "https://www.patreon.com/phpdoctrine",
  369. "type": "patreon"
  370. },
  371. {
  372. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  373. "type": "tidelift"
  374. }
  375. ],
  376. "time": "2025-12-20T21:35:32+00:00"
  377. },
  378. {
  379. "name": "doctrine/doctrine-migrations-bundle",
  380. "version": "3.7.0",
  381. "source": {
  382. "type": "git",
  383. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  384. "reference": "1e380c6dd8ac8488217f39cff6b77e367f1a644b"
  385. },
  386. "dist": {
  387. "type": "zip",
  388. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/1e380c6dd8ac8488217f39cff6b77e367f1a644b",
  389. "reference": "1e380c6dd8ac8488217f39cff6b77e367f1a644b",
  390. "shasum": ""
  391. },
  392. "require": {
  393. "doctrine/doctrine-bundle": "^2.4 || ^3.0",
  394. "doctrine/migrations": "^3.2",
  395. "php": "^7.2 || ^8.0",
  396. "symfony/deprecation-contracts": "^2.1 || ^3",
  397. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0 || ^8.0"
  398. },
  399. "require-dev": {
  400. "composer/semver": "^3.0",
  401. "doctrine/coding-standard": "^12 || ^14",
  402. "doctrine/orm": "^2.6 || ^3",
  403. "phpstan/phpstan": "^1.4 || ^2",
  404. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  405. "phpstan/phpstan-phpunit": "^1 || ^2",
  406. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  407. "phpstan/phpstan-symfony": "^1.3 || ^2",
  408. "phpunit/phpunit": "^8.5 || ^9.5",
  409. "symfony/phpunit-bridge": "^6.3 || ^7 || ^8",
  410. "symfony/var-exporter": "^5.4 || ^6 || ^7 || ^8"
  411. },
  412. "type": "symfony-bundle",
  413. "autoload": {
  414. "psr-4": {
  415. "Doctrine\\Bundle\\MigrationsBundle\\": "src"
  416. }
  417. },
  418. "notification-url": "https://packagist.org/downloads/",
  419. "license": [
  420. "MIT"
  421. ],
  422. "authors": [
  423. {
  424. "name": "Fabien Potencier",
  425. "email": "fabien@symfony.com"
  426. },
  427. {
  428. "name": "Doctrine Project",
  429. "homepage": "https://www.doctrine-project.org"
  430. },
  431. {
  432. "name": "Symfony Community",
  433. "homepage": "https://symfony.com/contributors"
  434. }
  435. ],
  436. "description": "Symfony DoctrineMigrationsBundle",
  437. "homepage": "https://www.doctrine-project.org",
  438. "keywords": [
  439. "dbal",
  440. "migrations",
  441. "schema"
  442. ],
  443. "support": {
  444. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  445. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.7.0"
  446. },
  447. "funding": [
  448. {
  449. "url": "https://www.doctrine-project.org/sponsorship.html",
  450. "type": "custom"
  451. },
  452. {
  453. "url": "https://www.patreon.com/phpdoctrine",
  454. "type": "patreon"
  455. },
  456. {
  457. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  458. "type": "tidelift"
  459. }
  460. ],
  461. "time": "2025-11-15T19:02:59+00:00"
  462. },
  463. {
  464. "name": "doctrine/event-manager",
  465. "version": "2.1.1",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/doctrine/event-manager.git",
  469. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  474. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  475. "shasum": ""
  476. },
  477. "require": {
  478. "php": "^8.1"
  479. },
  480. "conflict": {
  481. "doctrine/common": "<2.9"
  482. },
  483. "require-dev": {
  484. "doctrine/coding-standard": "^14",
  485. "phpdocumentor/guides-cli": "^1.4",
  486. "phpstan/phpstan": "^2.1.32",
  487. "phpunit/phpunit": "^10.5.58"
  488. },
  489. "type": "library",
  490. "autoload": {
  491. "psr-4": {
  492. "Doctrine\\Common\\": "src"
  493. }
  494. },
  495. "notification-url": "https://packagist.org/downloads/",
  496. "license": [
  497. "MIT"
  498. ],
  499. "authors": [
  500. {
  501. "name": "Guilherme Blanco",
  502. "email": "guilhermeblanco@gmail.com"
  503. },
  504. {
  505. "name": "Roman Borschel",
  506. "email": "roman@code-factory.org"
  507. },
  508. {
  509. "name": "Benjamin Eberlei",
  510. "email": "kontakt@beberlei.de"
  511. },
  512. {
  513. "name": "Jonathan Wage",
  514. "email": "jonwage@gmail.com"
  515. },
  516. {
  517. "name": "Johannes Schmitt",
  518. "email": "schmittjoh@gmail.com"
  519. },
  520. {
  521. "name": "Marco Pivetta",
  522. "email": "ocramius@gmail.com"
  523. }
  524. ],
  525. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  526. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  527. "keywords": [
  528. "event",
  529. "event dispatcher",
  530. "event manager",
  531. "event system",
  532. "events"
  533. ],
  534. "support": {
  535. "issues": "https://github.com/doctrine/event-manager/issues",
  536. "source": "https://github.com/doctrine/event-manager/tree/2.1.1"
  537. },
  538. "funding": [
  539. {
  540. "url": "https://www.doctrine-project.org/sponsorship.html",
  541. "type": "custom"
  542. },
  543. {
  544. "url": "https://www.patreon.com/phpdoctrine",
  545. "type": "patreon"
  546. },
  547. {
  548. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  549. "type": "tidelift"
  550. }
  551. ],
  552. "time": "2026-01-29T07:11:08+00:00"
  553. },
  554. {
  555. "name": "doctrine/inflector",
  556. "version": "2.1.0",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/doctrine/inflector.git",
  560. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  565. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "php": "^7.2 || ^8.0"
  570. },
  571. "require-dev": {
  572. "doctrine/coding-standard": "^12.0 || ^13.0",
  573. "phpstan/phpstan": "^1.12 || ^2.0",
  574. "phpstan/phpstan-phpunit": "^1.4 || ^2.0",
  575. "phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
  576. "phpunit/phpunit": "^8.5 || ^12.2"
  577. },
  578. "type": "library",
  579. "autoload": {
  580. "psr-4": {
  581. "Doctrine\\Inflector\\": "src"
  582. }
  583. },
  584. "notification-url": "https://packagist.org/downloads/",
  585. "license": [
  586. "MIT"
  587. ],
  588. "authors": [
  589. {
  590. "name": "Guilherme Blanco",
  591. "email": "guilhermeblanco@gmail.com"
  592. },
  593. {
  594. "name": "Roman Borschel",
  595. "email": "roman@code-factory.org"
  596. },
  597. {
  598. "name": "Benjamin Eberlei",
  599. "email": "kontakt@beberlei.de"
  600. },
  601. {
  602. "name": "Jonathan Wage",
  603. "email": "jonwage@gmail.com"
  604. },
  605. {
  606. "name": "Johannes Schmitt",
  607. "email": "schmittjoh@gmail.com"
  608. }
  609. ],
  610. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  611. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  612. "keywords": [
  613. "inflection",
  614. "inflector",
  615. "lowercase",
  616. "manipulation",
  617. "php",
  618. "plural",
  619. "singular",
  620. "strings",
  621. "uppercase",
  622. "words"
  623. ],
  624. "support": {
  625. "issues": "https://github.com/doctrine/inflector/issues",
  626. "source": "https://github.com/doctrine/inflector/tree/2.1.0"
  627. },
  628. "funding": [
  629. {
  630. "url": "https://www.doctrine-project.org/sponsorship.html",
  631. "type": "custom"
  632. },
  633. {
  634. "url": "https://www.patreon.com/phpdoctrine",
  635. "type": "patreon"
  636. },
  637. {
  638. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  639. "type": "tidelift"
  640. }
  641. ],
  642. "time": "2025-08-10T19:31:58+00:00"
  643. },
  644. {
  645. "name": "doctrine/instantiator",
  646. "version": "2.0.0",
  647. "source": {
  648. "type": "git",
  649. "url": "https://github.com/doctrine/instantiator.git",
  650. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  651. },
  652. "dist": {
  653. "type": "zip",
  654. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  655. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  656. "shasum": ""
  657. },
  658. "require": {
  659. "php": "^8.1"
  660. },
  661. "require-dev": {
  662. "doctrine/coding-standard": "^11",
  663. "ext-pdo": "*",
  664. "ext-phar": "*",
  665. "phpbench/phpbench": "^1.2",
  666. "phpstan/phpstan": "^1.9.4",
  667. "phpstan/phpstan-phpunit": "^1.3",
  668. "phpunit/phpunit": "^9.5.27",
  669. "vimeo/psalm": "^5.4"
  670. },
  671. "type": "library",
  672. "autoload": {
  673. "psr-4": {
  674. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "MIT"
  680. ],
  681. "authors": [
  682. {
  683. "name": "Marco Pivetta",
  684. "email": "ocramius@gmail.com",
  685. "homepage": "https://ocramius.github.io/"
  686. }
  687. ],
  688. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  689. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  690. "keywords": [
  691. "constructor",
  692. "instantiate"
  693. ],
  694. "support": {
  695. "issues": "https://github.com/doctrine/instantiator/issues",
  696. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  697. },
  698. "funding": [
  699. {
  700. "url": "https://www.doctrine-project.org/sponsorship.html",
  701. "type": "custom"
  702. },
  703. {
  704. "url": "https://www.patreon.com/phpdoctrine",
  705. "type": "patreon"
  706. },
  707. {
  708. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  709. "type": "tidelift"
  710. }
  711. ],
  712. "time": "2022-12-30T00:23:10+00:00"
  713. },
  714. {
  715. "name": "doctrine/lexer",
  716. "version": "3.0.1",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/doctrine/lexer.git",
  720. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  725. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  726. "shasum": ""
  727. },
  728. "require": {
  729. "php": "^8.1"
  730. },
  731. "require-dev": {
  732. "doctrine/coding-standard": "^12",
  733. "phpstan/phpstan": "^1.10",
  734. "phpunit/phpunit": "^10.5",
  735. "psalm/plugin-phpunit": "^0.18.3",
  736. "vimeo/psalm": "^5.21"
  737. },
  738. "type": "library",
  739. "autoload": {
  740. "psr-4": {
  741. "Doctrine\\Common\\Lexer\\": "src"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Guilherme Blanco",
  751. "email": "guilhermeblanco@gmail.com"
  752. },
  753. {
  754. "name": "Roman Borschel",
  755. "email": "roman@code-factory.org"
  756. },
  757. {
  758. "name": "Johannes Schmitt",
  759. "email": "schmittjoh@gmail.com"
  760. }
  761. ],
  762. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  763. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  764. "keywords": [
  765. "annotations",
  766. "docblock",
  767. "lexer",
  768. "parser",
  769. "php"
  770. ],
  771. "support": {
  772. "issues": "https://github.com/doctrine/lexer/issues",
  773. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  774. },
  775. "funding": [
  776. {
  777. "url": "https://www.doctrine-project.org/sponsorship.html",
  778. "type": "custom"
  779. },
  780. {
  781. "url": "https://www.patreon.com/phpdoctrine",
  782. "type": "patreon"
  783. },
  784. {
  785. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  786. "type": "tidelift"
  787. }
  788. ],
  789. "time": "2024-02-05T11:56:58+00:00"
  790. },
  791. {
  792. "name": "doctrine/migrations",
  793. "version": "3.9.7",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/doctrine/migrations.git",
  797. "reference": "96cb2a89b56c9efb0bac38e606dc0b0f13e650ec"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/doctrine/migrations/zipball/96cb2a89b56c9efb0bac38e606dc0b0f13e650ec",
  802. "reference": "96cb2a89b56c9efb0bac38e606dc0b0f13e650ec",
  803. "shasum": ""
  804. },
  805. "require": {
  806. "composer-runtime-api": "^2",
  807. "doctrine/dbal": "^3.6 || ^4",
  808. "doctrine/deprecations": "^0.5.3 || ^1",
  809. "doctrine/event-manager": "^1.2 || ^2.0",
  810. "php": "^8.1",
  811. "psr/log": "^1.1.3 || ^2 || ^3",
  812. "symfony/console": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  813. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  814. "symfony/var-exporter": "^6.2 || ^7.0 || ^8.0"
  815. },
  816. "conflict": {
  817. "doctrine/orm": "<2.12 || >=4"
  818. },
  819. "require-dev": {
  820. "doctrine/coding-standard": "^14",
  821. "doctrine/orm": "^2.13 || ^3",
  822. "doctrine/persistence": "^2 || ^3 || ^4",
  823. "doctrine/sql-formatter": "^1.0",
  824. "ext-pdo_sqlite": "*",
  825. "fig/log-test": "^1",
  826. "phpstan/phpstan": "^2",
  827. "phpstan/phpstan-deprecation-rules": "^2",
  828. "phpstan/phpstan-phpunit": "^2",
  829. "phpstan/phpstan-strict-rules": "^2",
  830. "phpstan/phpstan-symfony": "^2",
  831. "phpunit/phpunit": "^10.3 || ^11.0 || ^12.0",
  832. "symfony/cache": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  833. "symfony/process": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  834. "symfony/yaml": "^5.4 || ^6.0 || ^7.0 || ^8.0"
  835. },
  836. "suggest": {
  837. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  838. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  839. },
  840. "bin": [
  841. "bin/doctrine-migrations"
  842. ],
  843. "type": "library",
  844. "autoload": {
  845. "psr-4": {
  846. "Doctrine\\Migrations\\": "src"
  847. }
  848. },
  849. "notification-url": "https://packagist.org/downloads/",
  850. "license": [
  851. "MIT"
  852. ],
  853. "authors": [
  854. {
  855. "name": "Benjamin Eberlei",
  856. "email": "kontakt@beberlei.de"
  857. },
  858. {
  859. "name": "Jonathan Wage",
  860. "email": "jonwage@gmail.com"
  861. },
  862. {
  863. "name": "Michael Simonson",
  864. "email": "contact@mikesimonson.com"
  865. }
  866. ],
  867. "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.",
  868. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  869. "keywords": [
  870. "database",
  871. "dbal",
  872. "migrations"
  873. ],
  874. "support": {
  875. "issues": "https://github.com/doctrine/migrations/issues",
  876. "source": "https://github.com/doctrine/migrations/tree/3.9.7"
  877. },
  878. "funding": [
  879. {
  880. "url": "https://www.doctrine-project.org/sponsorship.html",
  881. "type": "custom"
  882. },
  883. {
  884. "url": "https://www.patreon.com/phpdoctrine",
  885. "type": "patreon"
  886. },
  887. {
  888. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  889. "type": "tidelift"
  890. }
  891. ],
  892. "time": "2026-04-23T19:33:20+00:00"
  893. },
  894. {
  895. "name": "doctrine/orm",
  896. "version": "3.6.7",
  897. "source": {
  898. "type": "git",
  899. "url": "https://github.com/doctrine/orm.git",
  900. "reference": "bc217c0e19c3a9eadfa67697143b87c9ba01272c"
  901. },
  902. "dist": {
  903. "type": "zip",
  904. "url": "https://api.github.com/repos/doctrine/orm/zipball/bc217c0e19c3a9eadfa67697143b87c9ba01272c",
  905. "reference": "bc217c0e19c3a9eadfa67697143b87c9ba01272c",
  906. "shasum": ""
  907. },
  908. "require": {
  909. "composer-runtime-api": "^2",
  910. "doctrine/collections": "^2.2",
  911. "doctrine/dbal": "^3.8.2 || ^4",
  912. "doctrine/deprecations": "^0.5.3 || ^1",
  913. "doctrine/event-manager": "^1.2 || ^2",
  914. "doctrine/inflector": "^1.4 || ^2.0",
  915. "doctrine/instantiator": "^1.3 || ^2",
  916. "doctrine/lexer": "^3",
  917. "doctrine/persistence": "^3.3.1 || ^4",
  918. "ext-ctype": "*",
  919. "php": "^8.1",
  920. "psr/cache": "^1 || ^2 || ^3",
  921. "symfony/console": "^5.4 || ^6.0 || ^7.0 || ^8.0",
  922. "symfony/var-exporter": "^6.3.9 || ^7.0 || ^8.0"
  923. },
  924. "require-dev": {
  925. "doctrine/coding-standard": "^14.0",
  926. "phpbench/phpbench": "^1.0",
  927. "phpstan/extension-installer": "^1.4",
  928. "phpstan/phpstan": "2.1.23",
  929. "phpstan/phpstan-deprecation-rules": "^2",
  930. "phpunit/phpunit": "^10.5.0 || ^11.5",
  931. "psr/log": "^1 || ^2 || ^3",
  932. "symfony/cache": "^5.4 || ^6.2 || ^7.0 || ^8.0"
  933. },
  934. "suggest": {
  935. "ext-dom": "Provides support for XSD validation for XML mapping files",
  936. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  937. },
  938. "type": "library",
  939. "autoload": {
  940. "psr-4": {
  941. "Doctrine\\ORM\\": "src"
  942. }
  943. },
  944. "notification-url": "https://packagist.org/downloads/",
  945. "license": [
  946. "MIT"
  947. ],
  948. "authors": [
  949. {
  950. "name": "Guilherme Blanco",
  951. "email": "guilhermeblanco@gmail.com"
  952. },
  953. {
  954. "name": "Roman Borschel",
  955. "email": "roman@code-factory.org"
  956. },
  957. {
  958. "name": "Benjamin Eberlei",
  959. "email": "kontakt@beberlei.de"
  960. },
  961. {
  962. "name": "Jonathan Wage",
  963. "email": "jonwage@gmail.com"
  964. },
  965. {
  966. "name": "Marco Pivetta",
  967. "email": "ocramius@gmail.com"
  968. }
  969. ],
  970. "description": "Object-Relational-Mapper for PHP",
  971. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  972. "keywords": [
  973. "database",
  974. "orm"
  975. ],
  976. "support": {
  977. "issues": "https://github.com/doctrine/orm/issues",
  978. "source": "https://github.com/doctrine/orm/tree/3.6.7"
  979. },
  980. "time": "2026-05-25T16:45:47+00:00"
  981. },
  982. {
  983. "name": "doctrine/persistence",
  984. "version": "4.2.0",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/doctrine/persistence.git",
  988. "reference": "49ab73e0d3e2ac8d1f5ecda3dd8acd5503781e8b"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/doctrine/persistence/zipball/49ab73e0d3e2ac8d1f5ecda3dd8acd5503781e8b",
  993. "reference": "49ab73e0d3e2ac8d1f5ecda3dd8acd5503781e8b",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "doctrine/deprecations": "^1",
  998. "doctrine/event-manager": "^1 || ^2",
  999. "php": "^8.1",
  1000. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1001. },
  1002. "require-dev": {
  1003. "doctrine/coding-standard": "^14",
  1004. "phpstan/phpstan": "2.1.30",
  1005. "phpstan/phpstan-phpunit": "^2",
  1006. "phpstan/phpstan-strict-rules": "^2",
  1007. "phpunit/phpunit": "^10.5.58 || ^12",
  1008. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0 || ^8.0",
  1009. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0 || ^8.0"
  1010. },
  1011. "type": "library",
  1012. "autoload": {
  1013. "psr-4": {
  1014. "Doctrine\\Persistence\\": "src"
  1015. }
  1016. },
  1017. "notification-url": "https://packagist.org/downloads/",
  1018. "license": [
  1019. "MIT"
  1020. ],
  1021. "authors": [
  1022. {
  1023. "name": "Guilherme Blanco",
  1024. "email": "guilhermeblanco@gmail.com"
  1025. },
  1026. {
  1027. "name": "Roman Borschel",
  1028. "email": "roman@code-factory.org"
  1029. },
  1030. {
  1031. "name": "Benjamin Eberlei",
  1032. "email": "kontakt@beberlei.de"
  1033. },
  1034. {
  1035. "name": "Jonathan Wage",
  1036. "email": "jonwage@gmail.com"
  1037. },
  1038. {
  1039. "name": "Johannes Schmitt",
  1040. "email": "schmittjoh@gmail.com"
  1041. },
  1042. {
  1043. "name": "Marco Pivetta",
  1044. "email": "ocramius@gmail.com"
  1045. }
  1046. ],
  1047. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1048. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1049. "keywords": [
  1050. "mapper",
  1051. "object",
  1052. "odm",
  1053. "orm",
  1054. "persistence"
  1055. ],
  1056. "support": {
  1057. "issues": "https://github.com/doctrine/persistence/issues",
  1058. "source": "https://github.com/doctrine/persistence/tree/4.2.0"
  1059. },
  1060. "funding": [
  1061. {
  1062. "url": "https://www.doctrine-project.org/sponsorship.html",
  1063. "type": "custom"
  1064. },
  1065. {
  1066. "url": "https://www.patreon.com/phpdoctrine",
  1067. "type": "patreon"
  1068. },
  1069. {
  1070. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1071. "type": "tidelift"
  1072. }
  1073. ],
  1074. "time": "2026-04-26T12:12:52+00:00"
  1075. },
  1076. {
  1077. "name": "doctrine/sql-formatter",
  1078. "version": "1.5.4",
  1079. "source": {
  1080. "type": "git",
  1081. "url": "https://github.com/doctrine/sql-formatter.git",
  1082. "reference": "9563949f5cd3bd12a17d12fb980528bc141c5806"
  1083. },
  1084. "dist": {
  1085. "type": "zip",
  1086. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/9563949f5cd3bd12a17d12fb980528bc141c5806",
  1087. "reference": "9563949f5cd3bd12a17d12fb980528bc141c5806",
  1088. "shasum": ""
  1089. },
  1090. "require": {
  1091. "php": "^8.1"
  1092. },
  1093. "require-dev": {
  1094. "doctrine/coding-standard": "^14",
  1095. "ergebnis/phpunit-slow-test-detector": "^2.20",
  1096. "phpstan/phpstan": "^2.1.31",
  1097. "phpunit/phpunit": "^10.5.58"
  1098. },
  1099. "bin": [
  1100. "bin/sql-formatter"
  1101. ],
  1102. "type": "library",
  1103. "autoload": {
  1104. "psr-4": {
  1105. "Doctrine\\SqlFormatter\\": "src"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Jeremy Dorn",
  1115. "email": "jeremy@jeremydorn.com",
  1116. "homepage": "https://jeremydorn.com/"
  1117. }
  1118. ],
  1119. "description": "a PHP SQL highlighting library",
  1120. "homepage": "https://github.com/doctrine/sql-formatter/",
  1121. "keywords": [
  1122. "highlight",
  1123. "sql"
  1124. ],
  1125. "support": {
  1126. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1127. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.4"
  1128. },
  1129. "time": "2026-02-08T16:21:46+00:00"
  1130. },
  1131. {
  1132. "name": "monolog/monolog",
  1133. "version": "3.10.0",
  1134. "source": {
  1135. "type": "git",
  1136. "url": "https://github.com/Seldaek/monolog.git",
  1137. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
  1138. },
  1139. "dist": {
  1140. "type": "zip",
  1141. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
  1142. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
  1143. "shasum": ""
  1144. },
  1145. "require": {
  1146. "php": ">=8.1",
  1147. "psr/log": "^2.0 || ^3.0"
  1148. },
  1149. "provide": {
  1150. "psr/log-implementation": "3.0.0"
  1151. },
  1152. "require-dev": {
  1153. "aws/aws-sdk-php": "^3.0",
  1154. "doctrine/couchdb": "~1.0@dev",
  1155. "elasticsearch/elasticsearch": "^7 || ^8",
  1156. "ext-json": "*",
  1157. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1158. "guzzlehttp/guzzle": "^7.4.5",
  1159. "guzzlehttp/psr7": "^2.2",
  1160. "mongodb/mongodb": "^1.8 || ^2.0",
  1161. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1162. "php-console/php-console": "^3.1.8",
  1163. "phpstan/phpstan": "^2",
  1164. "phpstan/phpstan-deprecation-rules": "^2",
  1165. "phpstan/phpstan-strict-rules": "^2",
  1166. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1167. "predis/predis": "^1.1 || ^2",
  1168. "rollbar/rollbar": "^4.0",
  1169. "ruflin/elastica": "^7 || ^8",
  1170. "symfony/mailer": "^5.4 || ^6",
  1171. "symfony/mime": "^5.4 || ^6"
  1172. },
  1173. "suggest": {
  1174. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1175. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1176. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1177. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1178. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1179. "ext-mbstring": "Allow to work properly with unicode symbols",
  1180. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1181. "ext-openssl": "Required to send log messages using SSL",
  1182. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1183. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1184. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1185. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1186. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1187. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1188. },
  1189. "type": "library",
  1190. "extra": {
  1191. "branch-alias": {
  1192. "dev-main": "3.x-dev"
  1193. }
  1194. },
  1195. "autoload": {
  1196. "psr-4": {
  1197. "Monolog\\": "src/Monolog"
  1198. }
  1199. },
  1200. "notification-url": "https://packagist.org/downloads/",
  1201. "license": [
  1202. "MIT"
  1203. ],
  1204. "authors": [
  1205. {
  1206. "name": "Jordi Boggiano",
  1207. "email": "j.boggiano@seld.be",
  1208. "homepage": "https://seld.be"
  1209. }
  1210. ],
  1211. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1212. "homepage": "https://github.com/Seldaek/monolog",
  1213. "keywords": [
  1214. "log",
  1215. "logging",
  1216. "psr-3"
  1217. ],
  1218. "support": {
  1219. "issues": "https://github.com/Seldaek/monolog/issues",
  1220. "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
  1221. },
  1222. "funding": [
  1223. {
  1224. "url": "https://github.com/Seldaek",
  1225. "type": "github"
  1226. },
  1227. {
  1228. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1229. "type": "tidelift"
  1230. }
  1231. ],
  1232. "time": "2026-01-02T08:56:05+00:00"
  1233. },
  1234. {
  1235. "name": "php-imap/php-imap",
  1236. "version": "5.1.0",
  1237. "source": {
  1238. "type": "git",
  1239. "url": "https://github.com/barbushin/php-imap.git",
  1240. "reference": "bea16a9673c41ff6ebccca4afae0624933941d0d"
  1241. },
  1242. "dist": {
  1243. "type": "zip",
  1244. "url": "https://api.github.com/repos/barbushin/php-imap/zipball/bea16a9673c41ff6ebccca4afae0624933941d0d",
  1245. "reference": "bea16a9673c41ff6ebccca4afae0624933941d0d",
  1246. "shasum": ""
  1247. },
  1248. "require": {
  1249. "ext-fileinfo": "*",
  1250. "ext-iconv": "*",
  1251. "ext-imap": "*",
  1252. "ext-json": "*",
  1253. "ext-mbstring": "*",
  1254. "php": "^7.4 || ^8.0"
  1255. },
  1256. "require-dev": {
  1257. "friendsofphp/php-cs-fixer": "^3.4",
  1258. "maglnet/composer-require-checker": "^2.0|^3.2",
  1259. "nikic/php-parser": "^4.3,<4.7|^4.10",
  1260. "paragonie/hidden-string": "^1.0",
  1261. "php-parallel-lint/php-parallel-lint": "^1.3",
  1262. "phpunit/phpunit": "^8.5|^9.5",
  1263. "povils/phpmnd": "^2.2",
  1264. "psalm/plugin-phpunit": "^0.10.0|^0.15.1",
  1265. "roave/security-advisories": "dev-master",
  1266. "sebastian/phpcpd": "^4.1|^6.0"
  1267. },
  1268. "suggest": {
  1269. "ext-fileinfo": "To facilitate IncomingMailAttachment::getFileInfo() auto-detection"
  1270. },
  1271. "type": "library",
  1272. "autoload": {
  1273. "psr-4": {
  1274. "PhpImap\\": "src/PhpImap"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "MIT"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "Sergey Barbushin",
  1284. "email": "barbushin@gmail.com",
  1285. "homepage": "http://linkedin.com/in/barbushin"
  1286. }
  1287. ],
  1288. "description": "Manage mailboxes, filter/get/delete emails in PHP (supports IMAP/POP3/NNTP)",
  1289. "homepage": "https://github.com/barbushin/php-imap",
  1290. "keywords": [
  1291. "imap",
  1292. "mail",
  1293. "mailbox",
  1294. "php",
  1295. "pop3",
  1296. "receive emails"
  1297. ],
  1298. "support": {
  1299. "issues": "https://github.com/barbushin/php-imap/issues",
  1300. "source": "https://github.com/barbushin/php-imap/tree/5.1.0"
  1301. },
  1302. "time": "2026-05-10T10:21:16+00:00"
  1303. },
  1304. {
  1305. "name": "psr/cache",
  1306. "version": "3.0.0",
  1307. "source": {
  1308. "type": "git",
  1309. "url": "https://github.com/php-fig/cache.git",
  1310. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1311. },
  1312. "dist": {
  1313. "type": "zip",
  1314. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1315. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1316. "shasum": ""
  1317. },
  1318. "require": {
  1319. "php": ">=8.0.0"
  1320. },
  1321. "type": "library",
  1322. "extra": {
  1323. "branch-alias": {
  1324. "dev-master": "1.0.x-dev"
  1325. }
  1326. },
  1327. "autoload": {
  1328. "psr-4": {
  1329. "Psr\\Cache\\": "src/"
  1330. }
  1331. },
  1332. "notification-url": "https://packagist.org/downloads/",
  1333. "license": [
  1334. "MIT"
  1335. ],
  1336. "authors": [
  1337. {
  1338. "name": "PHP-FIG",
  1339. "homepage": "https://www.php-fig.org/"
  1340. }
  1341. ],
  1342. "description": "Common interface for caching libraries",
  1343. "keywords": [
  1344. "cache",
  1345. "psr",
  1346. "psr-6"
  1347. ],
  1348. "support": {
  1349. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1350. },
  1351. "time": "2021-02-03T23:26:27+00:00"
  1352. },
  1353. {
  1354. "name": "psr/container",
  1355. "version": "2.0.2",
  1356. "source": {
  1357. "type": "git",
  1358. "url": "https://github.com/php-fig/container.git",
  1359. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1360. },
  1361. "dist": {
  1362. "type": "zip",
  1363. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1364. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1365. "shasum": ""
  1366. },
  1367. "require": {
  1368. "php": ">=7.4.0"
  1369. },
  1370. "type": "library",
  1371. "extra": {
  1372. "branch-alias": {
  1373. "dev-master": "2.0.x-dev"
  1374. }
  1375. },
  1376. "autoload": {
  1377. "psr-4": {
  1378. "Psr\\Container\\": "src/"
  1379. }
  1380. },
  1381. "notification-url": "https://packagist.org/downloads/",
  1382. "license": [
  1383. "MIT"
  1384. ],
  1385. "authors": [
  1386. {
  1387. "name": "PHP-FIG",
  1388. "homepage": "https://www.php-fig.org/"
  1389. }
  1390. ],
  1391. "description": "Common Container Interface (PHP FIG PSR-11)",
  1392. "homepage": "https://github.com/php-fig/container",
  1393. "keywords": [
  1394. "PSR-11",
  1395. "container",
  1396. "container-interface",
  1397. "container-interop",
  1398. "psr"
  1399. ],
  1400. "support": {
  1401. "issues": "https://github.com/php-fig/container/issues",
  1402. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1403. },
  1404. "time": "2021-11-05T16:47:00+00:00"
  1405. },
  1406. {
  1407. "name": "psr/event-dispatcher",
  1408. "version": "1.0.0",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/php-fig/event-dispatcher.git",
  1412. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1417. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "php": ">=7.2.0"
  1422. },
  1423. "type": "library",
  1424. "extra": {
  1425. "branch-alias": {
  1426. "dev-master": "1.0.x-dev"
  1427. }
  1428. },
  1429. "autoload": {
  1430. "psr-4": {
  1431. "Psr\\EventDispatcher\\": "src/"
  1432. }
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "PHP-FIG",
  1441. "homepage": "http://www.php-fig.org/"
  1442. }
  1443. ],
  1444. "description": "Standard interfaces for event handling.",
  1445. "keywords": [
  1446. "events",
  1447. "psr",
  1448. "psr-14"
  1449. ],
  1450. "support": {
  1451. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1452. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1453. },
  1454. "time": "2019-01-08T18:20:26+00:00"
  1455. },
  1456. {
  1457. "name": "psr/log",
  1458. "version": "3.0.2",
  1459. "source": {
  1460. "type": "git",
  1461. "url": "https://github.com/php-fig/log.git",
  1462. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  1463. },
  1464. "dist": {
  1465. "type": "zip",
  1466. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1467. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1468. "shasum": ""
  1469. },
  1470. "require": {
  1471. "php": ">=8.0.0"
  1472. },
  1473. "type": "library",
  1474. "extra": {
  1475. "branch-alias": {
  1476. "dev-master": "3.x-dev"
  1477. }
  1478. },
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Psr\\Log\\": "src"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "authors": [
  1489. {
  1490. "name": "PHP-FIG",
  1491. "homepage": "https://www.php-fig.org/"
  1492. }
  1493. ],
  1494. "description": "Common interface for logging libraries",
  1495. "homepage": "https://github.com/php-fig/log",
  1496. "keywords": [
  1497. "log",
  1498. "psr",
  1499. "psr-3"
  1500. ],
  1501. "support": {
  1502. "source": "https://github.com/php-fig/log/tree/3.0.2"
  1503. },
  1504. "time": "2024-09-11T13:17:53+00:00"
  1505. },
  1506. {
  1507. "name": "secit-pl/imap-bundle",
  1508. "version": "3.2.1",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/secit-pl/imap-bundle.git",
  1512. "reference": "3f511d87dcc2afbf816115e2c2def497b9e3dd2e"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/secit-pl/imap-bundle/zipball/3f511d87dcc2afbf816115e2c2def497b9e3dd2e",
  1517. "reference": "3f511d87dcc2afbf816115e2c2def497b9e3dd2e",
  1518. "shasum": ""
  1519. },
  1520. "require": {
  1521. "ext-fileinfo": "*",
  1522. "ext-iconv": "*",
  1523. "ext-imap": "*",
  1524. "ext-json": "*",
  1525. "ext-mbstring": "*",
  1526. "php": ">=8.1",
  1527. "php-imap/php-imap": "^4.4|^5.0",
  1528. "symfony/dependency-injection": "^6.4|^7.0",
  1529. "symfony/framework-bundle": "^6.4|^7.0"
  1530. },
  1531. "type": "symfony-bundle",
  1532. "extra": {
  1533. "branch-alias": {
  1534. "dev-master": "2.0-dev"
  1535. }
  1536. },
  1537. "autoload": {
  1538. "psr-4": {
  1539. "SecIT\\ImapBundle\\": ""
  1540. }
  1541. },
  1542. "notification-url": "https://packagist.org/downloads/",
  1543. "license": [
  1544. "MIT"
  1545. ],
  1546. "authors": [
  1547. {
  1548. "name": "Tomasz Gemza",
  1549. "email": "t.gemza@secit.pl"
  1550. }
  1551. ],
  1552. "description": "PHP-IMAP Symfony integration.",
  1553. "homepage": "https://secit.pl",
  1554. "keywords": [
  1555. "bundle",
  1556. "imap",
  1557. "php-imap",
  1558. "symfony"
  1559. ],
  1560. "support": {
  1561. "issues": "https://github.com/secit-pl/imap-bundle/issues",
  1562. "source": "https://github.com/secit-pl/imap-bundle/tree/3.2.1"
  1563. },
  1564. "time": "2024-08-13T15:38:53+00:00"
  1565. },
  1566. {
  1567. "name": "symfony/cache",
  1568. "version": "v7.1.11",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/symfony/cache.git",
  1572. "reference": "3828c0375578ff3ca1ddc54cc5c6fa4cc89fb3fb"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/symfony/cache/zipball/3828c0375578ff3ca1ddc54cc5c6fa4cc89fb3fb",
  1577. "reference": "3828c0375578ff3ca1ddc54cc5c6fa4cc89fb3fb",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "php": ">=8.2",
  1582. "psr/cache": "^2.0|^3.0",
  1583. "psr/log": "^1.1|^2|^3",
  1584. "symfony/cache-contracts": "^2.5|^3",
  1585. "symfony/deprecation-contracts": "^2.5|^3.0",
  1586. "symfony/service-contracts": "^2.5|^3",
  1587. "symfony/var-exporter": "^6.4|^7.0"
  1588. },
  1589. "conflict": {
  1590. "doctrine/dbal": "<3.6",
  1591. "symfony/dependency-injection": "<6.4",
  1592. "symfony/http-kernel": "<6.4",
  1593. "symfony/var-dumper": "<6.4"
  1594. },
  1595. "provide": {
  1596. "psr/cache-implementation": "2.0|3.0",
  1597. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  1598. "symfony/cache-implementation": "1.1|2.0|3.0"
  1599. },
  1600. "require-dev": {
  1601. "cache/integration-tests": "dev-master",
  1602. "doctrine/dbal": "^3.6|^4",
  1603. "predis/predis": "^1.1|^2.0",
  1604. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1605. "symfony/config": "^6.4|^7.0",
  1606. "symfony/dependency-injection": "^6.4|^7.0",
  1607. "symfony/filesystem": "^6.4|^7.0",
  1608. "symfony/http-kernel": "^6.4|^7.0",
  1609. "symfony/messenger": "^6.4|^7.0",
  1610. "symfony/var-dumper": "^6.4|^7.0"
  1611. },
  1612. "type": "library",
  1613. "autoload": {
  1614. "psr-4": {
  1615. "Symfony\\Component\\Cache\\": ""
  1616. },
  1617. "classmap": [
  1618. "Traits/ValueWrapper.php"
  1619. ],
  1620. "exclude-from-classmap": [
  1621. "/Tests/"
  1622. ]
  1623. },
  1624. "notification-url": "https://packagist.org/downloads/",
  1625. "license": [
  1626. "MIT"
  1627. ],
  1628. "authors": [
  1629. {
  1630. "name": "Nicolas Grekas",
  1631. "email": "p@tchwork.com"
  1632. },
  1633. {
  1634. "name": "Symfony Community",
  1635. "homepage": "https://symfony.com/contributors"
  1636. }
  1637. ],
  1638. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  1639. "homepage": "https://symfony.com",
  1640. "keywords": [
  1641. "caching",
  1642. "psr6"
  1643. ],
  1644. "support": {
  1645. "source": "https://github.com/symfony/cache/tree/v7.1.11"
  1646. },
  1647. "funding": [
  1648. {
  1649. "url": "https://symfony.com/sponsor",
  1650. "type": "custom"
  1651. },
  1652. {
  1653. "url": "https://github.com/fabpot",
  1654. "type": "github"
  1655. },
  1656. {
  1657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1658. "type": "tidelift"
  1659. }
  1660. ],
  1661. "time": "2025-01-27T10:57:12+00:00"
  1662. },
  1663. {
  1664. "name": "symfony/cache-contracts",
  1665. "version": "v3.7.0",
  1666. "source": {
  1667. "type": "git",
  1668. "url": "https://github.com/symfony/cache-contracts.git",
  1669. "reference": "225e8a254166bd3442e370c6f50145465db63831"
  1670. },
  1671. "dist": {
  1672. "type": "zip",
  1673. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/225e8a254166bd3442e370c6f50145465db63831",
  1674. "reference": "225e8a254166bd3442e370c6f50145465db63831",
  1675. "shasum": ""
  1676. },
  1677. "require": {
  1678. "php": ">=8.1",
  1679. "psr/cache": "^3.0"
  1680. },
  1681. "type": "library",
  1682. "extra": {
  1683. "thanks": {
  1684. "url": "https://github.com/symfony/contracts",
  1685. "name": "symfony/contracts"
  1686. },
  1687. "branch-alias": {
  1688. "dev-main": "3.7-dev"
  1689. }
  1690. },
  1691. "autoload": {
  1692. "psr-4": {
  1693. "Symfony\\Contracts\\Cache\\": ""
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "MIT"
  1699. ],
  1700. "authors": [
  1701. {
  1702. "name": "Nicolas Grekas",
  1703. "email": "p@tchwork.com"
  1704. },
  1705. {
  1706. "name": "Symfony Community",
  1707. "homepage": "https://symfony.com/contributors"
  1708. }
  1709. ],
  1710. "description": "Generic abstractions related to caching",
  1711. "homepage": "https://symfony.com",
  1712. "keywords": [
  1713. "abstractions",
  1714. "contracts",
  1715. "decoupling",
  1716. "interfaces",
  1717. "interoperability",
  1718. "standards"
  1719. ],
  1720. "support": {
  1721. "source": "https://github.com/symfony/cache-contracts/tree/v3.7.0"
  1722. },
  1723. "funding": [
  1724. {
  1725. "url": "https://symfony.com/sponsor",
  1726. "type": "custom"
  1727. },
  1728. {
  1729. "url": "https://github.com/fabpot",
  1730. "type": "github"
  1731. },
  1732. {
  1733. "url": "https://github.com/nicolas-grekas",
  1734. "type": "github"
  1735. },
  1736. {
  1737. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1738. "type": "tidelift"
  1739. }
  1740. ],
  1741. "time": "2026-05-05T15:33:14+00:00"
  1742. },
  1743. {
  1744. "name": "symfony/config",
  1745. "version": "v7.1.7",
  1746. "source": {
  1747. "type": "git",
  1748. "url": "https://github.com/symfony/config.git",
  1749. "reference": "dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8"
  1750. },
  1751. "dist": {
  1752. "type": "zip",
  1753. "url": "https://api.github.com/repos/symfony/config/zipball/dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8",
  1754. "reference": "dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8",
  1755. "shasum": ""
  1756. },
  1757. "require": {
  1758. "php": ">=8.2",
  1759. "symfony/deprecation-contracts": "^2.5|^3",
  1760. "symfony/filesystem": "^7.1",
  1761. "symfony/polyfill-ctype": "~1.8"
  1762. },
  1763. "conflict": {
  1764. "symfony/finder": "<6.4",
  1765. "symfony/service-contracts": "<2.5"
  1766. },
  1767. "require-dev": {
  1768. "symfony/event-dispatcher": "^6.4|^7.0",
  1769. "symfony/finder": "^6.4|^7.0",
  1770. "symfony/messenger": "^6.4|^7.0",
  1771. "symfony/service-contracts": "^2.5|^3",
  1772. "symfony/yaml": "^6.4|^7.0"
  1773. },
  1774. "type": "library",
  1775. "autoload": {
  1776. "psr-4": {
  1777. "Symfony\\Component\\Config\\": ""
  1778. },
  1779. "exclude-from-classmap": [
  1780. "/Tests/"
  1781. ]
  1782. },
  1783. "notification-url": "https://packagist.org/downloads/",
  1784. "license": [
  1785. "MIT"
  1786. ],
  1787. "authors": [
  1788. {
  1789. "name": "Fabien Potencier",
  1790. "email": "fabien@symfony.com"
  1791. },
  1792. {
  1793. "name": "Symfony Community",
  1794. "homepage": "https://symfony.com/contributors"
  1795. }
  1796. ],
  1797. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  1798. "homepage": "https://symfony.com",
  1799. "support": {
  1800. "source": "https://github.com/symfony/config/tree/v7.1.7"
  1801. },
  1802. "funding": [
  1803. {
  1804. "url": "https://symfony.com/sponsor",
  1805. "type": "custom"
  1806. },
  1807. {
  1808. "url": "https://github.com/fabpot",
  1809. "type": "github"
  1810. },
  1811. {
  1812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1813. "type": "tidelift"
  1814. }
  1815. ],
  1816. "time": "2024-11-04T11:34:07+00:00"
  1817. },
  1818. {
  1819. "name": "symfony/console",
  1820. "version": "v7.1.10",
  1821. "source": {
  1822. "type": "git",
  1823. "url": "https://github.com/symfony/console.git",
  1824. "reference": "bb06e2d7f8dd9dffe5eada8a5cbe0f68f1482db7"
  1825. },
  1826. "dist": {
  1827. "type": "zip",
  1828. "url": "https://api.github.com/repos/symfony/console/zipball/bb06e2d7f8dd9dffe5eada8a5cbe0f68f1482db7",
  1829. "reference": "bb06e2d7f8dd9dffe5eada8a5cbe0f68f1482db7",
  1830. "shasum": ""
  1831. },
  1832. "require": {
  1833. "php": ">=8.2",
  1834. "symfony/polyfill-mbstring": "~1.0",
  1835. "symfony/service-contracts": "^2.5|^3",
  1836. "symfony/string": "^6.4|^7.0"
  1837. },
  1838. "conflict": {
  1839. "symfony/dependency-injection": "<6.4",
  1840. "symfony/dotenv": "<6.4",
  1841. "symfony/event-dispatcher": "<6.4",
  1842. "symfony/lock": "<6.4",
  1843. "symfony/process": "<6.4"
  1844. },
  1845. "provide": {
  1846. "psr/log-implementation": "1.0|2.0|3.0"
  1847. },
  1848. "require-dev": {
  1849. "psr/log": "^1|^2|^3",
  1850. "symfony/config": "^6.4|^7.0",
  1851. "symfony/dependency-injection": "^6.4|^7.0",
  1852. "symfony/event-dispatcher": "^6.4|^7.0",
  1853. "symfony/http-foundation": "^6.4|^7.0",
  1854. "symfony/http-kernel": "^6.4|^7.0",
  1855. "symfony/lock": "^6.4|^7.0",
  1856. "symfony/messenger": "^6.4|^7.0",
  1857. "symfony/process": "^6.4|^7.0",
  1858. "symfony/stopwatch": "^6.4|^7.0",
  1859. "symfony/var-dumper": "^6.4|^7.0"
  1860. },
  1861. "type": "library",
  1862. "autoload": {
  1863. "psr-4": {
  1864. "Symfony\\Component\\Console\\": ""
  1865. },
  1866. "exclude-from-classmap": [
  1867. "/Tests/"
  1868. ]
  1869. },
  1870. "notification-url": "https://packagist.org/downloads/",
  1871. "license": [
  1872. "MIT"
  1873. ],
  1874. "authors": [
  1875. {
  1876. "name": "Fabien Potencier",
  1877. "email": "fabien@symfony.com"
  1878. },
  1879. {
  1880. "name": "Symfony Community",
  1881. "homepage": "https://symfony.com/contributors"
  1882. }
  1883. ],
  1884. "description": "Eases the creation of beautiful and testable command line interfaces",
  1885. "homepage": "https://symfony.com",
  1886. "keywords": [
  1887. "cli",
  1888. "command-line",
  1889. "console",
  1890. "terminal"
  1891. ],
  1892. "support": {
  1893. "source": "https://github.com/symfony/console/tree/v7.1.10"
  1894. },
  1895. "funding": [
  1896. {
  1897. "url": "https://symfony.com/sponsor",
  1898. "type": "custom"
  1899. },
  1900. {
  1901. "url": "https://github.com/fabpot",
  1902. "type": "github"
  1903. },
  1904. {
  1905. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1906. "type": "tidelift"
  1907. }
  1908. ],
  1909. "time": "2024-12-09T07:30:10+00:00"
  1910. },
  1911. {
  1912. "name": "symfony/dependency-injection",
  1913. "version": "v7.1.11",
  1914. "source": {
  1915. "type": "git",
  1916. "url": "https://github.com/symfony/dependency-injection.git",
  1917. "reference": "5ebf7d4dfda126b442450effaec421a106c010de"
  1918. },
  1919. "dist": {
  1920. "type": "zip",
  1921. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/5ebf7d4dfda126b442450effaec421a106c010de",
  1922. "reference": "5ebf7d4dfda126b442450effaec421a106c010de",
  1923. "shasum": ""
  1924. },
  1925. "require": {
  1926. "php": ">=8.2",
  1927. "psr/container": "^1.1|^2.0",
  1928. "symfony/deprecation-contracts": "^2.5|^3",
  1929. "symfony/service-contracts": "^3.5",
  1930. "symfony/var-exporter": "^6.4|^7.0"
  1931. },
  1932. "conflict": {
  1933. "ext-psr": "<1.1|>=2",
  1934. "symfony/config": "<6.4",
  1935. "symfony/finder": "<6.4",
  1936. "symfony/yaml": "<6.4"
  1937. },
  1938. "provide": {
  1939. "psr/container-implementation": "1.1|2.0",
  1940. "symfony/service-implementation": "1.1|2.0|3.0"
  1941. },
  1942. "require-dev": {
  1943. "symfony/config": "^6.4|^7.0",
  1944. "symfony/expression-language": "^6.4|^7.0",
  1945. "symfony/yaml": "^6.4|^7.0"
  1946. },
  1947. "type": "library",
  1948. "autoload": {
  1949. "psr-4": {
  1950. "Symfony\\Component\\DependencyInjection\\": ""
  1951. },
  1952. "exclude-from-classmap": [
  1953. "/Tests/"
  1954. ]
  1955. },
  1956. "notification-url": "https://packagist.org/downloads/",
  1957. "license": [
  1958. "MIT"
  1959. ],
  1960. "authors": [
  1961. {
  1962. "name": "Fabien Potencier",
  1963. "email": "fabien@symfony.com"
  1964. },
  1965. {
  1966. "name": "Symfony Community",
  1967. "homepage": "https://symfony.com/contributors"
  1968. }
  1969. ],
  1970. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  1971. "homepage": "https://symfony.com",
  1972. "support": {
  1973. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.11"
  1974. },
  1975. "funding": [
  1976. {
  1977. "url": "https://symfony.com/sponsor",
  1978. "type": "custom"
  1979. },
  1980. {
  1981. "url": "https://github.com/fabpot",
  1982. "type": "github"
  1983. },
  1984. {
  1985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1986. "type": "tidelift"
  1987. }
  1988. ],
  1989. "time": "2025-01-10T09:29:52+00:00"
  1990. },
  1991. {
  1992. "name": "symfony/deprecation-contracts",
  1993. "version": "v3.7.0",
  1994. "source": {
  1995. "type": "git",
  1996. "url": "https://github.com/symfony/deprecation-contracts.git",
  1997. "reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b"
  1998. },
  1999. "dist": {
  2000. "type": "zip",
  2001. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/50f59d1f3ca46d41ac911f97a78626b6756af35b",
  2002. "reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b",
  2003. "shasum": ""
  2004. },
  2005. "require": {
  2006. "php": ">=8.1"
  2007. },
  2008. "type": "library",
  2009. "extra": {
  2010. "thanks": {
  2011. "url": "https://github.com/symfony/contracts",
  2012. "name": "symfony/contracts"
  2013. },
  2014. "branch-alias": {
  2015. "dev-main": "3.7-dev"
  2016. }
  2017. },
  2018. "autoload": {
  2019. "files": [
  2020. "function.php"
  2021. ]
  2022. },
  2023. "notification-url": "https://packagist.org/downloads/",
  2024. "license": [
  2025. "MIT"
  2026. ],
  2027. "authors": [
  2028. {
  2029. "name": "Nicolas Grekas",
  2030. "email": "p@tchwork.com"
  2031. },
  2032. {
  2033. "name": "Symfony Community",
  2034. "homepage": "https://symfony.com/contributors"
  2035. }
  2036. ],
  2037. "description": "A generic function and convention to trigger deprecation notices",
  2038. "homepage": "https://symfony.com",
  2039. "support": {
  2040. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.7.0"
  2041. },
  2042. "funding": [
  2043. {
  2044. "url": "https://symfony.com/sponsor",
  2045. "type": "custom"
  2046. },
  2047. {
  2048. "url": "https://github.com/fabpot",
  2049. "type": "github"
  2050. },
  2051. {
  2052. "url": "https://github.com/nicolas-grekas",
  2053. "type": "github"
  2054. },
  2055. {
  2056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2057. "type": "tidelift"
  2058. }
  2059. ],
  2060. "time": "2026-04-13T15:52:40+00:00"
  2061. },
  2062. {
  2063. "name": "symfony/doctrine-bridge",
  2064. "version": "v7.1.11",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/symfony/doctrine-bridge.git",
  2068. "reference": "b0247c25b71409c23c0cf3e090030950a86cc61b"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/b0247c25b71409c23c0cf3e090030950a86cc61b",
  2073. "reference": "b0247c25b71409c23c0cf3e090030950a86cc61b",
  2074. "shasum": ""
  2075. },
  2076. "require": {
  2077. "doctrine/event-manager": "^2",
  2078. "doctrine/persistence": "^3.1|^4",
  2079. "php": ">=8.2",
  2080. "symfony/deprecation-contracts": "^2.5|^3",
  2081. "symfony/polyfill-ctype": "~1.8",
  2082. "symfony/polyfill-mbstring": "~1.0",
  2083. "symfony/service-contracts": "^2.5|^3"
  2084. },
  2085. "conflict": {
  2086. "doctrine/dbal": "<3.6",
  2087. "doctrine/lexer": "<1.1",
  2088. "doctrine/orm": "<2.15",
  2089. "symfony/cache": "<6.4",
  2090. "symfony/dependency-injection": "<6.4",
  2091. "symfony/form": "<6.4.6|>=7,<7.0.6",
  2092. "symfony/http-foundation": "<6.4",
  2093. "symfony/http-kernel": "<6.4",
  2094. "symfony/lock": "<6.4",
  2095. "symfony/messenger": "<6.4",
  2096. "symfony/property-info": "<6.4",
  2097. "symfony/security-bundle": "<6.4",
  2098. "symfony/security-core": "<6.4",
  2099. "symfony/validator": "<6.4"
  2100. },
  2101. "require-dev": {
  2102. "doctrine/collections": "^1.0|^2.0",
  2103. "doctrine/data-fixtures": "^1.1|^2",
  2104. "doctrine/dbal": "^3.6|^4",
  2105. "doctrine/orm": "^2.15|^3",
  2106. "psr/log": "^1|^2|^3",
  2107. "symfony/cache": "^6.4|^7.0",
  2108. "symfony/config": "^6.4|^7.0",
  2109. "symfony/dependency-injection": "^6.4|^7.0",
  2110. "symfony/doctrine-messenger": "^6.4|^7.0",
  2111. "symfony/expression-language": "^6.4|^7.0",
  2112. "symfony/form": "^6.4.6|^7.0.6",
  2113. "symfony/http-kernel": "^6.4|^7.0",
  2114. "symfony/lock": "^6.4|^7.0",
  2115. "symfony/messenger": "^6.4|^7.0",
  2116. "symfony/property-access": "^6.4|^7.0",
  2117. "symfony/property-info": "^6.4|^7.0",
  2118. "symfony/security-core": "^6.4|^7.0",
  2119. "symfony/stopwatch": "^6.4|^7.0",
  2120. "symfony/translation": "^6.4|^7.0",
  2121. "symfony/type-info": "^7.1",
  2122. "symfony/uid": "^6.4|^7.0",
  2123. "symfony/validator": "^6.4|^7.0",
  2124. "symfony/var-dumper": "^6.4|^7.0"
  2125. },
  2126. "type": "symfony-bridge",
  2127. "autoload": {
  2128. "psr-4": {
  2129. "Symfony\\Bridge\\Doctrine\\": ""
  2130. },
  2131. "exclude-from-classmap": [
  2132. "/Tests/"
  2133. ]
  2134. },
  2135. "notification-url": "https://packagist.org/downloads/",
  2136. "license": [
  2137. "MIT"
  2138. ],
  2139. "authors": [
  2140. {
  2141. "name": "Fabien Potencier",
  2142. "email": "fabien@symfony.com"
  2143. },
  2144. {
  2145. "name": "Symfony Community",
  2146. "homepage": "https://symfony.com/contributors"
  2147. }
  2148. ],
  2149. "description": "Provides integration for Doctrine with various Symfony components",
  2150. "homepage": "https://symfony.com",
  2151. "support": {
  2152. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.11"
  2153. },
  2154. "funding": [
  2155. {
  2156. "url": "https://symfony.com/sponsor",
  2157. "type": "custom"
  2158. },
  2159. {
  2160. "url": "https://github.com/fabpot",
  2161. "type": "github"
  2162. },
  2163. {
  2164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2165. "type": "tidelift"
  2166. }
  2167. ],
  2168. "time": "2025-01-27T10:57:12+00:00"
  2169. },
  2170. {
  2171. "name": "symfony/dotenv",
  2172. "version": "v7.1.9",
  2173. "source": {
  2174. "type": "git",
  2175. "url": "https://github.com/symfony/dotenv.git",
  2176. "reference": "245d1afe223664d2276afb75177d8988c328fb78"
  2177. },
  2178. "dist": {
  2179. "type": "zip",
  2180. "url": "https://api.github.com/repos/symfony/dotenv/zipball/245d1afe223664d2276afb75177d8988c328fb78",
  2181. "reference": "245d1afe223664d2276afb75177d8988c328fb78",
  2182. "shasum": ""
  2183. },
  2184. "require": {
  2185. "php": ">=8.2"
  2186. },
  2187. "conflict": {
  2188. "symfony/console": "<6.4",
  2189. "symfony/process": "<6.4"
  2190. },
  2191. "require-dev": {
  2192. "symfony/console": "^6.4|^7.0",
  2193. "symfony/process": "^6.4|^7.0"
  2194. },
  2195. "type": "library",
  2196. "autoload": {
  2197. "psr-4": {
  2198. "Symfony\\Component\\Dotenv\\": ""
  2199. },
  2200. "exclude-from-classmap": [
  2201. "/Tests/"
  2202. ]
  2203. },
  2204. "notification-url": "https://packagist.org/downloads/",
  2205. "license": [
  2206. "MIT"
  2207. ],
  2208. "authors": [
  2209. {
  2210. "name": "Fabien Potencier",
  2211. "email": "fabien@symfony.com"
  2212. },
  2213. {
  2214. "name": "Symfony Community",
  2215. "homepage": "https://symfony.com/contributors"
  2216. }
  2217. ],
  2218. "description": "Registers environment variables from a .env file",
  2219. "homepage": "https://symfony.com",
  2220. "keywords": [
  2221. "dotenv",
  2222. "env",
  2223. "environment"
  2224. ],
  2225. "support": {
  2226. "source": "https://github.com/symfony/dotenv/tree/v7.1.9"
  2227. },
  2228. "funding": [
  2229. {
  2230. "url": "https://symfony.com/sponsor",
  2231. "type": "custom"
  2232. },
  2233. {
  2234. "url": "https://github.com/fabpot",
  2235. "type": "github"
  2236. },
  2237. {
  2238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2239. "type": "tidelift"
  2240. }
  2241. ],
  2242. "time": "2024-11-27T11:17:28+00:00"
  2243. },
  2244. {
  2245. "name": "symfony/error-handler",
  2246. "version": "v7.1.11",
  2247. "source": {
  2248. "type": "git",
  2249. "url": "https://github.com/symfony/error-handler.git",
  2250. "reference": "f4d1fd1bcb4bce9983d034111b7ea3edc88e1a57"
  2251. },
  2252. "dist": {
  2253. "type": "zip",
  2254. "url": "https://api.github.com/repos/symfony/error-handler/zipball/f4d1fd1bcb4bce9983d034111b7ea3edc88e1a57",
  2255. "reference": "f4d1fd1bcb4bce9983d034111b7ea3edc88e1a57",
  2256. "shasum": ""
  2257. },
  2258. "require": {
  2259. "php": ">=8.2",
  2260. "psr/log": "^1|^2|^3",
  2261. "symfony/var-dumper": "^6.4|^7.0"
  2262. },
  2263. "conflict": {
  2264. "symfony/deprecation-contracts": "<2.5",
  2265. "symfony/http-kernel": "<6.4"
  2266. },
  2267. "require-dev": {
  2268. "symfony/deprecation-contracts": "^2.5|^3",
  2269. "symfony/http-kernel": "^6.4|^7.0",
  2270. "symfony/serializer": "^6.4|^7.0"
  2271. },
  2272. "bin": [
  2273. "Resources/bin/patch-type-declarations"
  2274. ],
  2275. "type": "library",
  2276. "autoload": {
  2277. "psr-4": {
  2278. "Symfony\\Component\\ErrorHandler\\": ""
  2279. },
  2280. "exclude-from-classmap": [
  2281. "/Tests/"
  2282. ]
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "MIT"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "Fabien Potencier",
  2291. "email": "fabien@symfony.com"
  2292. },
  2293. {
  2294. "name": "Symfony Community",
  2295. "homepage": "https://symfony.com/contributors"
  2296. }
  2297. ],
  2298. "description": "Provides tools to manage errors and ease debugging PHP code",
  2299. "homepage": "https://symfony.com",
  2300. "support": {
  2301. "source": "https://github.com/symfony/error-handler/tree/v7.1.11"
  2302. },
  2303. "funding": [
  2304. {
  2305. "url": "https://symfony.com/sponsor",
  2306. "type": "custom"
  2307. },
  2308. {
  2309. "url": "https://github.com/fabpot",
  2310. "type": "github"
  2311. },
  2312. {
  2313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2314. "type": "tidelift"
  2315. }
  2316. ],
  2317. "time": "2025-01-07T09:23:14+00:00"
  2318. },
  2319. {
  2320. "name": "symfony/event-dispatcher",
  2321. "version": "v7.1.6",
  2322. "source": {
  2323. "type": "git",
  2324. "url": "https://github.com/symfony/event-dispatcher.git",
  2325. "reference": "87254c78dd50721cfd015b62277a8281c5589702"
  2326. },
  2327. "dist": {
  2328. "type": "zip",
  2329. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
  2330. "reference": "87254c78dd50721cfd015b62277a8281c5589702",
  2331. "shasum": ""
  2332. },
  2333. "require": {
  2334. "php": ">=8.2",
  2335. "symfony/event-dispatcher-contracts": "^2.5|^3"
  2336. },
  2337. "conflict": {
  2338. "symfony/dependency-injection": "<6.4",
  2339. "symfony/service-contracts": "<2.5"
  2340. },
  2341. "provide": {
  2342. "psr/event-dispatcher-implementation": "1.0",
  2343. "symfony/event-dispatcher-implementation": "2.0|3.0"
  2344. },
  2345. "require-dev": {
  2346. "psr/log": "^1|^2|^3",
  2347. "symfony/config": "^6.4|^7.0",
  2348. "symfony/dependency-injection": "^6.4|^7.0",
  2349. "symfony/error-handler": "^6.4|^7.0",
  2350. "symfony/expression-language": "^6.4|^7.0",
  2351. "symfony/http-foundation": "^6.4|^7.0",
  2352. "symfony/service-contracts": "^2.5|^3",
  2353. "symfony/stopwatch": "^6.4|^7.0"
  2354. },
  2355. "type": "library",
  2356. "autoload": {
  2357. "psr-4": {
  2358. "Symfony\\Component\\EventDispatcher\\": ""
  2359. },
  2360. "exclude-from-classmap": [
  2361. "/Tests/"
  2362. ]
  2363. },
  2364. "notification-url": "https://packagist.org/downloads/",
  2365. "license": [
  2366. "MIT"
  2367. ],
  2368. "authors": [
  2369. {
  2370. "name": "Fabien Potencier",
  2371. "email": "fabien@symfony.com"
  2372. },
  2373. {
  2374. "name": "Symfony Community",
  2375. "homepage": "https://symfony.com/contributors"
  2376. }
  2377. ],
  2378. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2379. "homepage": "https://symfony.com",
  2380. "support": {
  2381. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
  2382. },
  2383. "funding": [
  2384. {
  2385. "url": "https://symfony.com/sponsor",
  2386. "type": "custom"
  2387. },
  2388. {
  2389. "url": "https://github.com/fabpot",
  2390. "type": "github"
  2391. },
  2392. {
  2393. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2394. "type": "tidelift"
  2395. }
  2396. ],
  2397. "time": "2024-09-25T14:20:29+00:00"
  2398. },
  2399. {
  2400. "name": "symfony/event-dispatcher-contracts",
  2401. "version": "v3.7.0",
  2402. "source": {
  2403. "type": "git",
  2404. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2405. "reference": "ccba7060602b7fed0b03c85bf025257f76d9ef32"
  2406. },
  2407. "dist": {
  2408. "type": "zip",
  2409. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/ccba7060602b7fed0b03c85bf025257f76d9ef32",
  2410. "reference": "ccba7060602b7fed0b03c85bf025257f76d9ef32",
  2411. "shasum": ""
  2412. },
  2413. "require": {
  2414. "php": ">=8.1",
  2415. "psr/event-dispatcher": "^1"
  2416. },
  2417. "type": "library",
  2418. "extra": {
  2419. "thanks": {
  2420. "url": "https://github.com/symfony/contracts",
  2421. "name": "symfony/contracts"
  2422. },
  2423. "branch-alias": {
  2424. "dev-main": "3.7-dev"
  2425. }
  2426. },
  2427. "autoload": {
  2428. "psr-4": {
  2429. "Symfony\\Contracts\\EventDispatcher\\": ""
  2430. }
  2431. },
  2432. "notification-url": "https://packagist.org/downloads/",
  2433. "license": [
  2434. "MIT"
  2435. ],
  2436. "authors": [
  2437. {
  2438. "name": "Nicolas Grekas",
  2439. "email": "p@tchwork.com"
  2440. },
  2441. {
  2442. "name": "Symfony Community",
  2443. "homepage": "https://symfony.com/contributors"
  2444. }
  2445. ],
  2446. "description": "Generic abstractions related to dispatching event",
  2447. "homepage": "https://symfony.com",
  2448. "keywords": [
  2449. "abstractions",
  2450. "contracts",
  2451. "decoupling",
  2452. "interfaces",
  2453. "interoperability",
  2454. "standards"
  2455. ],
  2456. "support": {
  2457. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.7.0"
  2458. },
  2459. "funding": [
  2460. {
  2461. "url": "https://symfony.com/sponsor",
  2462. "type": "custom"
  2463. },
  2464. {
  2465. "url": "https://github.com/fabpot",
  2466. "type": "github"
  2467. },
  2468. {
  2469. "url": "https://github.com/nicolas-grekas",
  2470. "type": "github"
  2471. },
  2472. {
  2473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2474. "type": "tidelift"
  2475. }
  2476. ],
  2477. "time": "2026-01-05T13:30:16+00:00"
  2478. },
  2479. {
  2480. "name": "symfony/filesystem",
  2481. "version": "v7.1.6",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://github.com/symfony/filesystem.git",
  2485. "reference": "c835867b3c62bb05c7fe3d637c871c7ae52024d4"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://api.github.com/repos/symfony/filesystem/zipball/c835867b3c62bb05c7fe3d637c871c7ae52024d4",
  2490. "reference": "c835867b3c62bb05c7fe3d637c871c7ae52024d4",
  2491. "shasum": ""
  2492. },
  2493. "require": {
  2494. "php": ">=8.2",
  2495. "symfony/polyfill-ctype": "~1.8",
  2496. "symfony/polyfill-mbstring": "~1.8"
  2497. },
  2498. "require-dev": {
  2499. "symfony/process": "^6.4|^7.0"
  2500. },
  2501. "type": "library",
  2502. "autoload": {
  2503. "psr-4": {
  2504. "Symfony\\Component\\Filesystem\\": ""
  2505. },
  2506. "exclude-from-classmap": [
  2507. "/Tests/"
  2508. ]
  2509. },
  2510. "notification-url": "https://packagist.org/downloads/",
  2511. "license": [
  2512. "MIT"
  2513. ],
  2514. "authors": [
  2515. {
  2516. "name": "Fabien Potencier",
  2517. "email": "fabien@symfony.com"
  2518. },
  2519. {
  2520. "name": "Symfony Community",
  2521. "homepage": "https://symfony.com/contributors"
  2522. }
  2523. ],
  2524. "description": "Provides basic utilities for the filesystem",
  2525. "homepage": "https://symfony.com",
  2526. "support": {
  2527. "source": "https://github.com/symfony/filesystem/tree/v7.1.6"
  2528. },
  2529. "funding": [
  2530. {
  2531. "url": "https://symfony.com/sponsor",
  2532. "type": "custom"
  2533. },
  2534. {
  2535. "url": "https://github.com/fabpot",
  2536. "type": "github"
  2537. },
  2538. {
  2539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2540. "type": "tidelift"
  2541. }
  2542. ],
  2543. "time": "2024-10-25T15:11:02+00:00"
  2544. },
  2545. {
  2546. "name": "symfony/finder",
  2547. "version": "v7.1.10",
  2548. "source": {
  2549. "type": "git",
  2550. "url": "https://github.com/symfony/finder.git",
  2551. "reference": "b8b526e051ac0b33feabbec7893adcab96b23bf3"
  2552. },
  2553. "dist": {
  2554. "type": "zip",
  2555. "url": "https://api.github.com/repos/symfony/finder/zipball/b8b526e051ac0b33feabbec7893adcab96b23bf3",
  2556. "reference": "b8b526e051ac0b33feabbec7893adcab96b23bf3",
  2557. "shasum": ""
  2558. },
  2559. "require": {
  2560. "php": ">=8.2"
  2561. },
  2562. "require-dev": {
  2563. "symfony/filesystem": "^6.4|^7.0"
  2564. },
  2565. "type": "library",
  2566. "autoload": {
  2567. "psr-4": {
  2568. "Symfony\\Component\\Finder\\": ""
  2569. },
  2570. "exclude-from-classmap": [
  2571. "/Tests/"
  2572. ]
  2573. },
  2574. "notification-url": "https://packagist.org/downloads/",
  2575. "license": [
  2576. "MIT"
  2577. ],
  2578. "authors": [
  2579. {
  2580. "name": "Fabien Potencier",
  2581. "email": "fabien@symfony.com"
  2582. },
  2583. {
  2584. "name": "Symfony Community",
  2585. "homepage": "https://symfony.com/contributors"
  2586. }
  2587. ],
  2588. "description": "Finds files and directories via an intuitive fluent interface",
  2589. "homepage": "https://symfony.com",
  2590. "support": {
  2591. "source": "https://github.com/symfony/finder/tree/v7.1.10"
  2592. },
  2593. "funding": [
  2594. {
  2595. "url": "https://symfony.com/sponsor",
  2596. "type": "custom"
  2597. },
  2598. {
  2599. "url": "https://github.com/fabpot",
  2600. "type": "github"
  2601. },
  2602. {
  2603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2604. "type": "tidelift"
  2605. }
  2606. ],
  2607. "time": "2024-12-30T18:59:46+00:00"
  2608. },
  2609. {
  2610. "name": "symfony/flex",
  2611. "version": "v2.11.0",
  2612. "source": {
  2613. "type": "git",
  2614. "url": "https://github.com/symfony/flex.git",
  2615. "reference": "4a6d98eea3ebc7f68d82810cb682eedca2649e99"
  2616. },
  2617. "dist": {
  2618. "type": "zip",
  2619. "url": "https://api.github.com/repos/symfony/flex/zipball/4a6d98eea3ebc7f68d82810cb682eedca2649e99",
  2620. "reference": "4a6d98eea3ebc7f68d82810cb682eedca2649e99",
  2621. "shasum": ""
  2622. },
  2623. "require": {
  2624. "composer-plugin-api": "^2.1",
  2625. "php": ">=8.1"
  2626. },
  2627. "conflict": {
  2628. "composer/semver": "<1.7.2",
  2629. "symfony/dotenv": "<5.4"
  2630. },
  2631. "require-dev": {
  2632. "composer/composer": "^2.1",
  2633. "phpunit/phpunit": "^12.4",
  2634. "symfony/dotenv": "^6.4.41|^7.4.13|^8.0.13",
  2635. "symfony/filesystem": "^6.4|^7.4|^8.0",
  2636. "symfony/process": "^6.4|^7.4|^8.0"
  2637. },
  2638. "type": "composer-plugin",
  2639. "extra": {
  2640. "class": "Symfony\\Flex\\Flex"
  2641. },
  2642. "autoload": {
  2643. "psr-4": {
  2644. "Symfony\\Flex\\": "src"
  2645. }
  2646. },
  2647. "notification-url": "https://packagist.org/downloads/",
  2648. "license": [
  2649. "MIT"
  2650. ],
  2651. "authors": [
  2652. {
  2653. "name": "Fabien Potencier",
  2654. "email": "fabien.potencier@gmail.com"
  2655. }
  2656. ],
  2657. "description": "Composer plugin for Symfony",
  2658. "support": {
  2659. "issues": "https://github.com/symfony/flex/issues",
  2660. "source": "https://github.com/symfony/flex/tree/v2.11.0"
  2661. },
  2662. "funding": [
  2663. {
  2664. "url": "https://symfony.com/sponsor",
  2665. "type": "custom"
  2666. },
  2667. {
  2668. "url": "https://github.com/fabpot",
  2669. "type": "github"
  2670. },
  2671. {
  2672. "url": "https://github.com/nicolas-grekas",
  2673. "type": "github"
  2674. },
  2675. {
  2676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2677. "type": "tidelift"
  2678. }
  2679. ],
  2680. "time": "2026-05-29T17:25:22+00:00"
  2681. },
  2682. {
  2683. "name": "symfony/framework-bundle",
  2684. "version": "v7.1.11",
  2685. "source": {
  2686. "type": "git",
  2687. "url": "https://github.com/symfony/framework-bundle.git",
  2688. "reference": "1eae7a4e095a2a3851cb41ac2aea9aa60fba1df8"
  2689. },
  2690. "dist": {
  2691. "type": "zip",
  2692. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/1eae7a4e095a2a3851cb41ac2aea9aa60fba1df8",
  2693. "reference": "1eae7a4e095a2a3851cb41ac2aea9aa60fba1df8",
  2694. "shasum": ""
  2695. },
  2696. "require": {
  2697. "composer-runtime-api": ">=2.1",
  2698. "ext-xml": "*",
  2699. "php": ">=8.2",
  2700. "symfony/cache": "^6.4|^7.0",
  2701. "symfony/config": "^6.4|^7.0",
  2702. "symfony/dependency-injection": "^7.1.5",
  2703. "symfony/deprecation-contracts": "^2.5|^3",
  2704. "symfony/error-handler": "^6.4|^7.0",
  2705. "symfony/event-dispatcher": "^6.4|^7.0",
  2706. "symfony/filesystem": "^7.1",
  2707. "symfony/finder": "^6.4|^7.0",
  2708. "symfony/http-foundation": "^6.4|^7.0",
  2709. "symfony/http-kernel": "^6.4|^7.0",
  2710. "symfony/polyfill-mbstring": "~1.0",
  2711. "symfony/routing": "^6.4|^7.0"
  2712. },
  2713. "conflict": {
  2714. "doctrine/persistence": "<1.3",
  2715. "phpdocumentor/reflection-docblock": "<3.2.2",
  2716. "phpdocumentor/type-resolver": "<1.4.0",
  2717. "symfony/asset": "<6.4",
  2718. "symfony/asset-mapper": "<6.4",
  2719. "symfony/clock": "<6.4",
  2720. "symfony/console": "<6.4",
  2721. "symfony/dom-crawler": "<6.4",
  2722. "symfony/dotenv": "<6.4",
  2723. "symfony/form": "<6.4",
  2724. "symfony/http-client": "<6.4",
  2725. "symfony/lock": "<6.4",
  2726. "symfony/mailer": "<6.4",
  2727. "symfony/messenger": "<6.4",
  2728. "symfony/mime": "<6.4",
  2729. "symfony/property-access": "<6.4",
  2730. "symfony/property-info": "<6.4",
  2731. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  2732. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  2733. "symfony/security-core": "<6.4",
  2734. "symfony/security-csrf": "<6.4",
  2735. "symfony/serializer": "<6.4",
  2736. "symfony/stopwatch": "<6.4",
  2737. "symfony/translation": "<6.4",
  2738. "symfony/twig-bridge": "<6.4",
  2739. "symfony/twig-bundle": "<6.4",
  2740. "symfony/validator": "<6.4",
  2741. "symfony/web-profiler-bundle": "<6.4",
  2742. "symfony/workflow": "<6.4"
  2743. },
  2744. "require-dev": {
  2745. "doctrine/persistence": "^1.3|^2|^3",
  2746. "dragonmantank/cron-expression": "^3.1",
  2747. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  2748. "seld/jsonlint": "^1.10",
  2749. "symfony/asset": "^6.4|^7.0",
  2750. "symfony/asset-mapper": "^6.4|^7.0",
  2751. "symfony/browser-kit": "^6.4|^7.0",
  2752. "symfony/clock": "^6.4|^7.0",
  2753. "symfony/console": "^6.4|^7.0",
  2754. "symfony/css-selector": "^6.4|^7.0",
  2755. "symfony/dom-crawler": "^6.4|^7.0",
  2756. "symfony/dotenv": "^6.4|^7.0",
  2757. "symfony/expression-language": "^6.4|^7.0",
  2758. "symfony/form": "^6.4|^7.0",
  2759. "symfony/html-sanitizer": "^6.4|^7.0",
  2760. "symfony/http-client": "^6.4|^7.0",
  2761. "symfony/lock": "^6.4|^7.0",
  2762. "symfony/mailer": "^6.4|^7.0",
  2763. "symfony/messenger": "^6.4|^7.0",
  2764. "symfony/mime": "^6.4|^7.0",
  2765. "symfony/notifier": "^6.4|^7.0",
  2766. "symfony/polyfill-intl-icu": "~1.0",
  2767. "symfony/process": "^6.4|^7.0",
  2768. "symfony/property-info": "^6.4|^7.0",
  2769. "symfony/rate-limiter": "^6.4|^7.0",
  2770. "symfony/scheduler": "^6.4.4|^7.0.4",
  2771. "symfony/security-bundle": "^6.4|^7.0",
  2772. "symfony/semaphore": "^6.4|^7.0",
  2773. "symfony/serializer": "^6.4|^7.0",
  2774. "symfony/stopwatch": "^6.4|^7.0",
  2775. "symfony/string": "^6.4|^7.0",
  2776. "symfony/translation": "^6.4|^7.0",
  2777. "symfony/twig-bundle": "^6.4|^7.0",
  2778. "symfony/type-info": "^7.1",
  2779. "symfony/uid": "^6.4|^7.0",
  2780. "symfony/validator": "^6.4|^7.0",
  2781. "symfony/web-link": "^6.4|^7.0",
  2782. "symfony/workflow": "^6.4|^7.0",
  2783. "symfony/yaml": "^6.4|^7.0",
  2784. "twig/twig": "^3.0.4"
  2785. },
  2786. "type": "symfony-bundle",
  2787. "autoload": {
  2788. "psr-4": {
  2789. "Symfony\\Bundle\\FrameworkBundle\\": ""
  2790. },
  2791. "exclude-from-classmap": [
  2792. "/Tests/"
  2793. ]
  2794. },
  2795. "notification-url": "https://packagist.org/downloads/",
  2796. "license": [
  2797. "MIT"
  2798. ],
  2799. "authors": [
  2800. {
  2801. "name": "Fabien Potencier",
  2802. "email": "fabien@symfony.com"
  2803. },
  2804. {
  2805. "name": "Symfony Community",
  2806. "homepage": "https://symfony.com/contributors"
  2807. }
  2808. ],
  2809. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  2810. "homepage": "https://symfony.com",
  2811. "support": {
  2812. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.11"
  2813. },
  2814. "funding": [
  2815. {
  2816. "url": "https://symfony.com/sponsor",
  2817. "type": "custom"
  2818. },
  2819. {
  2820. "url": "https://github.com/fabpot",
  2821. "type": "github"
  2822. },
  2823. {
  2824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2825. "type": "tidelift"
  2826. }
  2827. ],
  2828. "time": "2025-01-29T07:13:42+00:00"
  2829. },
  2830. {
  2831. "name": "symfony/http-client",
  2832. "version": "v7.1.11",
  2833. "source": {
  2834. "type": "git",
  2835. "url": "https://github.com/symfony/http-client.git",
  2836. "reference": "71632c1f13b36cb4c23ccdd255946dc02753afef"
  2837. },
  2838. "dist": {
  2839. "type": "zip",
  2840. "url": "https://api.github.com/repos/symfony/http-client/zipball/71632c1f13b36cb4c23ccdd255946dc02753afef",
  2841. "reference": "71632c1f13b36cb4c23ccdd255946dc02753afef",
  2842. "shasum": ""
  2843. },
  2844. "require": {
  2845. "php": ">=8.2",
  2846. "psr/log": "^1|^2|^3",
  2847. "symfony/deprecation-contracts": "^2.5|^3",
  2848. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  2849. "symfony/service-contracts": "^2.5|^3"
  2850. },
  2851. "conflict": {
  2852. "php-http/discovery": "<1.15",
  2853. "symfony/http-foundation": "<6.4"
  2854. },
  2855. "provide": {
  2856. "php-http/async-client-implementation": "*",
  2857. "php-http/client-implementation": "*",
  2858. "psr/http-client-implementation": "1.0",
  2859. "symfony/http-client-implementation": "3.0"
  2860. },
  2861. "require-dev": {
  2862. "amphp/amp": "^2.5",
  2863. "amphp/http-client": "^4.2.1",
  2864. "amphp/http-tunnel": "^1.0",
  2865. "amphp/socket": "^1.1",
  2866. "guzzlehttp/promises": "^1.4|^2.0",
  2867. "nyholm/psr7": "^1.0",
  2868. "php-http/httplug": "^1.0|^2.0",
  2869. "psr/http-client": "^1.0",
  2870. "symfony/dependency-injection": "^6.4|^7.0",
  2871. "symfony/http-kernel": "^6.4|^7.0",
  2872. "symfony/messenger": "^6.4|^7.0",
  2873. "symfony/process": "^6.4|^7.0",
  2874. "symfony/rate-limiter": "^6.4|^7.0",
  2875. "symfony/stopwatch": "^6.4|^7.0"
  2876. },
  2877. "type": "library",
  2878. "autoload": {
  2879. "psr-4": {
  2880. "Symfony\\Component\\HttpClient\\": ""
  2881. },
  2882. "exclude-from-classmap": [
  2883. "/Tests/"
  2884. ]
  2885. },
  2886. "notification-url": "https://packagist.org/downloads/",
  2887. "license": [
  2888. "MIT"
  2889. ],
  2890. "authors": [
  2891. {
  2892. "name": "Nicolas Grekas",
  2893. "email": "p@tchwork.com"
  2894. },
  2895. {
  2896. "name": "Symfony Community",
  2897. "homepage": "https://symfony.com/contributors"
  2898. }
  2899. ],
  2900. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  2901. "homepage": "https://symfony.com",
  2902. "keywords": [
  2903. "http"
  2904. ],
  2905. "support": {
  2906. "source": "https://github.com/symfony/http-client/tree/v7.1.11"
  2907. },
  2908. "funding": [
  2909. {
  2910. "url": "https://symfony.com/sponsor",
  2911. "type": "custom"
  2912. },
  2913. {
  2914. "url": "https://github.com/fabpot",
  2915. "type": "github"
  2916. },
  2917. {
  2918. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2919. "type": "tidelift"
  2920. }
  2921. ],
  2922. "time": "2025-01-28T15:50:57+00:00"
  2923. },
  2924. {
  2925. "name": "symfony/http-client-contracts",
  2926. "version": "v3.7.0",
  2927. "source": {
  2928. "type": "git",
  2929. "url": "https://github.com/symfony/http-client-contracts.git",
  2930. "reference": "4a2d00c37651c0bdc2b9e1c773487a8bf4edb12d"
  2931. },
  2932. "dist": {
  2933. "type": "zip",
  2934. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/4a2d00c37651c0bdc2b9e1c773487a8bf4edb12d",
  2935. "reference": "4a2d00c37651c0bdc2b9e1c773487a8bf4edb12d",
  2936. "shasum": ""
  2937. },
  2938. "require": {
  2939. "php": ">=8.1"
  2940. },
  2941. "type": "library",
  2942. "extra": {
  2943. "thanks": {
  2944. "url": "https://github.com/symfony/contracts",
  2945. "name": "symfony/contracts"
  2946. },
  2947. "branch-alias": {
  2948. "dev-main": "3.7-dev"
  2949. }
  2950. },
  2951. "autoload": {
  2952. "psr-4": {
  2953. "Symfony\\Contracts\\HttpClient\\": ""
  2954. },
  2955. "exclude-from-classmap": [
  2956. "/Test/"
  2957. ]
  2958. },
  2959. "notification-url": "https://packagist.org/downloads/",
  2960. "license": [
  2961. "MIT"
  2962. ],
  2963. "authors": [
  2964. {
  2965. "name": "Nicolas Grekas",
  2966. "email": "p@tchwork.com"
  2967. },
  2968. {
  2969. "name": "Symfony Community",
  2970. "homepage": "https://symfony.com/contributors"
  2971. }
  2972. ],
  2973. "description": "Generic abstractions related to HTTP clients",
  2974. "homepage": "https://symfony.com",
  2975. "keywords": [
  2976. "abstractions",
  2977. "contracts",
  2978. "decoupling",
  2979. "interfaces",
  2980. "interoperability",
  2981. "standards"
  2982. ],
  2983. "support": {
  2984. "source": "https://github.com/symfony/http-client-contracts/tree/v3.7.0"
  2985. },
  2986. "funding": [
  2987. {
  2988. "url": "https://symfony.com/sponsor",
  2989. "type": "custom"
  2990. },
  2991. {
  2992. "url": "https://github.com/fabpot",
  2993. "type": "github"
  2994. },
  2995. {
  2996. "url": "https://github.com/nicolas-grekas",
  2997. "type": "github"
  2998. },
  2999. {
  3000. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3001. "type": "tidelift"
  3002. }
  3003. ],
  3004. "time": "2026-03-06T13:17:50+00:00"
  3005. },
  3006. {
  3007. "name": "symfony/http-foundation",
  3008. "version": "v7.1.11",
  3009. "source": {
  3010. "type": "git",
  3011. "url": "https://github.com/symfony/http-foundation.git",
  3012. "reference": "7ced01aa123612666a7a4fb72c627f969c01fa8d"
  3013. },
  3014. "dist": {
  3015. "type": "zip",
  3016. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/7ced01aa123612666a7a4fb72c627f969c01fa8d",
  3017. "reference": "7ced01aa123612666a7a4fb72c627f969c01fa8d",
  3018. "shasum": ""
  3019. },
  3020. "require": {
  3021. "php": ">=8.2",
  3022. "symfony/polyfill-mbstring": "~1.1",
  3023. "symfony/polyfill-php83": "^1.27"
  3024. },
  3025. "conflict": {
  3026. "doctrine/dbal": "<3.6",
  3027. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  3028. },
  3029. "require-dev": {
  3030. "doctrine/dbal": "^3.6|^4",
  3031. "predis/predis": "^1.1|^2.0",
  3032. "symfony/cache": "^6.4.12|^7.1.5",
  3033. "symfony/dependency-injection": "^6.4|^7.0",
  3034. "symfony/expression-language": "^6.4|^7.0",
  3035. "symfony/http-kernel": "^6.4|^7.0",
  3036. "symfony/mime": "^6.4|^7.0",
  3037. "symfony/rate-limiter": "^6.4|^7.0"
  3038. },
  3039. "type": "library",
  3040. "autoload": {
  3041. "psr-4": {
  3042. "Symfony\\Component\\HttpFoundation\\": ""
  3043. },
  3044. "exclude-from-classmap": [
  3045. "/Tests/"
  3046. ]
  3047. },
  3048. "notification-url": "https://packagist.org/downloads/",
  3049. "license": [
  3050. "MIT"
  3051. ],
  3052. "authors": [
  3053. {
  3054. "name": "Fabien Potencier",
  3055. "email": "fabien@symfony.com"
  3056. },
  3057. {
  3058. "name": "Symfony Community",
  3059. "homepage": "https://symfony.com/contributors"
  3060. }
  3061. ],
  3062. "description": "Defines an object-oriented layer for the HTTP specification",
  3063. "homepage": "https://symfony.com",
  3064. "support": {
  3065. "source": "https://github.com/symfony/http-foundation/tree/v7.1.11"
  3066. },
  3067. "funding": [
  3068. {
  3069. "url": "https://symfony.com/sponsor",
  3070. "type": "custom"
  3071. },
  3072. {
  3073. "url": "https://github.com/fabpot",
  3074. "type": "github"
  3075. },
  3076. {
  3077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3078. "type": "tidelift"
  3079. }
  3080. ],
  3081. "time": "2025-01-17T10:33:21+00:00"
  3082. },
  3083. {
  3084. "name": "symfony/http-kernel",
  3085. "version": "v7.1.11",
  3086. "source": {
  3087. "type": "git",
  3088. "url": "https://github.com/symfony/http-kernel.git",
  3089. "reference": "576eb3368037dd139f67b8ac71db56c3f69f7d66"
  3090. },
  3091. "dist": {
  3092. "type": "zip",
  3093. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/576eb3368037dd139f67b8ac71db56c3f69f7d66",
  3094. "reference": "576eb3368037dd139f67b8ac71db56c3f69f7d66",
  3095. "shasum": ""
  3096. },
  3097. "require": {
  3098. "php": ">=8.2",
  3099. "psr/log": "^1|^2|^3",
  3100. "symfony/deprecation-contracts": "^2.5|^3",
  3101. "symfony/error-handler": "^6.4|^7.0",
  3102. "symfony/event-dispatcher": "^6.4|^7.0",
  3103. "symfony/http-foundation": "^6.4|^7.0",
  3104. "symfony/polyfill-ctype": "^1.8"
  3105. },
  3106. "conflict": {
  3107. "symfony/browser-kit": "<6.4",
  3108. "symfony/cache": "<6.4",
  3109. "symfony/config": "<6.4",
  3110. "symfony/console": "<6.4",
  3111. "symfony/dependency-injection": "<6.4",
  3112. "symfony/doctrine-bridge": "<6.4",
  3113. "symfony/form": "<6.4",
  3114. "symfony/http-client": "<6.4",
  3115. "symfony/http-client-contracts": "<2.5",
  3116. "symfony/mailer": "<6.4",
  3117. "symfony/messenger": "<6.4",
  3118. "symfony/translation": "<6.4",
  3119. "symfony/translation-contracts": "<2.5",
  3120. "symfony/twig-bridge": "<6.4",
  3121. "symfony/validator": "<6.4",
  3122. "symfony/var-dumper": "<6.4",
  3123. "twig/twig": "<3.0.4"
  3124. },
  3125. "provide": {
  3126. "psr/log-implementation": "1.0|2.0|3.0"
  3127. },
  3128. "require-dev": {
  3129. "psr/cache": "^1.0|^2.0|^3.0",
  3130. "symfony/browser-kit": "^6.4|^7.0",
  3131. "symfony/clock": "^6.4|^7.0",
  3132. "symfony/config": "^6.4|^7.0",
  3133. "symfony/console": "^6.4|^7.0",
  3134. "symfony/css-selector": "^6.4|^7.0",
  3135. "symfony/dependency-injection": "^6.4|^7.0",
  3136. "symfony/dom-crawler": "^6.4|^7.0",
  3137. "symfony/expression-language": "^6.4|^7.0",
  3138. "symfony/finder": "^6.4|^7.0",
  3139. "symfony/http-client-contracts": "^2.5|^3",
  3140. "symfony/process": "^6.4|^7.0",
  3141. "symfony/property-access": "^7.1",
  3142. "symfony/routing": "^6.4|^7.0",
  3143. "symfony/serializer": "^7.1",
  3144. "symfony/stopwatch": "^6.4|^7.0",
  3145. "symfony/translation": "^6.4|^7.0",
  3146. "symfony/translation-contracts": "^2.5|^3",
  3147. "symfony/uid": "^6.4|^7.0",
  3148. "symfony/validator": "^6.4|^7.0",
  3149. "symfony/var-dumper": "^6.4|^7.0",
  3150. "symfony/var-exporter": "^6.4|^7.0",
  3151. "twig/twig": "^3.0.4"
  3152. },
  3153. "type": "library",
  3154. "autoload": {
  3155. "psr-4": {
  3156. "Symfony\\Component\\HttpKernel\\": ""
  3157. },
  3158. "exclude-from-classmap": [
  3159. "/Tests/"
  3160. ]
  3161. },
  3162. "notification-url": "https://packagist.org/downloads/",
  3163. "license": [
  3164. "MIT"
  3165. ],
  3166. "authors": [
  3167. {
  3168. "name": "Fabien Potencier",
  3169. "email": "fabien@symfony.com"
  3170. },
  3171. {
  3172. "name": "Symfony Community",
  3173. "homepage": "https://symfony.com/contributors"
  3174. }
  3175. ],
  3176. "description": "Provides a structured process for converting a Request into a Response",
  3177. "homepage": "https://symfony.com",
  3178. "support": {
  3179. "source": "https://github.com/symfony/http-kernel/tree/v7.1.11"
  3180. },
  3181. "funding": [
  3182. {
  3183. "url": "https://symfony.com/sponsor",
  3184. "type": "custom"
  3185. },
  3186. {
  3187. "url": "https://github.com/fabpot",
  3188. "type": "github"
  3189. },
  3190. {
  3191. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3192. "type": "tidelift"
  3193. }
  3194. ],
  3195. "time": "2025-01-29T07:34:05+00:00"
  3196. },
  3197. {
  3198. "name": "symfony/mime",
  3199. "version": "v7.1.11",
  3200. "source": {
  3201. "type": "git",
  3202. "url": "https://github.com/symfony/mime.git",
  3203. "reference": "c252e20d1179dd35a5bfdb4a61a2084387ce97f4"
  3204. },
  3205. "dist": {
  3206. "type": "zip",
  3207. "url": "https://api.github.com/repos/symfony/mime/zipball/c252e20d1179dd35a5bfdb4a61a2084387ce97f4",
  3208. "reference": "c252e20d1179dd35a5bfdb4a61a2084387ce97f4",
  3209. "shasum": ""
  3210. },
  3211. "require": {
  3212. "php": ">=8.2",
  3213. "symfony/polyfill-intl-idn": "^1.10",
  3214. "symfony/polyfill-mbstring": "^1.0"
  3215. },
  3216. "conflict": {
  3217. "egulias/email-validator": "~3.0.0",
  3218. "phpdocumentor/reflection-docblock": "<3.2.2",
  3219. "phpdocumentor/type-resolver": "<1.4.0",
  3220. "symfony/mailer": "<6.4",
  3221. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  3222. },
  3223. "require-dev": {
  3224. "egulias/email-validator": "^2.1.10|^3.1|^4",
  3225. "league/html-to-markdown": "^5.0",
  3226. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3227. "symfony/dependency-injection": "^6.4|^7.0",
  3228. "symfony/process": "^6.4|^7.0",
  3229. "symfony/property-access": "^6.4|^7.0",
  3230. "symfony/property-info": "^6.4|^7.0",
  3231. "symfony/serializer": "^6.4.3|^7.0.3"
  3232. },
  3233. "type": "library",
  3234. "autoload": {
  3235. "psr-4": {
  3236. "Symfony\\Component\\Mime\\": ""
  3237. },
  3238. "exclude-from-classmap": [
  3239. "/Tests/"
  3240. ]
  3241. },
  3242. "notification-url": "https://packagist.org/downloads/",
  3243. "license": [
  3244. "MIT"
  3245. ],
  3246. "authors": [
  3247. {
  3248. "name": "Fabien Potencier",
  3249. "email": "fabien@symfony.com"
  3250. },
  3251. {
  3252. "name": "Symfony Community",
  3253. "homepage": "https://symfony.com/contributors"
  3254. }
  3255. ],
  3256. "description": "Allows manipulating MIME messages",
  3257. "homepage": "https://symfony.com",
  3258. "keywords": [
  3259. "mime",
  3260. "mime-type"
  3261. ],
  3262. "support": {
  3263. "source": "https://github.com/symfony/mime/tree/v7.1.11"
  3264. },
  3265. "funding": [
  3266. {
  3267. "url": "https://symfony.com/sponsor",
  3268. "type": "custom"
  3269. },
  3270. {
  3271. "url": "https://github.com/fabpot",
  3272. "type": "github"
  3273. },
  3274. {
  3275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3276. "type": "tidelift"
  3277. }
  3278. ],
  3279. "time": "2025-01-27T10:57:12+00:00"
  3280. },
  3281. {
  3282. "name": "symfony/monolog-bridge",
  3283. "version": "v7.1.6",
  3284. "source": {
  3285. "type": "git",
  3286. "url": "https://github.com/symfony/monolog-bridge.git",
  3287. "reference": "e1da878cf5f701df5f5c1799bdbf827acee5a76e"
  3288. },
  3289. "dist": {
  3290. "type": "zip",
  3291. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/e1da878cf5f701df5f5c1799bdbf827acee5a76e",
  3292. "reference": "e1da878cf5f701df5f5c1799bdbf827acee5a76e",
  3293. "shasum": ""
  3294. },
  3295. "require": {
  3296. "monolog/monolog": "^3",
  3297. "php": ">=8.2",
  3298. "symfony/http-kernel": "^6.4|^7.0",
  3299. "symfony/service-contracts": "^2.5|^3"
  3300. },
  3301. "conflict": {
  3302. "symfony/console": "<6.4",
  3303. "symfony/http-foundation": "<6.4",
  3304. "symfony/security-core": "<6.4"
  3305. },
  3306. "require-dev": {
  3307. "symfony/console": "^6.4|^7.0",
  3308. "symfony/http-client": "^6.4|^7.0",
  3309. "symfony/mailer": "^6.4|^7.0",
  3310. "symfony/messenger": "^6.4|^7.0",
  3311. "symfony/mime": "^6.4|^7.0",
  3312. "symfony/security-core": "^6.4|^7.0",
  3313. "symfony/var-dumper": "^6.4|^7.0"
  3314. },
  3315. "type": "symfony-bridge",
  3316. "autoload": {
  3317. "psr-4": {
  3318. "Symfony\\Bridge\\Monolog\\": ""
  3319. },
  3320. "exclude-from-classmap": [
  3321. "/Tests/"
  3322. ]
  3323. },
  3324. "notification-url": "https://packagist.org/downloads/",
  3325. "license": [
  3326. "MIT"
  3327. ],
  3328. "authors": [
  3329. {
  3330. "name": "Fabien Potencier",
  3331. "email": "fabien@symfony.com"
  3332. },
  3333. {
  3334. "name": "Symfony Community",
  3335. "homepage": "https://symfony.com/contributors"
  3336. }
  3337. ],
  3338. "description": "Provides integration for Monolog with various Symfony components",
  3339. "homepage": "https://symfony.com",
  3340. "support": {
  3341. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.6"
  3342. },
  3343. "funding": [
  3344. {
  3345. "url": "https://symfony.com/sponsor",
  3346. "type": "custom"
  3347. },
  3348. {
  3349. "url": "https://github.com/fabpot",
  3350. "type": "github"
  3351. },
  3352. {
  3353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3354. "type": "tidelift"
  3355. }
  3356. ],
  3357. "time": "2024-10-14T08:49:35+00:00"
  3358. },
  3359. {
  3360. "name": "symfony/monolog-bundle",
  3361. "version": "v3.11.2",
  3362. "source": {
  3363. "type": "git",
  3364. "url": "https://github.com/symfony/monolog-bundle.git",
  3365. "reference": "d87468010570b2ec766152184918ee8d267c7411"
  3366. },
  3367. "dist": {
  3368. "type": "zip",
  3369. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/d87468010570b2ec766152184918ee8d267c7411",
  3370. "reference": "d87468010570b2ec766152184918ee8d267c7411",
  3371. "shasum": ""
  3372. },
  3373. "require": {
  3374. "composer-runtime-api": "^2.0",
  3375. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  3376. "php": ">=8.1",
  3377. "symfony/config": "^6.4 || ^7.0",
  3378. "symfony/dependency-injection": "^6.4 || ^7.0",
  3379. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  3380. "symfony/http-kernel": "^6.4 || ^7.0",
  3381. "symfony/monolog-bridge": "^6.4 || ^7.0",
  3382. "symfony/polyfill-php84": "^1.30"
  3383. },
  3384. "require-dev": {
  3385. "symfony/console": "^6.4 || ^7.0",
  3386. "symfony/phpunit-bridge": "^7.3.3",
  3387. "symfony/yaml": "^6.4 || ^7.0"
  3388. },
  3389. "type": "symfony-bundle",
  3390. "autoload": {
  3391. "psr-4": {
  3392. "Symfony\\Bundle\\MonologBundle\\": "src"
  3393. }
  3394. },
  3395. "notification-url": "https://packagist.org/downloads/",
  3396. "license": [
  3397. "MIT"
  3398. ],
  3399. "authors": [
  3400. {
  3401. "name": "Fabien Potencier",
  3402. "email": "fabien@symfony.com"
  3403. },
  3404. {
  3405. "name": "Symfony Community",
  3406. "homepage": "https://symfony.com/contributors"
  3407. }
  3408. ],
  3409. "description": "Symfony MonologBundle",
  3410. "homepage": "https://symfony.com",
  3411. "keywords": [
  3412. "log",
  3413. "logging"
  3414. ],
  3415. "support": {
  3416. "issues": "https://github.com/symfony/monolog-bundle/issues",
  3417. "source": "https://github.com/symfony/monolog-bundle/tree/v3.11.2"
  3418. },
  3419. "funding": [
  3420. {
  3421. "url": "https://symfony.com/sponsor",
  3422. "type": "custom"
  3423. },
  3424. {
  3425. "url": "https://github.com/fabpot",
  3426. "type": "github"
  3427. },
  3428. {
  3429. "url": "https://github.com/nicolas-grekas",
  3430. "type": "github"
  3431. },
  3432. {
  3433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3434. "type": "tidelift"
  3435. }
  3436. ],
  3437. "time": "2026-04-02T18:23:01+00:00"
  3438. },
  3439. {
  3440. "name": "symfony/notifier",
  3441. "version": "v7.1.6",
  3442. "source": {
  3443. "type": "git",
  3444. "url": "https://github.com/symfony/notifier.git",
  3445. "reference": "e45a3db2dd184060fa9c0d5c0b94dfa82bc0a13f"
  3446. },
  3447. "dist": {
  3448. "type": "zip",
  3449. "url": "https://api.github.com/repos/symfony/notifier/zipball/e45a3db2dd184060fa9c0d5c0b94dfa82bc0a13f",
  3450. "reference": "e45a3db2dd184060fa9c0d5c0b94dfa82bc0a13f",
  3451. "shasum": ""
  3452. },
  3453. "require": {
  3454. "php": ">=8.2",
  3455. "psr/log": "^1|^2|^3"
  3456. },
  3457. "conflict": {
  3458. "symfony/event-dispatcher": "<6.4",
  3459. "symfony/event-dispatcher-contracts": "<2.5",
  3460. "symfony/http-client-contracts": "<2.5",
  3461. "symfony/http-kernel": "<6.4"
  3462. },
  3463. "require-dev": {
  3464. "symfony/event-dispatcher-contracts": "^2.5|^3",
  3465. "symfony/http-client-contracts": "^2.5|^3",
  3466. "symfony/http-foundation": "^6.4|^7.0",
  3467. "symfony/messenger": "^6.4|^7.0"
  3468. },
  3469. "type": "library",
  3470. "autoload": {
  3471. "psr-4": {
  3472. "Symfony\\Component\\Notifier\\": ""
  3473. },
  3474. "exclude-from-classmap": [
  3475. "/Tests/"
  3476. ]
  3477. },
  3478. "notification-url": "https://packagist.org/downloads/",
  3479. "license": [
  3480. "MIT"
  3481. ],
  3482. "authors": [
  3483. {
  3484. "name": "Fabien Potencier",
  3485. "email": "fabien@symfony.com"
  3486. },
  3487. {
  3488. "name": "Symfony Community",
  3489. "homepage": "https://symfony.com/contributors"
  3490. }
  3491. ],
  3492. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  3493. "homepage": "https://symfony.com",
  3494. "keywords": [
  3495. "notification",
  3496. "notifier"
  3497. ],
  3498. "support": {
  3499. "source": "https://github.com/symfony/notifier/tree/v7.1.6"
  3500. },
  3501. "funding": [
  3502. {
  3503. "url": "https://symfony.com/sponsor",
  3504. "type": "custom"
  3505. },
  3506. {
  3507. "url": "https://github.com/fabpot",
  3508. "type": "github"
  3509. },
  3510. {
  3511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3512. "type": "tidelift"
  3513. }
  3514. ],
  3515. "time": "2024-09-25T14:20:29+00:00"
  3516. },
  3517. {
  3518. "name": "symfony/polyfill-intl-grapheme",
  3519. "version": "v1.38.1",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3523. "reference": "e9247d281d694a5120554d9afaf54e070e88a603"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/e9247d281d694a5120554d9afaf54e070e88a603",
  3528. "reference": "e9247d281d694a5120554d9afaf54e070e88a603",
  3529. "shasum": ""
  3530. },
  3531. "require": {
  3532. "php": ">=7.2"
  3533. },
  3534. "suggest": {
  3535. "ext-intl": "For best performance"
  3536. },
  3537. "type": "library",
  3538. "extra": {
  3539. "thanks": {
  3540. "url": "https://github.com/symfony/polyfill",
  3541. "name": "symfony/polyfill"
  3542. }
  3543. },
  3544. "autoload": {
  3545. "files": [
  3546. "bootstrap.php"
  3547. ],
  3548. "psr-4": {
  3549. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3550. }
  3551. },
  3552. "notification-url": "https://packagist.org/downloads/",
  3553. "license": [
  3554. "MIT"
  3555. ],
  3556. "authors": [
  3557. {
  3558. "name": "Nicolas Grekas",
  3559. "email": "p@tchwork.com"
  3560. },
  3561. {
  3562. "name": "Symfony Community",
  3563. "homepage": "https://symfony.com/contributors"
  3564. }
  3565. ],
  3566. "description": "Symfony polyfill for intl's grapheme_* functions",
  3567. "homepage": "https://symfony.com",
  3568. "keywords": [
  3569. "compatibility",
  3570. "grapheme",
  3571. "intl",
  3572. "polyfill",
  3573. "portable",
  3574. "shim"
  3575. ],
  3576. "support": {
  3577. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.38.1"
  3578. },
  3579. "funding": [
  3580. {
  3581. "url": "https://symfony.com/sponsor",
  3582. "type": "custom"
  3583. },
  3584. {
  3585. "url": "https://github.com/fabpot",
  3586. "type": "github"
  3587. },
  3588. {
  3589. "url": "https://github.com/nicolas-grekas",
  3590. "type": "github"
  3591. },
  3592. {
  3593. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3594. "type": "tidelift"
  3595. }
  3596. ],
  3597. "time": "2026-05-26T05:58:03+00:00"
  3598. },
  3599. {
  3600. "name": "symfony/polyfill-intl-idn",
  3601. "version": "v1.38.1",
  3602. "source": {
  3603. "type": "git",
  3604. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3605. "reference": "dc21118016c039a66235cf93d96b435ffb282412"
  3606. },
  3607. "dist": {
  3608. "type": "zip",
  3609. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/dc21118016c039a66235cf93d96b435ffb282412",
  3610. "reference": "dc21118016c039a66235cf93d96b435ffb282412",
  3611. "shasum": ""
  3612. },
  3613. "require": {
  3614. "php": ">=7.2",
  3615. "symfony/polyfill-intl-normalizer": "^1.10"
  3616. },
  3617. "suggest": {
  3618. "ext-intl": "For best performance"
  3619. },
  3620. "type": "library",
  3621. "extra": {
  3622. "thanks": {
  3623. "url": "https://github.com/symfony/polyfill",
  3624. "name": "symfony/polyfill"
  3625. }
  3626. },
  3627. "autoload": {
  3628. "files": [
  3629. "bootstrap.php"
  3630. ],
  3631. "psr-4": {
  3632. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3633. }
  3634. },
  3635. "notification-url": "https://packagist.org/downloads/",
  3636. "license": [
  3637. "MIT"
  3638. ],
  3639. "authors": [
  3640. {
  3641. "name": "Laurent Bassin",
  3642. "email": "laurent@bassin.info"
  3643. },
  3644. {
  3645. "name": "Trevor Rowbotham",
  3646. "email": "trevor.rowbotham@pm.me"
  3647. },
  3648. {
  3649. "name": "Symfony Community",
  3650. "homepage": "https://symfony.com/contributors"
  3651. }
  3652. ],
  3653. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3654. "homepage": "https://symfony.com",
  3655. "keywords": [
  3656. "compatibility",
  3657. "idn",
  3658. "intl",
  3659. "polyfill",
  3660. "portable",
  3661. "shim"
  3662. ],
  3663. "support": {
  3664. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.38.1"
  3665. },
  3666. "funding": [
  3667. {
  3668. "url": "https://symfony.com/sponsor",
  3669. "type": "custom"
  3670. },
  3671. {
  3672. "url": "https://github.com/fabpot",
  3673. "type": "github"
  3674. },
  3675. {
  3676. "url": "https://github.com/nicolas-grekas",
  3677. "type": "github"
  3678. },
  3679. {
  3680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3681. "type": "tidelift"
  3682. }
  3683. ],
  3684. "time": "2026-05-25T15:22:23+00:00"
  3685. },
  3686. {
  3687. "name": "symfony/polyfill-intl-normalizer",
  3688. "version": "v1.38.0",
  3689. "source": {
  3690. "type": "git",
  3691. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3692. "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b"
  3693. },
  3694. "dist": {
  3695. "type": "zip",
  3696. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/2d446c214bdbe5b71bde5011b060a05fece3ae6b",
  3697. "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b",
  3698. "shasum": ""
  3699. },
  3700. "require": {
  3701. "php": ">=7.2"
  3702. },
  3703. "suggest": {
  3704. "ext-intl": "For best performance"
  3705. },
  3706. "type": "library",
  3707. "extra": {
  3708. "thanks": {
  3709. "url": "https://github.com/symfony/polyfill",
  3710. "name": "symfony/polyfill"
  3711. }
  3712. },
  3713. "autoload": {
  3714. "files": [
  3715. "bootstrap.php"
  3716. ],
  3717. "psr-4": {
  3718. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3719. },
  3720. "classmap": [
  3721. "Resources/stubs"
  3722. ]
  3723. },
  3724. "notification-url": "https://packagist.org/downloads/",
  3725. "license": [
  3726. "MIT"
  3727. ],
  3728. "authors": [
  3729. {
  3730. "name": "Nicolas Grekas",
  3731. "email": "p@tchwork.com"
  3732. },
  3733. {
  3734. "name": "Symfony Community",
  3735. "homepage": "https://symfony.com/contributors"
  3736. }
  3737. ],
  3738. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3739. "homepage": "https://symfony.com",
  3740. "keywords": [
  3741. "compatibility",
  3742. "intl",
  3743. "normalizer",
  3744. "polyfill",
  3745. "portable",
  3746. "shim"
  3747. ],
  3748. "support": {
  3749. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.38.0"
  3750. },
  3751. "funding": [
  3752. {
  3753. "url": "https://symfony.com/sponsor",
  3754. "type": "custom"
  3755. },
  3756. {
  3757. "url": "https://github.com/fabpot",
  3758. "type": "github"
  3759. },
  3760. {
  3761. "url": "https://github.com/nicolas-grekas",
  3762. "type": "github"
  3763. },
  3764. {
  3765. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3766. "type": "tidelift"
  3767. }
  3768. ],
  3769. "time": "2026-05-25T13:48:31+00:00"
  3770. },
  3771. {
  3772. "name": "symfony/polyfill-mbstring",
  3773. "version": "v1.38.1",
  3774. "source": {
  3775. "type": "git",
  3776. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3777. "reference": "14c5439eec4ccff081ac14eca2dc57feb2a66d92"
  3778. },
  3779. "dist": {
  3780. "type": "zip",
  3781. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/14c5439eec4ccff081ac14eca2dc57feb2a66d92",
  3782. "reference": "14c5439eec4ccff081ac14eca2dc57feb2a66d92",
  3783. "shasum": ""
  3784. },
  3785. "require": {
  3786. "ext-iconv": "*",
  3787. "php": ">=7.2"
  3788. },
  3789. "provide": {
  3790. "ext-mbstring": "*"
  3791. },
  3792. "suggest": {
  3793. "ext-mbstring": "For best performance"
  3794. },
  3795. "type": "library",
  3796. "extra": {
  3797. "thanks": {
  3798. "url": "https://github.com/symfony/polyfill",
  3799. "name": "symfony/polyfill"
  3800. }
  3801. },
  3802. "autoload": {
  3803. "files": [
  3804. "bootstrap.php"
  3805. ],
  3806. "psr-4": {
  3807. "Symfony\\Polyfill\\Mbstring\\": ""
  3808. }
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "MIT"
  3813. ],
  3814. "authors": [
  3815. {
  3816. "name": "Nicolas Grekas",
  3817. "email": "p@tchwork.com"
  3818. },
  3819. {
  3820. "name": "Symfony Community",
  3821. "homepage": "https://symfony.com/contributors"
  3822. }
  3823. ],
  3824. "description": "Symfony polyfill for the Mbstring extension",
  3825. "homepage": "https://symfony.com",
  3826. "keywords": [
  3827. "compatibility",
  3828. "mbstring",
  3829. "polyfill",
  3830. "portable",
  3831. "shim"
  3832. ],
  3833. "support": {
  3834. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.38.1"
  3835. },
  3836. "funding": [
  3837. {
  3838. "url": "https://symfony.com/sponsor",
  3839. "type": "custom"
  3840. },
  3841. {
  3842. "url": "https://github.com/fabpot",
  3843. "type": "github"
  3844. },
  3845. {
  3846. "url": "https://github.com/nicolas-grekas",
  3847. "type": "github"
  3848. },
  3849. {
  3850. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3851. "type": "tidelift"
  3852. }
  3853. ],
  3854. "time": "2026-05-26T12:51:13+00:00"
  3855. },
  3856. {
  3857. "name": "symfony/polyfill-php83",
  3858. "version": "v1.38.1",
  3859. "source": {
  3860. "type": "git",
  3861. "url": "https://github.com/symfony/polyfill-php83.git",
  3862. "reference": "8339098cae28673c15cce00d80734af0453054e2"
  3863. },
  3864. "dist": {
  3865. "type": "zip",
  3866. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/8339098cae28673c15cce00d80734af0453054e2",
  3867. "reference": "8339098cae28673c15cce00d80734af0453054e2",
  3868. "shasum": ""
  3869. },
  3870. "require": {
  3871. "php": ">=7.2"
  3872. },
  3873. "type": "library",
  3874. "extra": {
  3875. "thanks": {
  3876. "url": "https://github.com/symfony/polyfill",
  3877. "name": "symfony/polyfill"
  3878. }
  3879. },
  3880. "autoload": {
  3881. "files": [
  3882. "bootstrap.php"
  3883. ],
  3884. "psr-4": {
  3885. "Symfony\\Polyfill\\Php83\\": ""
  3886. },
  3887. "classmap": [
  3888. "Resources/stubs"
  3889. ]
  3890. },
  3891. "notification-url": "https://packagist.org/downloads/",
  3892. "license": [
  3893. "MIT"
  3894. ],
  3895. "authors": [
  3896. {
  3897. "name": "Nicolas Grekas",
  3898. "email": "p@tchwork.com"
  3899. },
  3900. {
  3901. "name": "Symfony Community",
  3902. "homepage": "https://symfony.com/contributors"
  3903. }
  3904. ],
  3905. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  3906. "homepage": "https://symfony.com",
  3907. "keywords": [
  3908. "compatibility",
  3909. "polyfill",
  3910. "portable",
  3911. "shim"
  3912. ],
  3913. "support": {
  3914. "source": "https://github.com/symfony/polyfill-php83/tree/v1.38.1"
  3915. },
  3916. "funding": [
  3917. {
  3918. "url": "https://symfony.com/sponsor",
  3919. "type": "custom"
  3920. },
  3921. {
  3922. "url": "https://github.com/fabpot",
  3923. "type": "github"
  3924. },
  3925. {
  3926. "url": "https://github.com/nicolas-grekas",
  3927. "type": "github"
  3928. },
  3929. {
  3930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3931. "type": "tidelift"
  3932. }
  3933. ],
  3934. "time": "2026-05-26T12:51:13+00:00"
  3935. },
  3936. {
  3937. "name": "symfony/polyfill-php84",
  3938. "version": "v1.38.1",
  3939. "source": {
  3940. "type": "git",
  3941. "url": "https://github.com/symfony/polyfill-php84.git",
  3942. "reference": "f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa"
  3943. },
  3944. "dist": {
  3945. "type": "zip",
  3946. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa",
  3947. "reference": "f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa",
  3948. "shasum": ""
  3949. },
  3950. "require": {
  3951. "php": ">=7.2"
  3952. },
  3953. "type": "library",
  3954. "extra": {
  3955. "thanks": {
  3956. "url": "https://github.com/symfony/polyfill",
  3957. "name": "symfony/polyfill"
  3958. }
  3959. },
  3960. "autoload": {
  3961. "files": [
  3962. "bootstrap.php"
  3963. ],
  3964. "psr-4": {
  3965. "Symfony\\Polyfill\\Php84\\": ""
  3966. },
  3967. "classmap": [
  3968. "Resources/stubs"
  3969. ]
  3970. },
  3971. "notification-url": "https://packagist.org/downloads/",
  3972. "license": [
  3973. "MIT"
  3974. ],
  3975. "authors": [
  3976. {
  3977. "name": "Nicolas Grekas",
  3978. "email": "p@tchwork.com"
  3979. },
  3980. {
  3981. "name": "Symfony Community",
  3982. "homepage": "https://symfony.com/contributors"
  3983. }
  3984. ],
  3985. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  3986. "homepage": "https://symfony.com",
  3987. "keywords": [
  3988. "compatibility",
  3989. "polyfill",
  3990. "portable",
  3991. "shim"
  3992. ],
  3993. "support": {
  3994. "source": "https://github.com/symfony/polyfill-php84/tree/v1.38.1"
  3995. },
  3996. "funding": [
  3997. {
  3998. "url": "https://symfony.com/sponsor",
  3999. "type": "custom"
  4000. },
  4001. {
  4002. "url": "https://github.com/fabpot",
  4003. "type": "github"
  4004. },
  4005. {
  4006. "url": "https://github.com/nicolas-grekas",
  4007. "type": "github"
  4008. },
  4009. {
  4010. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4011. "type": "tidelift"
  4012. }
  4013. ],
  4014. "time": "2026-05-26T12:51:13+00:00"
  4015. },
  4016. {
  4017. "name": "symfony/routing",
  4018. "version": "v7.1.11",
  4019. "source": {
  4020. "type": "git",
  4021. "url": "https://github.com/symfony/routing.git",
  4022. "reference": "07f6463a8ff4377944222b69b126bd5495e9d44e"
  4023. },
  4024. "dist": {
  4025. "type": "zip",
  4026. "url": "https://api.github.com/repos/symfony/routing/zipball/07f6463a8ff4377944222b69b126bd5495e9d44e",
  4027. "reference": "07f6463a8ff4377944222b69b126bd5495e9d44e",
  4028. "shasum": ""
  4029. },
  4030. "require": {
  4031. "php": ">=8.2",
  4032. "symfony/deprecation-contracts": "^2.5|^3"
  4033. },
  4034. "conflict": {
  4035. "symfony/config": "<6.4",
  4036. "symfony/dependency-injection": "<6.4",
  4037. "symfony/yaml": "<6.4"
  4038. },
  4039. "require-dev": {
  4040. "psr/log": "^1|^2|^3",
  4041. "symfony/config": "^6.4|^7.0",
  4042. "symfony/dependency-injection": "^6.4|^7.0",
  4043. "symfony/expression-language": "^6.4|^7.0",
  4044. "symfony/http-foundation": "^6.4|^7.0",
  4045. "symfony/yaml": "^6.4|^7.0"
  4046. },
  4047. "type": "library",
  4048. "autoload": {
  4049. "psr-4": {
  4050. "Symfony\\Component\\Routing\\": ""
  4051. },
  4052. "exclude-from-classmap": [
  4053. "/Tests/"
  4054. ]
  4055. },
  4056. "notification-url": "https://packagist.org/downloads/",
  4057. "license": [
  4058. "MIT"
  4059. ],
  4060. "authors": [
  4061. {
  4062. "name": "Fabien Potencier",
  4063. "email": "fabien@symfony.com"
  4064. },
  4065. {
  4066. "name": "Symfony Community",
  4067. "homepage": "https://symfony.com/contributors"
  4068. }
  4069. ],
  4070. "description": "Maps an HTTP request to a set of configuration variables",
  4071. "homepage": "https://symfony.com",
  4072. "keywords": [
  4073. "router",
  4074. "routing",
  4075. "uri",
  4076. "url"
  4077. ],
  4078. "support": {
  4079. "source": "https://github.com/symfony/routing/tree/v7.1.11"
  4080. },
  4081. "funding": [
  4082. {
  4083. "url": "https://symfony.com/sponsor",
  4084. "type": "custom"
  4085. },
  4086. {
  4087. "url": "https://github.com/fabpot",
  4088. "type": "github"
  4089. },
  4090. {
  4091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4092. "type": "tidelift"
  4093. }
  4094. ],
  4095. "time": "2025-01-17T10:33:21+00:00"
  4096. },
  4097. {
  4098. "name": "symfony/runtime",
  4099. "version": "v7.1.7",
  4100. "source": {
  4101. "type": "git",
  4102. "url": "https://github.com/symfony/runtime.git",
  4103. "reference": "9889783c17e8a68fa5e88c8e8a1a85e802558dba"
  4104. },
  4105. "dist": {
  4106. "type": "zip",
  4107. "url": "https://api.github.com/repos/symfony/runtime/zipball/9889783c17e8a68fa5e88c8e8a1a85e802558dba",
  4108. "reference": "9889783c17e8a68fa5e88c8e8a1a85e802558dba",
  4109. "shasum": ""
  4110. },
  4111. "require": {
  4112. "composer-plugin-api": "^1.0|^2.0",
  4113. "php": ">=8.2"
  4114. },
  4115. "conflict": {
  4116. "symfony/dotenv": "<6.4"
  4117. },
  4118. "require-dev": {
  4119. "composer/composer": "^2.6",
  4120. "symfony/console": "^6.4|^7.0",
  4121. "symfony/dotenv": "^6.4|^7.0",
  4122. "symfony/http-foundation": "^6.4|^7.0",
  4123. "symfony/http-kernel": "^6.4|^7.0"
  4124. },
  4125. "type": "composer-plugin",
  4126. "extra": {
  4127. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  4128. },
  4129. "autoload": {
  4130. "psr-4": {
  4131. "Symfony\\Component\\Runtime\\": "",
  4132. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  4133. },
  4134. "exclude-from-classmap": [
  4135. "/Tests/"
  4136. ]
  4137. },
  4138. "notification-url": "https://packagist.org/downloads/",
  4139. "license": [
  4140. "MIT"
  4141. ],
  4142. "authors": [
  4143. {
  4144. "name": "Nicolas Grekas",
  4145. "email": "p@tchwork.com"
  4146. },
  4147. {
  4148. "name": "Symfony Community",
  4149. "homepage": "https://symfony.com/contributors"
  4150. }
  4151. ],
  4152. "description": "Enables decoupling PHP applications from global state",
  4153. "homepage": "https://symfony.com",
  4154. "keywords": [
  4155. "runtime"
  4156. ],
  4157. "support": {
  4158. "source": "https://github.com/symfony/runtime/tree/v7.1.7"
  4159. },
  4160. "funding": [
  4161. {
  4162. "url": "https://symfony.com/sponsor",
  4163. "type": "custom"
  4164. },
  4165. {
  4166. "url": "https://github.com/fabpot",
  4167. "type": "github"
  4168. },
  4169. {
  4170. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4171. "type": "tidelift"
  4172. }
  4173. ],
  4174. "time": "2024-11-05T16:45:54+00:00"
  4175. },
  4176. {
  4177. "name": "symfony/service-contracts",
  4178. "version": "v3.7.0",
  4179. "source": {
  4180. "type": "git",
  4181. "url": "https://github.com/symfony/service-contracts.git",
  4182. "reference": "d25d82433a80eba6aa0e6c24b61d7370d99e444a"
  4183. },
  4184. "dist": {
  4185. "type": "zip",
  4186. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d25d82433a80eba6aa0e6c24b61d7370d99e444a",
  4187. "reference": "d25d82433a80eba6aa0e6c24b61d7370d99e444a",
  4188. "shasum": ""
  4189. },
  4190. "require": {
  4191. "php": ">=8.1",
  4192. "psr/container": "^1.1|^2.0",
  4193. "symfony/deprecation-contracts": "^2.5|^3"
  4194. },
  4195. "conflict": {
  4196. "ext-psr": "<1.1|>=2"
  4197. },
  4198. "type": "library",
  4199. "extra": {
  4200. "thanks": {
  4201. "url": "https://github.com/symfony/contracts",
  4202. "name": "symfony/contracts"
  4203. },
  4204. "branch-alias": {
  4205. "dev-main": "3.7-dev"
  4206. }
  4207. },
  4208. "autoload": {
  4209. "psr-4": {
  4210. "Symfony\\Contracts\\Service\\": ""
  4211. },
  4212. "exclude-from-classmap": [
  4213. "/Test/"
  4214. ]
  4215. },
  4216. "notification-url": "https://packagist.org/downloads/",
  4217. "license": [
  4218. "MIT"
  4219. ],
  4220. "authors": [
  4221. {
  4222. "name": "Nicolas Grekas",
  4223. "email": "p@tchwork.com"
  4224. },
  4225. {
  4226. "name": "Symfony Community",
  4227. "homepage": "https://symfony.com/contributors"
  4228. }
  4229. ],
  4230. "description": "Generic abstractions related to writing services",
  4231. "homepage": "https://symfony.com",
  4232. "keywords": [
  4233. "abstractions",
  4234. "contracts",
  4235. "decoupling",
  4236. "interfaces",
  4237. "interoperability",
  4238. "standards"
  4239. ],
  4240. "support": {
  4241. "source": "https://github.com/symfony/service-contracts/tree/v3.7.0"
  4242. },
  4243. "funding": [
  4244. {
  4245. "url": "https://symfony.com/sponsor",
  4246. "type": "custom"
  4247. },
  4248. {
  4249. "url": "https://github.com/fabpot",
  4250. "type": "github"
  4251. },
  4252. {
  4253. "url": "https://github.com/nicolas-grekas",
  4254. "type": "github"
  4255. },
  4256. {
  4257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4258. "type": "tidelift"
  4259. }
  4260. ],
  4261. "time": "2026-03-28T09:44:51+00:00"
  4262. },
  4263. {
  4264. "name": "symfony/stopwatch",
  4265. "version": "v7.1.6",
  4266. "source": {
  4267. "type": "git",
  4268. "url": "https://github.com/symfony/stopwatch.git",
  4269. "reference": "8b4a434e6e7faf6adedffb48783a5c75409a1a05"
  4270. },
  4271. "dist": {
  4272. "type": "zip",
  4273. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/8b4a434e6e7faf6adedffb48783a5c75409a1a05",
  4274. "reference": "8b4a434e6e7faf6adedffb48783a5c75409a1a05",
  4275. "shasum": ""
  4276. },
  4277. "require": {
  4278. "php": ">=8.2",
  4279. "symfony/service-contracts": "^2.5|^3"
  4280. },
  4281. "type": "library",
  4282. "autoload": {
  4283. "psr-4": {
  4284. "Symfony\\Component\\Stopwatch\\": ""
  4285. },
  4286. "exclude-from-classmap": [
  4287. "/Tests/"
  4288. ]
  4289. },
  4290. "notification-url": "https://packagist.org/downloads/",
  4291. "license": [
  4292. "MIT"
  4293. ],
  4294. "authors": [
  4295. {
  4296. "name": "Fabien Potencier",
  4297. "email": "fabien@symfony.com"
  4298. },
  4299. {
  4300. "name": "Symfony Community",
  4301. "homepage": "https://symfony.com/contributors"
  4302. }
  4303. ],
  4304. "description": "Provides a way to profile code",
  4305. "homepage": "https://symfony.com",
  4306. "support": {
  4307. "source": "https://github.com/symfony/stopwatch/tree/v7.1.6"
  4308. },
  4309. "funding": [
  4310. {
  4311. "url": "https://symfony.com/sponsor",
  4312. "type": "custom"
  4313. },
  4314. {
  4315. "url": "https://github.com/fabpot",
  4316. "type": "github"
  4317. },
  4318. {
  4319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4320. "type": "tidelift"
  4321. }
  4322. ],
  4323. "time": "2024-09-25T14:20:29+00:00"
  4324. },
  4325. {
  4326. "name": "symfony/string",
  4327. "version": "v7.1.8",
  4328. "source": {
  4329. "type": "git",
  4330. "url": "https://github.com/symfony/string.git",
  4331. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281"
  4332. },
  4333. "dist": {
  4334. "type": "zip",
  4335. "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281",
  4336. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281",
  4337. "shasum": ""
  4338. },
  4339. "require": {
  4340. "php": ">=8.2",
  4341. "symfony/polyfill-ctype": "~1.8",
  4342. "symfony/polyfill-intl-grapheme": "~1.0",
  4343. "symfony/polyfill-intl-normalizer": "~1.0",
  4344. "symfony/polyfill-mbstring": "~1.0"
  4345. },
  4346. "conflict": {
  4347. "symfony/translation-contracts": "<2.5"
  4348. },
  4349. "require-dev": {
  4350. "symfony/emoji": "^7.1",
  4351. "symfony/error-handler": "^6.4|^7.0",
  4352. "symfony/http-client": "^6.4|^7.0",
  4353. "symfony/intl": "^6.4|^7.0",
  4354. "symfony/translation-contracts": "^2.5|^3.0",
  4355. "symfony/var-exporter": "^6.4|^7.0"
  4356. },
  4357. "type": "library",
  4358. "autoload": {
  4359. "files": [
  4360. "Resources/functions.php"
  4361. ],
  4362. "psr-4": {
  4363. "Symfony\\Component\\String\\": ""
  4364. },
  4365. "exclude-from-classmap": [
  4366. "/Tests/"
  4367. ]
  4368. },
  4369. "notification-url": "https://packagist.org/downloads/",
  4370. "license": [
  4371. "MIT"
  4372. ],
  4373. "authors": [
  4374. {
  4375. "name": "Nicolas Grekas",
  4376. "email": "p@tchwork.com"
  4377. },
  4378. {
  4379. "name": "Symfony Community",
  4380. "homepage": "https://symfony.com/contributors"
  4381. }
  4382. ],
  4383. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4384. "homepage": "https://symfony.com",
  4385. "keywords": [
  4386. "grapheme",
  4387. "i18n",
  4388. "string",
  4389. "unicode",
  4390. "utf-8",
  4391. "utf8"
  4392. ],
  4393. "support": {
  4394. "source": "https://github.com/symfony/string/tree/v7.1.8"
  4395. },
  4396. "funding": [
  4397. {
  4398. "url": "https://symfony.com/sponsor",
  4399. "type": "custom"
  4400. },
  4401. {
  4402. "url": "https://github.com/fabpot",
  4403. "type": "github"
  4404. },
  4405. {
  4406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4407. "type": "tidelift"
  4408. }
  4409. ],
  4410. "time": "2024-11-13T13:31:21+00:00"
  4411. },
  4412. {
  4413. "name": "symfony/telegram-notifier",
  4414. "version": "v7.1.6",
  4415. "source": {
  4416. "type": "git",
  4417. "url": "https://github.com/symfony/telegram-notifier.git",
  4418. "reference": "aeafc3c5553bd19be69b134e39afc61cdd2a8993"
  4419. },
  4420. "dist": {
  4421. "type": "zip",
  4422. "url": "https://api.github.com/repos/symfony/telegram-notifier/zipball/aeafc3c5553bd19be69b134e39afc61cdd2a8993",
  4423. "reference": "aeafc3c5553bd19be69b134e39afc61cdd2a8993",
  4424. "shasum": ""
  4425. },
  4426. "require": {
  4427. "php": ">=8.2",
  4428. "symfony/http-client": "^6.4|^7.0",
  4429. "symfony/mime": "^6.4|^7.0",
  4430. "symfony/notifier": "^6.4|^7.0"
  4431. },
  4432. "type": "symfony-notifier-bridge",
  4433. "autoload": {
  4434. "psr-4": {
  4435. "Symfony\\Component\\Notifier\\Bridge\\Telegram\\": ""
  4436. },
  4437. "exclude-from-classmap": [
  4438. "/Tests/"
  4439. ]
  4440. },
  4441. "notification-url": "https://packagist.org/downloads/",
  4442. "license": [
  4443. "MIT"
  4444. ],
  4445. "authors": [
  4446. {
  4447. "name": "Fabien Potencier",
  4448. "email": "fabien@symfony.com"
  4449. },
  4450. {
  4451. "name": "Symfony Community",
  4452. "homepage": "https://symfony.com/contributors"
  4453. }
  4454. ],
  4455. "description": "Symfony Telegram Notifier Bridge",
  4456. "homepage": "https://symfony.com",
  4457. "keywords": [
  4458. "notifier",
  4459. "telegram"
  4460. ],
  4461. "support": {
  4462. "source": "https://github.com/symfony/telegram-notifier/tree/v7.1.6"
  4463. },
  4464. "funding": [
  4465. {
  4466. "url": "https://symfony.com/sponsor",
  4467. "type": "custom"
  4468. },
  4469. {
  4470. "url": "https://github.com/fabpot",
  4471. "type": "github"
  4472. },
  4473. {
  4474. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4475. "type": "tidelift"
  4476. }
  4477. ],
  4478. "time": "2024-10-25T15:11:02+00:00"
  4479. },
  4480. {
  4481. "name": "symfony/var-dumper",
  4482. "version": "v7.1.11",
  4483. "source": {
  4484. "type": "git",
  4485. "url": "https://github.com/symfony/var-dumper.git",
  4486. "reference": "a563c5aeacb98cd46f9885a63cf241ea7794b307"
  4487. },
  4488. "dist": {
  4489. "type": "zip",
  4490. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a563c5aeacb98cd46f9885a63cf241ea7794b307",
  4491. "reference": "a563c5aeacb98cd46f9885a63cf241ea7794b307",
  4492. "shasum": ""
  4493. },
  4494. "require": {
  4495. "php": ">=8.2",
  4496. "symfony/polyfill-mbstring": "~1.0"
  4497. },
  4498. "conflict": {
  4499. "symfony/console": "<6.4"
  4500. },
  4501. "require-dev": {
  4502. "ext-iconv": "*",
  4503. "symfony/console": "^6.4|^7.0",
  4504. "symfony/http-kernel": "^6.4|^7.0",
  4505. "symfony/process": "^6.4|^7.0",
  4506. "symfony/uid": "^6.4|^7.0",
  4507. "twig/twig": "^3.0.4"
  4508. },
  4509. "bin": [
  4510. "Resources/bin/var-dump-server"
  4511. ],
  4512. "type": "library",
  4513. "autoload": {
  4514. "files": [
  4515. "Resources/functions/dump.php"
  4516. ],
  4517. "psr-4": {
  4518. "Symfony\\Component\\VarDumper\\": ""
  4519. },
  4520. "exclude-from-classmap": [
  4521. "/Tests/"
  4522. ]
  4523. },
  4524. "notification-url": "https://packagist.org/downloads/",
  4525. "license": [
  4526. "MIT"
  4527. ],
  4528. "authors": [
  4529. {
  4530. "name": "Nicolas Grekas",
  4531. "email": "p@tchwork.com"
  4532. },
  4533. {
  4534. "name": "Symfony Community",
  4535. "homepage": "https://symfony.com/contributors"
  4536. }
  4537. ],
  4538. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4539. "homepage": "https://symfony.com",
  4540. "keywords": [
  4541. "debug",
  4542. "dump"
  4543. ],
  4544. "support": {
  4545. "source": "https://github.com/symfony/var-dumper/tree/v7.1.11"
  4546. },
  4547. "funding": [
  4548. {
  4549. "url": "https://symfony.com/sponsor",
  4550. "type": "custom"
  4551. },
  4552. {
  4553. "url": "https://github.com/fabpot",
  4554. "type": "github"
  4555. },
  4556. {
  4557. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4558. "type": "tidelift"
  4559. }
  4560. ],
  4561. "time": "2025-01-17T11:38:41+00:00"
  4562. },
  4563. {
  4564. "name": "symfony/var-exporter",
  4565. "version": "v7.1.6",
  4566. "source": {
  4567. "type": "git",
  4568. "url": "https://github.com/symfony/var-exporter.git",
  4569. "reference": "90173ef89c40e7c8c616653241048705f84130ef"
  4570. },
  4571. "dist": {
  4572. "type": "zip",
  4573. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/90173ef89c40e7c8c616653241048705f84130ef",
  4574. "reference": "90173ef89c40e7c8c616653241048705f84130ef",
  4575. "shasum": ""
  4576. },
  4577. "require": {
  4578. "php": ">=8.2"
  4579. },
  4580. "require-dev": {
  4581. "symfony/property-access": "^6.4|^7.0",
  4582. "symfony/serializer": "^6.4|^7.0",
  4583. "symfony/var-dumper": "^6.4|^7.0"
  4584. },
  4585. "type": "library",
  4586. "autoload": {
  4587. "psr-4": {
  4588. "Symfony\\Component\\VarExporter\\": ""
  4589. },
  4590. "exclude-from-classmap": [
  4591. "/Tests/"
  4592. ]
  4593. },
  4594. "notification-url": "https://packagist.org/downloads/",
  4595. "license": [
  4596. "MIT"
  4597. ],
  4598. "authors": [
  4599. {
  4600. "name": "Nicolas Grekas",
  4601. "email": "p@tchwork.com"
  4602. },
  4603. {
  4604. "name": "Symfony Community",
  4605. "homepage": "https://symfony.com/contributors"
  4606. }
  4607. ],
  4608. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  4609. "homepage": "https://symfony.com",
  4610. "keywords": [
  4611. "clone",
  4612. "construct",
  4613. "export",
  4614. "hydrate",
  4615. "instantiate",
  4616. "lazy-loading",
  4617. "proxy",
  4618. "serialize"
  4619. ],
  4620. "support": {
  4621. "source": "https://github.com/symfony/var-exporter/tree/v7.1.6"
  4622. },
  4623. "funding": [
  4624. {
  4625. "url": "https://symfony.com/sponsor",
  4626. "type": "custom"
  4627. },
  4628. {
  4629. "url": "https://github.com/fabpot",
  4630. "type": "github"
  4631. },
  4632. {
  4633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4634. "type": "tidelift"
  4635. }
  4636. ],
  4637. "time": "2024-09-25T14:20:29+00:00"
  4638. },
  4639. {
  4640. "name": "symfony/yaml",
  4641. "version": "v7.1.11",
  4642. "source": {
  4643. "type": "git",
  4644. "url": "https://github.com/symfony/yaml.git",
  4645. "reference": "4921b8c1db90c13ba2ee0520080ef6800912b018"
  4646. },
  4647. "dist": {
  4648. "type": "zip",
  4649. "url": "https://api.github.com/repos/symfony/yaml/zipball/4921b8c1db90c13ba2ee0520080ef6800912b018",
  4650. "reference": "4921b8c1db90c13ba2ee0520080ef6800912b018",
  4651. "shasum": ""
  4652. },
  4653. "require": {
  4654. "php": ">=8.2",
  4655. "symfony/polyfill-ctype": "^1.8"
  4656. },
  4657. "conflict": {
  4658. "symfony/console": "<6.4"
  4659. },
  4660. "require-dev": {
  4661. "symfony/console": "^6.4|^7.0"
  4662. },
  4663. "bin": [
  4664. "Resources/bin/yaml-lint"
  4665. ],
  4666. "type": "library",
  4667. "autoload": {
  4668. "psr-4": {
  4669. "Symfony\\Component\\Yaml\\": ""
  4670. },
  4671. "exclude-from-classmap": [
  4672. "/Tests/"
  4673. ]
  4674. },
  4675. "notification-url": "https://packagist.org/downloads/",
  4676. "license": [
  4677. "MIT"
  4678. ],
  4679. "authors": [
  4680. {
  4681. "name": "Fabien Potencier",
  4682. "email": "fabien@symfony.com"
  4683. },
  4684. {
  4685. "name": "Symfony Community",
  4686. "homepage": "https://symfony.com/contributors"
  4687. }
  4688. ],
  4689. "description": "Loads and dumps YAML files",
  4690. "homepage": "https://symfony.com",
  4691. "support": {
  4692. "source": "https://github.com/symfony/yaml/tree/v7.1.11"
  4693. },
  4694. "funding": [
  4695. {
  4696. "url": "https://symfony.com/sponsor",
  4697. "type": "custom"
  4698. },
  4699. {
  4700. "url": "https://github.com/fabpot",
  4701. "type": "github"
  4702. },
  4703. {
  4704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4705. "type": "tidelift"
  4706. }
  4707. ],
  4708. "time": "2025-01-07T12:50:05+00:00"
  4709. }
  4710. ],
  4711. "packages-dev": [
  4712. {
  4713. "name": "nikic/php-parser",
  4714. "version": "v5.7.0",
  4715. "source": {
  4716. "type": "git",
  4717. "url": "https://github.com/nikic/PHP-Parser.git",
  4718. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  4719. },
  4720. "dist": {
  4721. "type": "zip",
  4722. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  4723. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  4724. "shasum": ""
  4725. },
  4726. "require": {
  4727. "ext-ctype": "*",
  4728. "ext-json": "*",
  4729. "ext-tokenizer": "*",
  4730. "php": ">=7.4"
  4731. },
  4732. "require-dev": {
  4733. "ircmaxell/php-yacc": "^0.0.7",
  4734. "phpunit/phpunit": "^9.0"
  4735. },
  4736. "bin": [
  4737. "bin/php-parse"
  4738. ],
  4739. "type": "library",
  4740. "extra": {
  4741. "branch-alias": {
  4742. "dev-master": "5.x-dev"
  4743. }
  4744. },
  4745. "autoload": {
  4746. "psr-4": {
  4747. "PhpParser\\": "lib/PhpParser"
  4748. }
  4749. },
  4750. "notification-url": "https://packagist.org/downloads/",
  4751. "license": [
  4752. "BSD-3-Clause"
  4753. ],
  4754. "authors": [
  4755. {
  4756. "name": "Nikita Popov"
  4757. }
  4758. ],
  4759. "description": "A PHP parser written in PHP",
  4760. "keywords": [
  4761. "parser",
  4762. "php"
  4763. ],
  4764. "support": {
  4765. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4766. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  4767. },
  4768. "time": "2025-12-06T11:56:16+00:00"
  4769. },
  4770. {
  4771. "name": "phpstan/phpstan",
  4772. "version": "1.12.33",
  4773. "dist": {
  4774. "type": "zip",
  4775. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/37982d6fc7cbb746dda7773530cda557cdf119e1",
  4776. "reference": "37982d6fc7cbb746dda7773530cda557cdf119e1",
  4777. "shasum": ""
  4778. },
  4779. "require": {
  4780. "php": "^7.2|^8.0"
  4781. },
  4782. "conflict": {
  4783. "phpstan/phpstan-shim": "*"
  4784. },
  4785. "bin": [
  4786. "phpstan",
  4787. "phpstan.phar"
  4788. ],
  4789. "type": "library",
  4790. "autoload": {
  4791. "files": [
  4792. "bootstrap.php"
  4793. ]
  4794. },
  4795. "notification-url": "https://packagist.org/downloads/",
  4796. "license": [
  4797. "MIT"
  4798. ],
  4799. "description": "PHPStan - PHP Static Analysis Tool",
  4800. "keywords": [
  4801. "dev",
  4802. "static analysis"
  4803. ],
  4804. "support": {
  4805. "docs": "https://phpstan.org/user-guide/getting-started",
  4806. "forum": "https://github.com/phpstan/phpstan/discussions",
  4807. "issues": "https://github.com/phpstan/phpstan/issues",
  4808. "security": "https://github.com/phpstan/phpstan/security/policy",
  4809. "source": "https://github.com/phpstan/phpstan-src"
  4810. },
  4811. "funding": [
  4812. {
  4813. "url": "https://github.com/ondrejmirtes",
  4814. "type": "github"
  4815. },
  4816. {
  4817. "url": "https://github.com/phpstan",
  4818. "type": "github"
  4819. }
  4820. ],
  4821. "time": "2026-02-28T20:30:03+00:00"
  4822. },
  4823. {
  4824. "name": "rector/rector",
  4825. "version": "1.2.10",
  4826. "source": {
  4827. "type": "git",
  4828. "url": "https://github.com/rectorphp/rector.git",
  4829. "reference": "40f9cf38c05296bd32f444121336a521a293fa61"
  4830. },
  4831. "dist": {
  4832. "type": "zip",
  4833. "url": "https://api.github.com/repos/rectorphp/rector/zipball/40f9cf38c05296bd32f444121336a521a293fa61",
  4834. "reference": "40f9cf38c05296bd32f444121336a521a293fa61",
  4835. "shasum": ""
  4836. },
  4837. "require": {
  4838. "php": "^7.2|^8.0",
  4839. "phpstan/phpstan": "^1.12.5"
  4840. },
  4841. "conflict": {
  4842. "rector/rector-doctrine": "*",
  4843. "rector/rector-downgrade-php": "*",
  4844. "rector/rector-phpunit": "*",
  4845. "rector/rector-symfony": "*"
  4846. },
  4847. "suggest": {
  4848. "ext-dom": "To manipulate phpunit.xml via the custom-rule command"
  4849. },
  4850. "bin": [
  4851. "bin/rector"
  4852. ],
  4853. "type": "library",
  4854. "autoload": {
  4855. "files": [
  4856. "bootstrap.php"
  4857. ]
  4858. },
  4859. "notification-url": "https://packagist.org/downloads/",
  4860. "license": [
  4861. "MIT"
  4862. ],
  4863. "description": "Instant Upgrade and Automated Refactoring of any PHP code",
  4864. "keywords": [
  4865. "automation",
  4866. "dev",
  4867. "migration",
  4868. "refactoring"
  4869. ],
  4870. "support": {
  4871. "issues": "https://github.com/rectorphp/rector/issues",
  4872. "source": "https://github.com/rectorphp/rector/tree/1.2.10"
  4873. },
  4874. "funding": [
  4875. {
  4876. "url": "https://github.com/tomasvotruba",
  4877. "type": "github"
  4878. }
  4879. ],
  4880. "time": "2024-11-08T13:59:10+00:00"
  4881. },
  4882. {
  4883. "name": "symfony/maker-bundle",
  4884. "version": "v1.67.0",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://github.com/symfony/maker-bundle.git",
  4888. "reference": "6ce8b313845f16bcf385ee3cb31d8b24e30d5516"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/6ce8b313845f16bcf385ee3cb31d8b24e30d5516",
  4893. "reference": "6ce8b313845f16bcf385ee3cb31d8b24e30d5516",
  4894. "shasum": ""
  4895. },
  4896. "require": {
  4897. "composer-runtime-api": "^2.1",
  4898. "doctrine/inflector": "^2.0",
  4899. "nikic/php-parser": "^5.0",
  4900. "php": ">=8.1",
  4901. "symfony/config": "^6.4|^7.0|^8.0",
  4902. "symfony/console": "^6.4|^7.0|^8.0",
  4903. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4904. "symfony/deprecation-contracts": "^2.2|^3",
  4905. "symfony/filesystem": "^6.4|^7.0|^8.0",
  4906. "symfony/finder": "^6.4|^7.0|^8.0",
  4907. "symfony/framework-bundle": "^6.4|^7.0|^8.0",
  4908. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  4909. "symfony/process": "^6.4|^7.0|^8.0"
  4910. },
  4911. "conflict": {
  4912. "doctrine/doctrine-bundle": "<2.10",
  4913. "doctrine/orm": "<2.15"
  4914. },
  4915. "require-dev": {
  4916. "composer/semver": "^3.0",
  4917. "doctrine/doctrine-bundle": "^2.10|^3.0",
  4918. "doctrine/orm": "^2.15|^3",
  4919. "doctrine/persistence": "^3.1|^4.0",
  4920. "symfony/http-client": "^6.4|^7.0|^8.0",
  4921. "symfony/phpunit-bridge": "^6.4.1|^7.0|^8.0",
  4922. "symfony/security-core": "^6.4|^7.0|^8.0",
  4923. "symfony/security-http": "^6.4|^7.0|^8.0",
  4924. "symfony/yaml": "^6.4|^7.0|^8.0",
  4925. "twig/twig": "^3.0|^4.x-dev"
  4926. },
  4927. "type": "symfony-bundle",
  4928. "extra": {
  4929. "branch-alias": {
  4930. "dev-main": "1.x-dev"
  4931. }
  4932. },
  4933. "autoload": {
  4934. "psr-4": {
  4935. "Symfony\\Bundle\\MakerBundle\\": "src/"
  4936. }
  4937. },
  4938. "notification-url": "https://packagist.org/downloads/",
  4939. "license": [
  4940. "MIT"
  4941. ],
  4942. "authors": [
  4943. {
  4944. "name": "Symfony Community",
  4945. "homepage": "https://symfony.com/contributors"
  4946. }
  4947. ],
  4948. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  4949. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  4950. "keywords": [
  4951. "code generator",
  4952. "dev",
  4953. "generator",
  4954. "scaffold",
  4955. "scaffolding"
  4956. ],
  4957. "support": {
  4958. "issues": "https://github.com/symfony/maker-bundle/issues",
  4959. "source": "https://github.com/symfony/maker-bundle/tree/v1.67.0"
  4960. },
  4961. "funding": [
  4962. {
  4963. "url": "https://symfony.com/sponsor",
  4964. "type": "custom"
  4965. },
  4966. {
  4967. "url": "https://github.com/fabpot",
  4968. "type": "github"
  4969. },
  4970. {
  4971. "url": "https://github.com/nicolas-grekas",
  4972. "type": "github"
  4973. },
  4974. {
  4975. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4976. "type": "tidelift"
  4977. }
  4978. ],
  4979. "time": "2026-03-18T13:39:06+00:00"
  4980. },
  4981. {
  4982. "name": "symfony/process",
  4983. "version": "v7.1.8",
  4984. "source": {
  4985. "type": "git",
  4986. "url": "https://github.com/symfony/process.git",
  4987. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892"
  4988. },
  4989. "dist": {
  4990. "type": "zip",
  4991. "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892",
  4992. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892",
  4993. "shasum": ""
  4994. },
  4995. "require": {
  4996. "php": ">=8.2"
  4997. },
  4998. "type": "library",
  4999. "autoload": {
  5000. "psr-4": {
  5001. "Symfony\\Component\\Process\\": ""
  5002. },
  5003. "exclude-from-classmap": [
  5004. "/Tests/"
  5005. ]
  5006. },
  5007. "notification-url": "https://packagist.org/downloads/",
  5008. "license": [
  5009. "MIT"
  5010. ],
  5011. "authors": [
  5012. {
  5013. "name": "Fabien Potencier",
  5014. "email": "fabien@symfony.com"
  5015. },
  5016. {
  5017. "name": "Symfony Community",
  5018. "homepage": "https://symfony.com/contributors"
  5019. }
  5020. ],
  5021. "description": "Executes commands in sub-processes",
  5022. "homepage": "https://symfony.com",
  5023. "support": {
  5024. "source": "https://github.com/symfony/process/tree/v7.1.8"
  5025. },
  5026. "funding": [
  5027. {
  5028. "url": "https://symfony.com/sponsor",
  5029. "type": "custom"
  5030. },
  5031. {
  5032. "url": "https://github.com/fabpot",
  5033. "type": "github"
  5034. },
  5035. {
  5036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5037. "type": "tidelift"
  5038. }
  5039. ],
  5040. "time": "2024-11-06T14:23:19+00:00"
  5041. }
  5042. ],
  5043. "aliases": [],
  5044. "minimum-stability": "stable",
  5045. "stability-flags": [],
  5046. "prefer-stable": true,
  5047. "prefer-lowest": false,
  5048. "platform": {
  5049. "php": ">=8.2",
  5050. "ext-ctype": "*",
  5051. "ext-iconv": "*"
  5052. },
  5053. "platform-dev": [],
  5054. "plugin-api-version": "2.6.0"
  5055. }