composer.lock 167 KB

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