Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

composer.lock 178KB

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