composer.lock 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573
  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": "e2fd55cc0f6033f4b9548d00a95fedb0",
  8. "packages": [
  9. {
  10. "name": "doctrine/cache",
  11. "version": "2.2.0",
  12. "dist": {
  13. "type": "zip",
  14. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/cache/2.2.0/doctrine-cache-2.2.0.zip",
  15. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": "~7.1 || ^8.0"
  20. },
  21. "conflict": {
  22. "doctrine/common": ">2.2,<2.4"
  23. },
  24. "require-dev": {
  25. "cache/integration-tests": "dev-master",
  26. "doctrine/coding-standard": "^9",
  27. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  28. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  29. "symfony/cache": "^4.4 || ^5.4 || ^6",
  30. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  31. },
  32. "type": "library",
  33. "autoload": {
  34. "psr-4": {
  35. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  36. }
  37. },
  38. "license": [
  39. "MIT"
  40. ],
  41. "authors": [
  42. {
  43. "name": "Guilherme Blanco",
  44. "email": "guilhermeblanco@gmail.com"
  45. },
  46. {
  47. "name": "Roman Borschel",
  48. "email": "roman@code-factory.org"
  49. },
  50. {
  51. "name": "Benjamin Eberlei",
  52. "email": "kontakt@beberlei.de"
  53. },
  54. {
  55. "name": "Jonathan Wage",
  56. "email": "jonwage@gmail.com"
  57. },
  58. {
  59. "name": "Johannes Schmitt",
  60. "email": "schmittjoh@gmail.com"
  61. }
  62. ],
  63. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  64. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  65. "keywords": [
  66. "abstraction",
  67. "apcu",
  68. "cache",
  69. "caching",
  70. "couchdb",
  71. "memcached",
  72. "php",
  73. "redis",
  74. "xcache"
  75. ],
  76. "funding": [
  77. {
  78. "url": "https://www.doctrine-project.org/sponsorship.html",
  79. "type": "custom"
  80. },
  81. {
  82. "url": "https://www.patreon.com/phpdoctrine",
  83. "type": "patreon"
  84. },
  85. {
  86. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  87. "type": "tidelift"
  88. }
  89. ],
  90. "time": "2022-05-20T20:07:39+00:00"
  91. },
  92. {
  93. "name": "doctrine/collections",
  94. "version": "2.2.2",
  95. "dist": {
  96. "type": "zip",
  97. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/collections/2.2.2/doctrine-collections-2.2.2.zip",
  98. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  99. "shasum": ""
  100. },
  101. "require": {
  102. "doctrine/deprecations": "^1",
  103. "php": "^8.1"
  104. },
  105. "require-dev": {
  106. "doctrine/coding-standard": "^12",
  107. "ext-json": "*",
  108. "phpstan/phpstan": "^1.8",
  109. "phpstan/phpstan-phpunit": "^1.0",
  110. "phpunit/phpunit": "^10.5",
  111. "vimeo/psalm": "^5.11"
  112. },
  113. "type": "library",
  114. "autoload": {
  115. "psr-4": {
  116. "Doctrine\\Common\\Collections\\": "src"
  117. }
  118. },
  119. "license": [
  120. "MIT"
  121. ],
  122. "authors": [
  123. {
  124. "name": "Guilherme Blanco",
  125. "email": "guilhermeblanco@gmail.com"
  126. },
  127. {
  128. "name": "Roman Borschel",
  129. "email": "roman@code-factory.org"
  130. },
  131. {
  132. "name": "Benjamin Eberlei",
  133. "email": "kontakt@beberlei.de"
  134. },
  135. {
  136. "name": "Jonathan Wage",
  137. "email": "jonwage@gmail.com"
  138. },
  139. {
  140. "name": "Johannes Schmitt",
  141. "email": "schmittjoh@gmail.com"
  142. }
  143. ],
  144. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  145. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  146. "keywords": [
  147. "array",
  148. "collections",
  149. "iterators",
  150. "php"
  151. ],
  152. "funding": [
  153. {
  154. "url": "https://www.doctrine-project.org/sponsorship.html",
  155. "type": "custom"
  156. },
  157. {
  158. "url": "https://www.patreon.com/phpdoctrine",
  159. "type": "patreon"
  160. },
  161. {
  162. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  163. "type": "tidelift"
  164. }
  165. ],
  166. "time": "2024-04-18T06:56:21+00:00"
  167. },
  168. {
  169. "name": "doctrine/dbal",
  170. "version": "3.9.3",
  171. "dist": {
  172. "type": "zip",
  173. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/dbal/3.9.3/doctrine-dbal-3.9.3.zip",
  174. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  175. "shasum": ""
  176. },
  177. "require": {
  178. "composer-runtime-api": "^2",
  179. "doctrine/cache": "^1.11|^2.0",
  180. "doctrine/deprecations": "^0.5.3|^1",
  181. "doctrine/event-manager": "^1|^2",
  182. "php": "^7.4 || ^8.0",
  183. "psr/cache": "^1|^2|^3",
  184. "psr/log": "^1|^2|^3"
  185. },
  186. "require-dev": {
  187. "doctrine/coding-standard": "12.0.0",
  188. "fig/log-test": "^1",
  189. "jetbrains/phpstorm-stubs": "2023.1",
  190. "phpstan/phpstan": "1.12.6",
  191. "phpstan/phpstan-strict-rules": "^1.6",
  192. "phpunit/phpunit": "9.6.20",
  193. "psalm/plugin-phpunit": "0.18.4",
  194. "slevomat/coding-standard": "8.13.1",
  195. "squizlabs/php_codesniffer": "3.10.2",
  196. "symfony/cache": "^5.4|^6.0|^7.0",
  197. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  198. "vimeo/psalm": "4.30.0"
  199. },
  200. "suggest": {
  201. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  202. },
  203. "bin": [
  204. "bin/doctrine-dbal"
  205. ],
  206. "type": "library",
  207. "autoload": {
  208. "psr-4": {
  209. "Doctrine\\DBAL\\": "src"
  210. }
  211. },
  212. "license": [
  213. "MIT"
  214. ],
  215. "authors": [
  216. {
  217. "name": "Guilherme Blanco",
  218. "email": "guilhermeblanco@gmail.com"
  219. },
  220. {
  221. "name": "Roman Borschel",
  222. "email": "roman@code-factory.org"
  223. },
  224. {
  225. "name": "Benjamin Eberlei",
  226. "email": "kontakt@beberlei.de"
  227. },
  228. {
  229. "name": "Jonathan Wage",
  230. "email": "jonwage@gmail.com"
  231. }
  232. ],
  233. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  234. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  235. "keywords": [
  236. "abstraction",
  237. "database",
  238. "db2",
  239. "dbal",
  240. "mariadb",
  241. "mssql",
  242. "mysql",
  243. "oci8",
  244. "oracle",
  245. "pdo",
  246. "pgsql",
  247. "postgresql",
  248. "queryobject",
  249. "sasql",
  250. "sql",
  251. "sqlite",
  252. "sqlserver",
  253. "sqlsrv"
  254. ],
  255. "funding": [
  256. {
  257. "url": "https://www.doctrine-project.org/sponsorship.html",
  258. "type": "custom"
  259. },
  260. {
  261. "url": "https://www.patreon.com/phpdoctrine",
  262. "type": "patreon"
  263. },
  264. {
  265. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  266. "type": "tidelift"
  267. }
  268. ],
  269. "time": "2024-10-10T17:56:43+00:00"
  270. },
  271. {
  272. "name": "doctrine/deprecations",
  273. "version": "1.1.4",
  274. "dist": {
  275. "type": "zip",
  276. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/deprecations/1.1.4/doctrine-deprecations-1.1.4.zip",
  277. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  278. "shasum": ""
  279. },
  280. "require": {
  281. "php": "^7.1 || ^8.0"
  282. },
  283. "require-dev": {
  284. "doctrine/coding-standard": "^9 || ^12",
  285. "phpstan/phpstan": "1.4.10 || 2.0.3",
  286. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  287. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  288. "psr/log": "^1 || ^2 || ^3"
  289. },
  290. "suggest": {
  291. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  292. },
  293. "type": "library",
  294. "autoload": {
  295. "psr-4": {
  296. "Doctrine\\Deprecations\\": "src"
  297. }
  298. },
  299. "license": [
  300. "MIT"
  301. ],
  302. "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.",
  303. "homepage": "https://www.doctrine-project.org/",
  304. "time": "2024-12-07T21:18:45+00:00"
  305. },
  306. {
  307. "name": "doctrine/doctrine-bundle",
  308. "version": "2.13.1",
  309. "dist": {
  310. "type": "zip",
  311. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/doctrine-bundle/2.13.1/doctrine-doctrine-bundle-2.13.1.zip",
  312. "reference": "2740ad8b8739b39ab37d409c972b092f632b025a",
  313. "shasum": ""
  314. },
  315. "require": {
  316. "doctrine/cache": "^1.11 || ^2.0",
  317. "doctrine/dbal": "^3.7.0 || ^4.0",
  318. "doctrine/persistence": "^2.2 || ^3",
  319. "doctrine/sql-formatter": "^1.0.1",
  320. "php": "^7.4 || ^8.0",
  321. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  322. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  323. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  324. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  325. "symfony/deprecation-contracts": "^2.1 || ^3",
  326. "symfony/doctrine-bridge": "^5.4.46 || ^6.4.3 || ^7.0.3",
  327. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  328. "symfony/polyfill-php80": "^1.15",
  329. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  330. },
  331. "conflict": {
  332. "doctrine/annotations": ">=3.0",
  333. "doctrine/orm": "<2.17 || >=4.0",
  334. "twig/twig": "<1.34 || >=2.0 <2.4"
  335. },
  336. "require-dev": {
  337. "doctrine/annotations": "^1 || ^2",
  338. "doctrine/coding-standard": "^12",
  339. "doctrine/deprecations": "^1.0",
  340. "doctrine/orm": "^2.17 || ^3.0",
  341. "friendsofphp/proxy-manager-lts": "^1.0",
  342. "phpunit/phpunit": "^9.5.26",
  343. "psalm/plugin-phpunit": "^0.18.4",
  344. "psalm/plugin-symfony": "^5",
  345. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  346. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  347. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  348. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  349. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  350. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  351. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  352. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  353. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  354. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  355. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  356. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  357. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  358. "vimeo/psalm": "^5.15"
  359. },
  360. "suggest": {
  361. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  362. "ext-pdo": "*",
  363. "symfony/web-profiler-bundle": "To use the data collector."
  364. },
  365. "type": "symfony-bundle",
  366. "autoload": {
  367. "psr-4": {
  368. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  369. }
  370. },
  371. "license": [
  372. "MIT"
  373. ],
  374. "authors": [
  375. {
  376. "name": "Fabien Potencier",
  377. "email": "fabien@symfony.com"
  378. },
  379. {
  380. "name": "Benjamin Eberlei",
  381. "email": "kontakt@beberlei.de"
  382. },
  383. {
  384. "name": "Symfony Community",
  385. "homepage": "https://symfony.com/contributors"
  386. },
  387. {
  388. "name": "Doctrine Project",
  389. "homepage": "https://www.doctrine-project.org/"
  390. }
  391. ],
  392. "description": "Symfony DoctrineBundle",
  393. "homepage": "https://www.doctrine-project.org",
  394. "keywords": [
  395. "database",
  396. "dbal",
  397. "orm",
  398. "persistence"
  399. ],
  400. "funding": [
  401. {
  402. "url": "https://www.doctrine-project.org/sponsorship.html",
  403. "type": "custom"
  404. },
  405. {
  406. "url": "https://www.patreon.com/phpdoctrine",
  407. "type": "patreon"
  408. },
  409. {
  410. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  411. "type": "tidelift"
  412. }
  413. ],
  414. "time": "2024-11-08T23:27:54+00:00"
  415. },
  416. {
  417. "name": "doctrine/doctrine-migrations-bundle",
  418. "version": "3.3.1",
  419. "dist": {
  420. "type": "zip",
  421. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/doctrine-migrations-bundle/3.3.1/doctrine-doctrine-migrations-bundle-3.3.1.zip",
  422. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  423. "shasum": ""
  424. },
  425. "require": {
  426. "doctrine/doctrine-bundle": "^2.4",
  427. "doctrine/migrations": "^3.2",
  428. "php": "^7.2|^8.0",
  429. "symfony/deprecation-contracts": "^2.1 || ^3",
  430. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  431. },
  432. "require-dev": {
  433. "composer/semver": "^3.0",
  434. "doctrine/coding-standard": "^12",
  435. "doctrine/orm": "^2.6 || ^3",
  436. "doctrine/persistence": "^2.0 || ^3 ",
  437. "phpstan/phpstan": "^1.4",
  438. "phpstan/phpstan-deprecation-rules": "^1",
  439. "phpstan/phpstan-phpunit": "^1",
  440. "phpstan/phpstan-strict-rules": "^1.1",
  441. "phpstan/phpstan-symfony": "^1.3",
  442. "phpunit/phpunit": "^8.5|^9.5",
  443. "psalm/plugin-phpunit": "^0.18.4",
  444. "psalm/plugin-symfony": "^3 || ^5",
  445. "symfony/phpunit-bridge": "^6.3 || ^7",
  446. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  447. "vimeo/psalm": "^4.30 || ^5.15"
  448. },
  449. "type": "symfony-bundle",
  450. "autoload": {
  451. "psr-4": {
  452. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  453. },
  454. "exclude-from-classmap": [
  455. "/Tests/"
  456. ]
  457. },
  458. "license": [
  459. "MIT"
  460. ],
  461. "authors": [
  462. {
  463. "name": "Fabien Potencier",
  464. "email": "fabien@symfony.com"
  465. },
  466. {
  467. "name": "Doctrine Project",
  468. "homepage": "https://www.doctrine-project.org"
  469. },
  470. {
  471. "name": "Symfony Community",
  472. "homepage": "https://symfony.com/contributors"
  473. }
  474. ],
  475. "description": "Symfony DoctrineMigrationsBundle",
  476. "homepage": "https://www.doctrine-project.org",
  477. "keywords": [
  478. "dbal",
  479. "migrations",
  480. "schema"
  481. ],
  482. "funding": [
  483. {
  484. "url": "https://www.doctrine-project.org/sponsorship.html",
  485. "type": "custom"
  486. },
  487. {
  488. "url": "https://www.patreon.com/phpdoctrine",
  489. "type": "patreon"
  490. },
  491. {
  492. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  493. "type": "tidelift"
  494. }
  495. ],
  496. "time": "2024-05-14T20:32:18+00:00"
  497. },
  498. {
  499. "name": "doctrine/event-manager",
  500. "version": "2.0.1",
  501. "dist": {
  502. "type": "zip",
  503. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/event-manager/2.0.1/doctrine-event-manager-2.0.1.zip",
  504. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  505. "shasum": ""
  506. },
  507. "require": {
  508. "php": "^8.1"
  509. },
  510. "conflict": {
  511. "doctrine/common": "<2.9"
  512. },
  513. "require-dev": {
  514. "doctrine/coding-standard": "^12",
  515. "phpstan/phpstan": "^1.8.8",
  516. "phpunit/phpunit": "^10.5",
  517. "vimeo/psalm": "^5.24"
  518. },
  519. "type": "library",
  520. "autoload": {
  521. "psr-4": {
  522. "Doctrine\\Common\\": "src"
  523. }
  524. },
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Guilherme Blanco",
  531. "email": "guilhermeblanco@gmail.com"
  532. },
  533. {
  534. "name": "Roman Borschel",
  535. "email": "roman@code-factory.org"
  536. },
  537. {
  538. "name": "Benjamin Eberlei",
  539. "email": "kontakt@beberlei.de"
  540. },
  541. {
  542. "name": "Jonathan Wage",
  543. "email": "jonwage@gmail.com"
  544. },
  545. {
  546. "name": "Johannes Schmitt",
  547. "email": "schmittjoh@gmail.com"
  548. },
  549. {
  550. "name": "Marco Pivetta",
  551. "email": "ocramius@gmail.com"
  552. }
  553. ],
  554. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  555. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  556. "keywords": [
  557. "event",
  558. "event dispatcher",
  559. "event manager",
  560. "event system",
  561. "events"
  562. ],
  563. "funding": [
  564. {
  565. "url": "https://www.doctrine-project.org/sponsorship.html",
  566. "type": "custom"
  567. },
  568. {
  569. "url": "https://www.patreon.com/phpdoctrine",
  570. "type": "patreon"
  571. },
  572. {
  573. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  574. "type": "tidelift"
  575. }
  576. ],
  577. "time": "2024-05-22T20:47:39+00:00"
  578. },
  579. {
  580. "name": "doctrine/inflector",
  581. "version": "2.0.10",
  582. "dist": {
  583. "type": "zip",
  584. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/inflector/2.0.10/doctrine-inflector-2.0.10.zip",
  585. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  586. "shasum": ""
  587. },
  588. "require": {
  589. "php": "^7.2 || ^8.0"
  590. },
  591. "require-dev": {
  592. "doctrine/coding-standard": "^11.0",
  593. "phpstan/phpstan": "^1.8",
  594. "phpstan/phpstan-phpunit": "^1.1",
  595. "phpstan/phpstan-strict-rules": "^1.3",
  596. "phpunit/phpunit": "^8.5 || ^9.5",
  597. "vimeo/psalm": "^4.25 || ^5.4"
  598. },
  599. "type": "library",
  600. "autoload": {
  601. "psr-4": {
  602. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  603. }
  604. },
  605. "license": [
  606. "MIT"
  607. ],
  608. "authors": [
  609. {
  610. "name": "Guilherme Blanco",
  611. "email": "guilhermeblanco@gmail.com"
  612. },
  613. {
  614. "name": "Roman Borschel",
  615. "email": "roman@code-factory.org"
  616. },
  617. {
  618. "name": "Benjamin Eberlei",
  619. "email": "kontakt@beberlei.de"
  620. },
  621. {
  622. "name": "Jonathan Wage",
  623. "email": "jonwage@gmail.com"
  624. },
  625. {
  626. "name": "Johannes Schmitt",
  627. "email": "schmittjoh@gmail.com"
  628. }
  629. ],
  630. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  631. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  632. "keywords": [
  633. "inflection",
  634. "inflector",
  635. "lowercase",
  636. "manipulation",
  637. "php",
  638. "plural",
  639. "singular",
  640. "strings",
  641. "uppercase",
  642. "words"
  643. ],
  644. "funding": [
  645. {
  646. "url": "https://www.doctrine-project.org/sponsorship.html",
  647. "type": "custom"
  648. },
  649. {
  650. "url": "https://www.patreon.com/phpdoctrine",
  651. "type": "patreon"
  652. },
  653. {
  654. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  655. "type": "tidelift"
  656. }
  657. ],
  658. "time": "2024-02-18T20:23:39+00:00"
  659. },
  660. {
  661. "name": "doctrine/instantiator",
  662. "version": "2.0.0",
  663. "dist": {
  664. "type": "zip",
  665. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/instantiator/2.0.0/doctrine-instantiator-2.0.0.zip",
  666. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  667. "shasum": ""
  668. },
  669. "require": {
  670. "php": "^8.1"
  671. },
  672. "require-dev": {
  673. "doctrine/coding-standard": "^11",
  674. "ext-pdo": "*",
  675. "ext-phar": "*",
  676. "phpbench/phpbench": "^1.2",
  677. "phpstan/phpstan": "^1.9.4",
  678. "phpstan/phpstan-phpunit": "^1.3",
  679. "phpunit/phpunit": "^9.5.27",
  680. "vimeo/psalm": "^5.4"
  681. },
  682. "type": "library",
  683. "autoload": {
  684. "psr-4": {
  685. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  686. }
  687. },
  688. "license": [
  689. "MIT"
  690. ],
  691. "authors": [
  692. {
  693. "name": "Marco Pivetta",
  694. "email": "ocramius@gmail.com",
  695. "homepage": "https://ocramius.github.io/"
  696. }
  697. ],
  698. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  699. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  700. "keywords": [
  701. "constructor",
  702. "instantiate"
  703. ],
  704. "funding": [
  705. {
  706. "url": "https://www.doctrine-project.org/sponsorship.html",
  707. "type": "custom"
  708. },
  709. {
  710. "url": "https://www.patreon.com/phpdoctrine",
  711. "type": "patreon"
  712. },
  713. {
  714. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  715. "type": "tidelift"
  716. }
  717. ],
  718. "time": "2022-12-30T00:23:10+00:00"
  719. },
  720. {
  721. "name": "doctrine/lexer",
  722. "version": "3.0.1",
  723. "dist": {
  724. "type": "zip",
  725. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/lexer/3.0.1/doctrine-lexer-3.0.1.zip",
  726. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  727. "shasum": ""
  728. },
  729. "require": {
  730. "php": "^8.1"
  731. },
  732. "require-dev": {
  733. "doctrine/coding-standard": "^12",
  734. "phpstan/phpstan": "^1.10",
  735. "phpunit/phpunit": "^10.5",
  736. "psalm/plugin-phpunit": "^0.18.3",
  737. "vimeo/psalm": "^5.21"
  738. },
  739. "type": "library",
  740. "autoload": {
  741. "psr-4": {
  742. "Doctrine\\Common\\Lexer\\": "src"
  743. }
  744. },
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Guilherme Blanco",
  751. "email": "guilhermeblanco@gmail.com"
  752. },
  753. {
  754. "name": "Roman Borschel",
  755. "email": "roman@code-factory.org"
  756. },
  757. {
  758. "name": "Johannes Schmitt",
  759. "email": "schmittjoh@gmail.com"
  760. }
  761. ],
  762. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  763. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  764. "keywords": [
  765. "annotations",
  766. "docblock",
  767. "lexer",
  768. "parser",
  769. "php"
  770. ],
  771. "funding": [
  772. {
  773. "url": "https://www.doctrine-project.org/sponsorship.html",
  774. "type": "custom"
  775. },
  776. {
  777. "url": "https://www.patreon.com/phpdoctrine",
  778. "type": "patreon"
  779. },
  780. {
  781. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  782. "type": "tidelift"
  783. }
  784. ],
  785. "time": "2024-02-05T11:56:58+00:00"
  786. },
  787. {
  788. "name": "doctrine/migrations",
  789. "version": "3.8.2",
  790. "dist": {
  791. "type": "zip",
  792. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/migrations/3.8.2/doctrine-migrations-3.8.2.zip",
  793. "reference": "5007eb1168691225ac305fe16856755c20860842",
  794. "shasum": ""
  795. },
  796. "require": {
  797. "composer-runtime-api": "^2",
  798. "doctrine/dbal": "^3.6 || ^4",
  799. "doctrine/deprecations": "^0.5.3 || ^1",
  800. "doctrine/event-manager": "^1.2 || ^2.0",
  801. "php": "^8.1",
  802. "psr/log": "^1.1.3 || ^2 || ^3",
  803. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  804. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  805. "symfony/var-exporter": "^6.2 || ^7.0"
  806. },
  807. "conflict": {
  808. "doctrine/orm": "<2.12 || >=4"
  809. },
  810. "require-dev": {
  811. "doctrine/coding-standard": "^12",
  812. "doctrine/orm": "^2.13 || ^3",
  813. "doctrine/persistence": "^2 || ^3",
  814. "doctrine/sql-formatter": "^1.0",
  815. "ext-pdo_sqlite": "*",
  816. "fig/log-test": "^1",
  817. "phpstan/phpstan": "^1.10",
  818. "phpstan/phpstan-deprecation-rules": "^1.1",
  819. "phpstan/phpstan-phpunit": "^1.3",
  820. "phpstan/phpstan-strict-rules": "^1.4",
  821. "phpstan/phpstan-symfony": "^1.3",
  822. "phpunit/phpunit": "^10.3",
  823. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  824. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  825. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  826. },
  827. "suggest": {
  828. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  829. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  830. },
  831. "bin": [
  832. "bin/doctrine-migrations"
  833. ],
  834. "type": "library",
  835. "autoload": {
  836. "psr-4": {
  837. "Doctrine\\Migrations\\": "src"
  838. }
  839. },
  840. "license": [
  841. "MIT"
  842. ],
  843. "authors": [
  844. {
  845. "name": "Benjamin Eberlei",
  846. "email": "kontakt@beberlei.de"
  847. },
  848. {
  849. "name": "Jonathan Wage",
  850. "email": "jonwage@gmail.com"
  851. },
  852. {
  853. "name": "Michael Simonson",
  854. "email": "contact@mikesimonson.com"
  855. }
  856. ],
  857. "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.",
  858. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  859. "keywords": [
  860. "database",
  861. "dbal",
  862. "migrations"
  863. ],
  864. "funding": [
  865. {
  866. "url": "https://www.doctrine-project.org/sponsorship.html",
  867. "type": "custom"
  868. },
  869. {
  870. "url": "https://www.patreon.com/phpdoctrine",
  871. "type": "patreon"
  872. },
  873. {
  874. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  875. "type": "tidelift"
  876. }
  877. ],
  878. "time": "2024-10-10T21:35:27+00:00"
  879. },
  880. {
  881. "name": "doctrine/orm",
  882. "version": "3.3.1",
  883. "dist": {
  884. "type": "zip",
  885. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/orm/3.3.1/doctrine-orm-3.3.1.zip",
  886. "reference": "b1f8253105aa5382c495e5f9f8ef34e297775428",
  887. "shasum": ""
  888. },
  889. "require": {
  890. "composer-runtime-api": "^2",
  891. "doctrine/collections": "^2.2",
  892. "doctrine/dbal": "^3.8.2 || ^4",
  893. "doctrine/deprecations": "^0.5.3 || ^1",
  894. "doctrine/event-manager": "^1.2 || ^2",
  895. "doctrine/inflector": "^1.4 || ^2.0",
  896. "doctrine/instantiator": "^1.3 || ^2",
  897. "doctrine/lexer": "^3",
  898. "doctrine/persistence": "^3.3.1 || ^4",
  899. "ext-ctype": "*",
  900. "php": "^8.1",
  901. "psr/cache": "^1 || ^2 || ^3",
  902. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  903. "symfony/var-exporter": "^6.3.9 || ^7.0"
  904. },
  905. "require-dev": {
  906. "doctrine/coding-standard": "^12.0",
  907. "phpbench/phpbench": "^1.0",
  908. "phpdocumentor/guides-cli": "^1.4",
  909. "phpstan/extension-installer": "^1.4",
  910. "phpstan/phpstan": "2.0.3",
  911. "phpstan/phpstan-deprecation-rules": "^2",
  912. "phpunit/phpunit": "^10.4.0",
  913. "psr/log": "^1 || ^2 || ^3",
  914. "squizlabs/php_codesniffer": "3.7.2",
  915. "symfony/cache": "^5.4 || ^6.2 || ^7.0"
  916. },
  917. "suggest": {
  918. "ext-dom": "Provides support for XSD validation for XML mapping files",
  919. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  920. },
  921. "type": "library",
  922. "autoload": {
  923. "psr-4": {
  924. "Doctrine\\ORM\\": "src"
  925. }
  926. },
  927. "license": [
  928. "MIT"
  929. ],
  930. "authors": [
  931. {
  932. "name": "Guilherme Blanco",
  933. "email": "guilhermeblanco@gmail.com"
  934. },
  935. {
  936. "name": "Roman Borschel",
  937. "email": "roman@code-factory.org"
  938. },
  939. {
  940. "name": "Benjamin Eberlei",
  941. "email": "kontakt@beberlei.de"
  942. },
  943. {
  944. "name": "Jonathan Wage",
  945. "email": "jonwage@gmail.com"
  946. },
  947. {
  948. "name": "Marco Pivetta",
  949. "email": "ocramius@gmail.com"
  950. }
  951. ],
  952. "description": "Object-Relational-Mapper for PHP",
  953. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  954. "keywords": [
  955. "database",
  956. "orm"
  957. ],
  958. "time": "2024-12-19T07:08:14+00:00"
  959. },
  960. {
  961. "name": "doctrine/persistence",
  962. "version": "3.4.0",
  963. "dist": {
  964. "type": "zip",
  965. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/persistence/3.4.0/doctrine-persistence-3.4.0.zip",
  966. "reference": "0ea965320cec355dba75031c1b23d4c78362e3ff",
  967. "shasum": ""
  968. },
  969. "require": {
  970. "doctrine/event-manager": "^1 || ^2",
  971. "php": "^7.2 || ^8.0",
  972. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  973. },
  974. "conflict": {
  975. "doctrine/common": "<2.10"
  976. },
  977. "require-dev": {
  978. "doctrine/coding-standard": "^12",
  979. "doctrine/common": "^3.0",
  980. "phpstan/phpstan": "1.12.7",
  981. "phpstan/phpstan-phpunit": "^1",
  982. "phpstan/phpstan-strict-rules": "^1.1",
  983. "phpunit/phpunit": "^8.5.38 || ^9.5",
  984. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  985. },
  986. "type": "library",
  987. "autoload": {
  988. "psr-4": {
  989. "Doctrine\\Persistence\\": "src/Persistence"
  990. }
  991. },
  992. "license": [
  993. "MIT"
  994. ],
  995. "authors": [
  996. {
  997. "name": "Guilherme Blanco",
  998. "email": "guilhermeblanco@gmail.com"
  999. },
  1000. {
  1001. "name": "Roman Borschel",
  1002. "email": "roman@code-factory.org"
  1003. },
  1004. {
  1005. "name": "Benjamin Eberlei",
  1006. "email": "kontakt@beberlei.de"
  1007. },
  1008. {
  1009. "name": "Jonathan Wage",
  1010. "email": "jonwage@gmail.com"
  1011. },
  1012. {
  1013. "name": "Johannes Schmitt",
  1014. "email": "schmittjoh@gmail.com"
  1015. },
  1016. {
  1017. "name": "Marco Pivetta",
  1018. "email": "ocramius@gmail.com"
  1019. }
  1020. ],
  1021. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1022. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1023. "keywords": [
  1024. "mapper",
  1025. "object",
  1026. "odm",
  1027. "orm",
  1028. "persistence"
  1029. ],
  1030. "funding": [
  1031. {
  1032. "url": "https://www.doctrine-project.org/sponsorship.html",
  1033. "type": "custom"
  1034. },
  1035. {
  1036. "url": "https://www.patreon.com/phpdoctrine",
  1037. "type": "patreon"
  1038. },
  1039. {
  1040. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1041. "type": "tidelift"
  1042. }
  1043. ],
  1044. "time": "2024-10-30T19:48:12+00:00"
  1045. },
  1046. {
  1047. "name": "doctrine/sql-formatter",
  1048. "version": "1.5.1",
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "http://nexus.intra.cnaf/repository/composer-proxy/doctrine/sql-formatter/1.5.1/doctrine-sql-formatter-1.5.1.zip",
  1052. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86",
  1053. "shasum": ""
  1054. },
  1055. "require": {
  1056. "php": "^8.1"
  1057. },
  1058. "require-dev": {
  1059. "doctrine/coding-standard": "^12",
  1060. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1061. "phpstan/phpstan": "^1.10",
  1062. "phpunit/phpunit": "^10.5",
  1063. "vimeo/psalm": "^5.24"
  1064. },
  1065. "bin": [
  1066. "bin/sql-formatter"
  1067. ],
  1068. "type": "library",
  1069. "autoload": {
  1070. "psr-4": {
  1071. "Doctrine\\SqlFormatter\\": "src"
  1072. }
  1073. },
  1074. "license": [
  1075. "MIT"
  1076. ],
  1077. "authors": [
  1078. {
  1079. "name": "Jeremy Dorn",
  1080. "email": "jeremy@jeremydorn.com",
  1081. "homepage": "https://jeremydorn.com/"
  1082. }
  1083. ],
  1084. "description": "a PHP SQL highlighting library",
  1085. "homepage": "https://github.com/doctrine/sql-formatter/",
  1086. "keywords": [
  1087. "highlight",
  1088. "sql"
  1089. ],
  1090. "time": "2024-10-21T18:21:57+00:00"
  1091. },
  1092. {
  1093. "name": "psr/cache",
  1094. "version": "3.0.0",
  1095. "dist": {
  1096. "type": "zip",
  1097. "url": "http://nexus.intra.cnaf/repository/composer-proxy/psr/cache/3.0.0/psr-cache-3.0.0.zip",
  1098. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1099. "shasum": ""
  1100. },
  1101. "require": {
  1102. "php": ">=8.0.0"
  1103. },
  1104. "type": "library",
  1105. "extra": {
  1106. "branch-alias": {
  1107. "dev-master": "1.0.x-dev"
  1108. }
  1109. },
  1110. "autoload": {
  1111. "psr-4": {
  1112. "Psr\\Cache\\": "src/"
  1113. }
  1114. },
  1115. "license": [
  1116. "MIT"
  1117. ],
  1118. "authors": [
  1119. {
  1120. "name": "PHP-FIG",
  1121. "homepage": "https://www.php-fig.org/"
  1122. }
  1123. ],
  1124. "description": "Common interface for caching libraries",
  1125. "keywords": [
  1126. "cache",
  1127. "psr",
  1128. "psr-6"
  1129. ],
  1130. "time": "2021-02-03T23:26:27+00:00"
  1131. },
  1132. {
  1133. "name": "psr/container",
  1134. "version": "2.0.2",
  1135. "dist": {
  1136. "type": "zip",
  1137. "url": "http://nexus.intra.cnaf/repository/composer-proxy/psr/container/2.0.2/psr-container-2.0.2.zip",
  1138. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1139. "shasum": ""
  1140. },
  1141. "require": {
  1142. "php": ">=7.4.0"
  1143. },
  1144. "type": "library",
  1145. "extra": {
  1146. "branch-alias": {
  1147. "dev-master": "2.0.x-dev"
  1148. }
  1149. },
  1150. "autoload": {
  1151. "psr-4": {
  1152. "Psr\\Container\\": "src/"
  1153. }
  1154. },
  1155. "license": [
  1156. "MIT"
  1157. ],
  1158. "authors": [
  1159. {
  1160. "name": "PHP-FIG",
  1161. "homepage": "https://www.php-fig.org/"
  1162. }
  1163. ],
  1164. "description": "Common Container Interface (PHP FIG PSR-11)",
  1165. "homepage": "https://github.com/php-fig/container",
  1166. "keywords": [
  1167. "PSR-11",
  1168. "container",
  1169. "container-interface",
  1170. "container-interop",
  1171. "psr"
  1172. ],
  1173. "time": "2021-11-05T16:47:00+00:00"
  1174. },
  1175. {
  1176. "name": "psr/event-dispatcher",
  1177. "version": "1.0.0",
  1178. "dist": {
  1179. "type": "zip",
  1180. "url": "http://nexus.intra.cnaf/repository/composer-proxy/psr/event-dispatcher/1.0.0/psr-event-dispatcher-1.0.0.zip",
  1181. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1182. "shasum": ""
  1183. },
  1184. "require": {
  1185. "php": ">=7.2.0"
  1186. },
  1187. "type": "library",
  1188. "extra": {
  1189. "branch-alias": {
  1190. "dev-master": "1.0.x-dev"
  1191. }
  1192. },
  1193. "autoload": {
  1194. "psr-4": {
  1195. "Psr\\EventDispatcher\\": "src/"
  1196. }
  1197. },
  1198. "license": [
  1199. "MIT"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "PHP-FIG",
  1204. "homepage": "http://www.php-fig.org/"
  1205. }
  1206. ],
  1207. "description": "Standard interfaces for event handling.",
  1208. "keywords": [
  1209. "events",
  1210. "psr",
  1211. "psr-14"
  1212. ],
  1213. "time": "2019-01-08T18:20:26+00:00"
  1214. },
  1215. {
  1216. "name": "psr/log",
  1217. "version": "3.0.2",
  1218. "dist": {
  1219. "type": "zip",
  1220. "url": "http://nexus.intra.cnaf/repository/composer-proxy/psr/log/3.0.2/psr-log-3.0.2.zip",
  1221. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1222. "shasum": ""
  1223. },
  1224. "require": {
  1225. "php": ">=8.0.0"
  1226. },
  1227. "type": "library",
  1228. "extra": {
  1229. "branch-alias": {
  1230. "dev-master": "3.x-dev"
  1231. }
  1232. },
  1233. "autoload": {
  1234. "psr-4": {
  1235. "Psr\\Log\\": "src"
  1236. }
  1237. },
  1238. "license": [
  1239. "MIT"
  1240. ],
  1241. "authors": [
  1242. {
  1243. "name": "PHP-FIG",
  1244. "homepage": "https://www.php-fig.org/"
  1245. }
  1246. ],
  1247. "description": "Common interface for logging libraries",
  1248. "homepage": "https://github.com/php-fig/log",
  1249. "keywords": [
  1250. "log",
  1251. "psr",
  1252. "psr-3"
  1253. ],
  1254. "time": "2024-09-11T13:17:53+00:00"
  1255. },
  1256. {
  1257. "name": "symfony/cache",
  1258. "version": "v6.4.16",
  1259. "dist": {
  1260. "type": "zip",
  1261. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/cache/v6.4.16/symfony-cache-v6.4.16.zip",
  1262. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae",
  1263. "shasum": ""
  1264. },
  1265. "require": {
  1266. "php": ">=8.1",
  1267. "psr/cache": "^2.0|^3.0",
  1268. "psr/log": "^1.1|^2|^3",
  1269. "symfony/cache-contracts": "^2.5|^3",
  1270. "symfony/service-contracts": "^2.5|^3",
  1271. "symfony/var-exporter": "^6.3.6|^7.0"
  1272. },
  1273. "conflict": {
  1274. "doctrine/dbal": "<2.13.1",
  1275. "symfony/dependency-injection": "<5.4",
  1276. "symfony/http-kernel": "<5.4",
  1277. "symfony/var-dumper": "<5.4"
  1278. },
  1279. "provide": {
  1280. "psr/cache-implementation": "2.0|3.0",
  1281. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  1282. "symfony/cache-implementation": "1.1|2.0|3.0"
  1283. },
  1284. "require-dev": {
  1285. "cache/integration-tests": "dev-master",
  1286. "doctrine/dbal": "^2.13.1|^3|^4",
  1287. "predis/predis": "^1.1|^2.0",
  1288. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1289. "symfony/config": "^5.4|^6.0|^7.0",
  1290. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  1291. "symfony/filesystem": "^5.4|^6.0|^7.0",
  1292. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  1293. "symfony/messenger": "^5.4|^6.0|^7.0",
  1294. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  1295. },
  1296. "type": "library",
  1297. "autoload": {
  1298. "psr-4": {
  1299. "Symfony\\Component\\Cache\\": ""
  1300. },
  1301. "classmap": [
  1302. "Traits/ValueWrapper.php"
  1303. ],
  1304. "exclude-from-classmap": [
  1305. "/Tests/"
  1306. ]
  1307. },
  1308. "license": [
  1309. "MIT"
  1310. ],
  1311. "authors": [
  1312. {
  1313. "name": "Nicolas Grekas",
  1314. "email": "p@tchwork.com"
  1315. },
  1316. {
  1317. "name": "Symfony Community",
  1318. "homepage": "https://symfony.com/contributors"
  1319. }
  1320. ],
  1321. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  1322. "homepage": "https://symfony.com",
  1323. "keywords": [
  1324. "caching",
  1325. "psr6"
  1326. ],
  1327. "funding": [
  1328. {
  1329. "url": "https://symfony.com/sponsor",
  1330. "type": "custom"
  1331. },
  1332. {
  1333. "url": "https://github.com/fabpot",
  1334. "type": "github"
  1335. },
  1336. {
  1337. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1338. "type": "tidelift"
  1339. }
  1340. ],
  1341. "time": "2024-11-20T10:10:54+00:00"
  1342. },
  1343. {
  1344. "name": "symfony/cache-contracts",
  1345. "version": "v3.5.1",
  1346. "dist": {
  1347. "type": "zip",
  1348. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/cache-contracts/v3.5.1/symfony-cache-contracts-v3.5.1.zip",
  1349. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  1350. "shasum": ""
  1351. },
  1352. "require": {
  1353. "php": ">=8.1",
  1354. "psr/cache": "^3.0"
  1355. },
  1356. "type": "library",
  1357. "extra": {
  1358. "thanks": {
  1359. "url": "https://github.com/symfony/contracts",
  1360. "name": "symfony/contracts"
  1361. },
  1362. "branch-alias": {
  1363. "dev-main": "3.5-dev"
  1364. }
  1365. },
  1366. "autoload": {
  1367. "psr-4": {
  1368. "Symfony\\Contracts\\Cache\\": ""
  1369. }
  1370. },
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Nicolas Grekas",
  1377. "email": "p@tchwork.com"
  1378. },
  1379. {
  1380. "name": "Symfony Community",
  1381. "homepage": "https://symfony.com/contributors"
  1382. }
  1383. ],
  1384. "description": "Generic abstractions related to caching",
  1385. "homepage": "https://symfony.com",
  1386. "keywords": [
  1387. "abstractions",
  1388. "contracts",
  1389. "decoupling",
  1390. "interfaces",
  1391. "interoperability",
  1392. "standards"
  1393. ],
  1394. "funding": [
  1395. {
  1396. "url": "https://symfony.com/sponsor",
  1397. "type": "custom"
  1398. },
  1399. {
  1400. "url": "https://github.com/fabpot",
  1401. "type": "github"
  1402. },
  1403. {
  1404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1405. "type": "tidelift"
  1406. }
  1407. ],
  1408. "time": "2024-09-25T14:20:29+00:00"
  1409. },
  1410. {
  1411. "name": "symfony/config",
  1412. "version": "v6.4.14",
  1413. "dist": {
  1414. "type": "zip",
  1415. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/config/v6.4.14/symfony-config-v6.4.14.zip",
  1416. "reference": "4e55e7e4ffddd343671ea972216d4509f46c22ef",
  1417. "shasum": ""
  1418. },
  1419. "require": {
  1420. "php": ">=8.1",
  1421. "symfony/deprecation-contracts": "^2.5|^3",
  1422. "symfony/filesystem": "^5.4|^6.0|^7.0",
  1423. "symfony/polyfill-ctype": "~1.8"
  1424. },
  1425. "conflict": {
  1426. "symfony/finder": "<5.4",
  1427. "symfony/service-contracts": "<2.5"
  1428. },
  1429. "require-dev": {
  1430. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  1431. "symfony/finder": "^5.4|^6.0|^7.0",
  1432. "symfony/messenger": "^5.4|^6.0|^7.0",
  1433. "symfony/service-contracts": "^2.5|^3",
  1434. "symfony/yaml": "^5.4|^6.0|^7.0"
  1435. },
  1436. "type": "library",
  1437. "autoload": {
  1438. "psr-4": {
  1439. "Symfony\\Component\\Config\\": ""
  1440. },
  1441. "exclude-from-classmap": [
  1442. "/Tests/"
  1443. ]
  1444. },
  1445. "license": [
  1446. "MIT"
  1447. ],
  1448. "authors": [
  1449. {
  1450. "name": "Fabien Potencier",
  1451. "email": "fabien@symfony.com"
  1452. },
  1453. {
  1454. "name": "Symfony Community",
  1455. "homepage": "https://symfony.com/contributors"
  1456. }
  1457. ],
  1458. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  1459. "homepage": "https://symfony.com",
  1460. "funding": [
  1461. {
  1462. "url": "https://symfony.com/sponsor",
  1463. "type": "custom"
  1464. },
  1465. {
  1466. "url": "https://github.com/fabpot",
  1467. "type": "github"
  1468. },
  1469. {
  1470. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1471. "type": "tidelift"
  1472. }
  1473. ],
  1474. "time": "2024-11-04T11:33:53+00:00"
  1475. },
  1476. {
  1477. "name": "symfony/console",
  1478. "version": "v6.4.17",
  1479. "dist": {
  1480. "type": "zip",
  1481. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/console/v6.4.17/symfony-console-v6.4.17.zip",
  1482. "reference": "799445db3f15768ecc382ac5699e6da0520a0a04",
  1483. "shasum": ""
  1484. },
  1485. "require": {
  1486. "php": ">=8.1",
  1487. "symfony/deprecation-contracts": "^2.5|^3",
  1488. "symfony/polyfill-mbstring": "~1.0",
  1489. "symfony/service-contracts": "^2.5|^3",
  1490. "symfony/string": "^5.4|^6.0|^7.0"
  1491. },
  1492. "conflict": {
  1493. "symfony/dependency-injection": "<5.4",
  1494. "symfony/dotenv": "<5.4",
  1495. "symfony/event-dispatcher": "<5.4",
  1496. "symfony/lock": "<5.4",
  1497. "symfony/process": "<5.4"
  1498. },
  1499. "provide": {
  1500. "psr/log-implementation": "1.0|2.0|3.0"
  1501. },
  1502. "require-dev": {
  1503. "psr/log": "^1|^2|^3",
  1504. "symfony/config": "^5.4|^6.0|^7.0",
  1505. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  1506. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  1507. "symfony/http-foundation": "^6.4|^7.0",
  1508. "symfony/http-kernel": "^6.4|^7.0",
  1509. "symfony/lock": "^5.4|^6.0|^7.0",
  1510. "symfony/messenger": "^5.4|^6.0|^7.0",
  1511. "symfony/process": "^5.4|^6.0|^7.0",
  1512. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  1513. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  1514. },
  1515. "type": "library",
  1516. "autoload": {
  1517. "psr-4": {
  1518. "Symfony\\Component\\Console\\": ""
  1519. },
  1520. "exclude-from-classmap": [
  1521. "/Tests/"
  1522. ]
  1523. },
  1524. "license": [
  1525. "MIT"
  1526. ],
  1527. "authors": [
  1528. {
  1529. "name": "Fabien Potencier",
  1530. "email": "fabien@symfony.com"
  1531. },
  1532. {
  1533. "name": "Symfony Community",
  1534. "homepage": "https://symfony.com/contributors"
  1535. }
  1536. ],
  1537. "description": "Eases the creation of beautiful and testable command line interfaces",
  1538. "homepage": "https://symfony.com",
  1539. "keywords": [
  1540. "cli",
  1541. "command-line",
  1542. "console",
  1543. "terminal"
  1544. ],
  1545. "funding": [
  1546. {
  1547. "url": "https://symfony.com/sponsor",
  1548. "type": "custom"
  1549. },
  1550. {
  1551. "url": "https://github.com/fabpot",
  1552. "type": "github"
  1553. },
  1554. {
  1555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1556. "type": "tidelift"
  1557. }
  1558. ],
  1559. "time": "2024-12-07T12:07:30+00:00"
  1560. },
  1561. {
  1562. "name": "symfony/dependency-injection",
  1563. "version": "v6.4.16",
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/dependency-injection/v6.4.16/symfony-dependency-injection-v6.4.16.zip",
  1567. "reference": "7a379d8871f6a36f01559c14e11141cc02eb8dc8",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "php": ">=8.1",
  1572. "psr/container": "^1.1|^2.0",
  1573. "symfony/deprecation-contracts": "^2.5|^3",
  1574. "symfony/service-contracts": "^2.5|^3.0",
  1575. "symfony/var-exporter": "^6.2.10|^7.0"
  1576. },
  1577. "conflict": {
  1578. "ext-psr": "<1.1|>=2",
  1579. "symfony/config": "<6.1",
  1580. "symfony/finder": "<5.4",
  1581. "symfony/proxy-manager-bridge": "<6.3",
  1582. "symfony/yaml": "<5.4"
  1583. },
  1584. "provide": {
  1585. "psr/container-implementation": "1.1|2.0",
  1586. "symfony/service-implementation": "1.1|2.0|3.0"
  1587. },
  1588. "require-dev": {
  1589. "symfony/config": "^6.1|^7.0",
  1590. "symfony/expression-language": "^5.4|^6.0|^7.0",
  1591. "symfony/yaml": "^5.4|^6.0|^7.0"
  1592. },
  1593. "type": "library",
  1594. "autoload": {
  1595. "psr-4": {
  1596. "Symfony\\Component\\DependencyInjection\\": ""
  1597. },
  1598. "exclude-from-classmap": [
  1599. "/Tests/"
  1600. ]
  1601. },
  1602. "license": [
  1603. "MIT"
  1604. ],
  1605. "authors": [
  1606. {
  1607. "name": "Fabien Potencier",
  1608. "email": "fabien@symfony.com"
  1609. },
  1610. {
  1611. "name": "Symfony Community",
  1612. "homepage": "https://symfony.com/contributors"
  1613. }
  1614. ],
  1615. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  1616. "homepage": "https://symfony.com",
  1617. "funding": [
  1618. {
  1619. "url": "https://symfony.com/sponsor",
  1620. "type": "custom"
  1621. },
  1622. {
  1623. "url": "https://github.com/fabpot",
  1624. "type": "github"
  1625. },
  1626. {
  1627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1628. "type": "tidelift"
  1629. }
  1630. ],
  1631. "time": "2024-11-25T14:52:46+00:00"
  1632. },
  1633. {
  1634. "name": "symfony/deprecation-contracts",
  1635. "version": "v3.5.1",
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/deprecation-contracts/v3.5.1/symfony-deprecation-contracts-v3.5.1.zip",
  1639. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  1640. "shasum": ""
  1641. },
  1642. "require": {
  1643. "php": ">=8.1"
  1644. },
  1645. "type": "library",
  1646. "extra": {
  1647. "thanks": {
  1648. "url": "https://github.com/symfony/contracts",
  1649. "name": "symfony/contracts"
  1650. },
  1651. "branch-alias": {
  1652. "dev-main": "3.5-dev"
  1653. }
  1654. },
  1655. "autoload": {
  1656. "files": [
  1657. "function.php"
  1658. ]
  1659. },
  1660. "license": [
  1661. "MIT"
  1662. ],
  1663. "authors": [
  1664. {
  1665. "name": "Nicolas Grekas",
  1666. "email": "p@tchwork.com"
  1667. },
  1668. {
  1669. "name": "Symfony Community",
  1670. "homepage": "https://symfony.com/contributors"
  1671. }
  1672. ],
  1673. "description": "A generic function and convention to trigger deprecation notices",
  1674. "homepage": "https://symfony.com",
  1675. "funding": [
  1676. {
  1677. "url": "https://symfony.com/sponsor",
  1678. "type": "custom"
  1679. },
  1680. {
  1681. "url": "https://github.com/fabpot",
  1682. "type": "github"
  1683. },
  1684. {
  1685. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1686. "type": "tidelift"
  1687. }
  1688. ],
  1689. "time": "2024-09-25T14:20:29+00:00"
  1690. },
  1691. {
  1692. "name": "symfony/doctrine-bridge",
  1693. "version": "v6.4.17",
  1694. "dist": {
  1695. "type": "zip",
  1696. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/doctrine-bridge/v6.4.17/symfony-doctrine-bridge-v6.4.17.zip",
  1697. "reference": "2ba7e747a944b69f9f583c35173560afebbff995",
  1698. "shasum": ""
  1699. },
  1700. "require": {
  1701. "doctrine/event-manager": "^1.2|^2",
  1702. "doctrine/persistence": "^3.1",
  1703. "php": ">=8.1",
  1704. "symfony/deprecation-contracts": "^2.5|^3",
  1705. "symfony/polyfill-ctype": "~1.8",
  1706. "symfony/polyfill-mbstring": "~1.0",
  1707. "symfony/service-contracts": "^2.5|^3"
  1708. },
  1709. "conflict": {
  1710. "doctrine/dbal": "<2.13.1",
  1711. "doctrine/lexer": "<1.1",
  1712. "doctrine/orm": "<2.15",
  1713. "symfony/cache": "<5.4",
  1714. "symfony/dependency-injection": "<6.2",
  1715. "symfony/form": "<5.4.38|>=6,<6.4.6|>=7,<7.0.6",
  1716. "symfony/http-foundation": "<6.3",
  1717. "symfony/http-kernel": "<6.2",
  1718. "symfony/lock": "<6.3",
  1719. "symfony/messenger": "<5.4",
  1720. "symfony/property-info": "<5.4",
  1721. "symfony/security-bundle": "<5.4",
  1722. "symfony/security-core": "<6.4",
  1723. "symfony/validator": "<6.4"
  1724. },
  1725. "require-dev": {
  1726. "doctrine/collections": "^1.0|^2.0",
  1727. "doctrine/data-fixtures": "^1.1|^2",
  1728. "doctrine/dbal": "^2.13.1|^3|^4",
  1729. "doctrine/orm": "^2.15|^3",
  1730. "psr/log": "^1|^2|^3",
  1731. "symfony/cache": "^5.4|^6.0|^7.0",
  1732. "symfony/config": "^5.4|^6.0|^7.0",
  1733. "symfony/dependency-injection": "^6.2|^7.0",
  1734. "symfony/doctrine-messenger": "^5.4|^6.0|^7.0",
  1735. "symfony/expression-language": "^5.4|^6.0|^7.0",
  1736. "symfony/form": "^5.4.38|^6.4.6|^7.0.6",
  1737. "symfony/http-kernel": "^6.3|^7.0",
  1738. "symfony/lock": "^6.3|^7.0",
  1739. "symfony/messenger": "^5.4|^6.0|^7.0",
  1740. "symfony/property-access": "^5.4|^6.0|^7.0",
  1741. "symfony/property-info": "^5.4|^6.0|^7.0",
  1742. "symfony/proxy-manager-bridge": "^6.4",
  1743. "symfony/security-core": "^6.4|^7.0",
  1744. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  1745. "symfony/translation": "^5.4|^6.0|^7.0",
  1746. "symfony/uid": "^5.4|^6.0|^7.0",
  1747. "symfony/validator": "^6.4|^7.0",
  1748. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  1749. },
  1750. "type": "symfony-bridge",
  1751. "autoload": {
  1752. "psr-4": {
  1753. "Symfony\\Bridge\\Doctrine\\": ""
  1754. },
  1755. "exclude-from-classmap": [
  1756. "/Tests/"
  1757. ]
  1758. },
  1759. "license": [
  1760. "MIT"
  1761. ],
  1762. "authors": [
  1763. {
  1764. "name": "Fabien Potencier",
  1765. "email": "fabien@symfony.com"
  1766. },
  1767. {
  1768. "name": "Symfony Community",
  1769. "homepage": "https://symfony.com/contributors"
  1770. }
  1771. ],
  1772. "description": "Provides integration for Doctrine with various Symfony components",
  1773. "homepage": "https://symfony.com",
  1774. "funding": [
  1775. {
  1776. "url": "https://symfony.com/sponsor",
  1777. "type": "custom"
  1778. },
  1779. {
  1780. "url": "https://github.com/fabpot",
  1781. "type": "github"
  1782. },
  1783. {
  1784. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1785. "type": "tidelift"
  1786. }
  1787. ],
  1788. "time": "2024-12-18T10:42:42+00:00"
  1789. },
  1790. {
  1791. "name": "symfony/dotenv",
  1792. "version": "v6.4.16",
  1793. "dist": {
  1794. "type": "zip",
  1795. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/dotenv/v6.4.16/symfony-dotenv-v6.4.16.zip",
  1796. "reference": "1ac5e7e7e862d4d574258daf08bd569ba926e4a5",
  1797. "shasum": ""
  1798. },
  1799. "require": {
  1800. "php": ">=8.1"
  1801. },
  1802. "conflict": {
  1803. "symfony/console": "<5.4",
  1804. "symfony/process": "<5.4"
  1805. },
  1806. "require-dev": {
  1807. "symfony/console": "^5.4|^6.0|^7.0",
  1808. "symfony/process": "^5.4|^6.0|^7.0"
  1809. },
  1810. "type": "library",
  1811. "autoload": {
  1812. "psr-4": {
  1813. "Symfony\\Component\\Dotenv\\": ""
  1814. },
  1815. "exclude-from-classmap": [
  1816. "/Tests/"
  1817. ]
  1818. },
  1819. "license": [
  1820. "MIT"
  1821. ],
  1822. "authors": [
  1823. {
  1824. "name": "Fabien Potencier",
  1825. "email": "fabien@symfony.com"
  1826. },
  1827. {
  1828. "name": "Symfony Community",
  1829. "homepage": "https://symfony.com/contributors"
  1830. }
  1831. ],
  1832. "description": "Registers environment variables from a .env file",
  1833. "homepage": "https://symfony.com",
  1834. "keywords": [
  1835. "dotenv",
  1836. "env",
  1837. "environment"
  1838. ],
  1839. "funding": [
  1840. {
  1841. "url": "https://symfony.com/sponsor",
  1842. "type": "custom"
  1843. },
  1844. {
  1845. "url": "https://github.com/fabpot",
  1846. "type": "github"
  1847. },
  1848. {
  1849. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1850. "type": "tidelift"
  1851. }
  1852. ],
  1853. "time": "2024-11-27T11:08:19+00:00"
  1854. },
  1855. {
  1856. "name": "symfony/error-handler",
  1857. "version": "v6.4.17",
  1858. "dist": {
  1859. "type": "zip",
  1860. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/error-handler/v6.4.17/symfony-error-handler-v6.4.17.zip",
  1861. "reference": "37ad2380e8c1a8cf62a1200a5c10080b679b446c",
  1862. "shasum": ""
  1863. },
  1864. "require": {
  1865. "php": ">=8.1",
  1866. "psr/log": "^1|^2|^3",
  1867. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  1868. },
  1869. "conflict": {
  1870. "symfony/deprecation-contracts": "<2.5",
  1871. "symfony/http-kernel": "<6.4"
  1872. },
  1873. "require-dev": {
  1874. "symfony/deprecation-contracts": "^2.5|^3",
  1875. "symfony/http-kernel": "^6.4|^7.0",
  1876. "symfony/serializer": "^5.4|^6.0|^7.0"
  1877. },
  1878. "bin": [
  1879. "Resources/bin/patch-type-declarations"
  1880. ],
  1881. "type": "library",
  1882. "autoload": {
  1883. "psr-4": {
  1884. "Symfony\\Component\\ErrorHandler\\": ""
  1885. },
  1886. "exclude-from-classmap": [
  1887. "/Tests/"
  1888. ]
  1889. },
  1890. "license": [
  1891. "MIT"
  1892. ],
  1893. "authors": [
  1894. {
  1895. "name": "Fabien Potencier",
  1896. "email": "fabien@symfony.com"
  1897. },
  1898. {
  1899. "name": "Symfony Community",
  1900. "homepage": "https://symfony.com/contributors"
  1901. }
  1902. ],
  1903. "description": "Provides tools to manage errors and ease debugging PHP code",
  1904. "homepage": "https://symfony.com",
  1905. "funding": [
  1906. {
  1907. "url": "https://symfony.com/sponsor",
  1908. "type": "custom"
  1909. },
  1910. {
  1911. "url": "https://github.com/fabpot",
  1912. "type": "github"
  1913. },
  1914. {
  1915. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1916. "type": "tidelift"
  1917. }
  1918. ],
  1919. "time": "2024-12-06T13:30:51+00:00"
  1920. },
  1921. {
  1922. "name": "symfony/event-dispatcher",
  1923. "version": "v6.4.13",
  1924. "dist": {
  1925. "type": "zip",
  1926. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/event-dispatcher/v6.4.13/symfony-event-dispatcher-v6.4.13.zip",
  1927. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  1928. "shasum": ""
  1929. },
  1930. "require": {
  1931. "php": ">=8.1",
  1932. "symfony/event-dispatcher-contracts": "^2.5|^3"
  1933. },
  1934. "conflict": {
  1935. "symfony/dependency-injection": "<5.4",
  1936. "symfony/service-contracts": "<2.5"
  1937. },
  1938. "provide": {
  1939. "psr/event-dispatcher-implementation": "1.0",
  1940. "symfony/event-dispatcher-implementation": "2.0|3.0"
  1941. },
  1942. "require-dev": {
  1943. "psr/log": "^1|^2|^3",
  1944. "symfony/config": "^5.4|^6.0|^7.0",
  1945. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  1946. "symfony/error-handler": "^5.4|^6.0|^7.0",
  1947. "symfony/expression-language": "^5.4|^6.0|^7.0",
  1948. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  1949. "symfony/service-contracts": "^2.5|^3",
  1950. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  1951. },
  1952. "type": "library",
  1953. "autoload": {
  1954. "psr-4": {
  1955. "Symfony\\Component\\EventDispatcher\\": ""
  1956. },
  1957. "exclude-from-classmap": [
  1958. "/Tests/"
  1959. ]
  1960. },
  1961. "license": [
  1962. "MIT"
  1963. ],
  1964. "authors": [
  1965. {
  1966. "name": "Fabien Potencier",
  1967. "email": "fabien@symfony.com"
  1968. },
  1969. {
  1970. "name": "Symfony Community",
  1971. "homepage": "https://symfony.com/contributors"
  1972. }
  1973. ],
  1974. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  1975. "homepage": "https://symfony.com",
  1976. "funding": [
  1977. {
  1978. "url": "https://symfony.com/sponsor",
  1979. "type": "custom"
  1980. },
  1981. {
  1982. "url": "https://github.com/fabpot",
  1983. "type": "github"
  1984. },
  1985. {
  1986. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1987. "type": "tidelift"
  1988. }
  1989. ],
  1990. "time": "2024-09-25T14:18:03+00:00"
  1991. },
  1992. {
  1993. "name": "symfony/event-dispatcher-contracts",
  1994. "version": "v3.5.1",
  1995. "dist": {
  1996. "type": "zip",
  1997. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/event-dispatcher-contracts/v3.5.1/symfony-event-dispatcher-contracts-v3.5.1.zip",
  1998. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  1999. "shasum": ""
  2000. },
  2001. "require": {
  2002. "php": ">=8.1",
  2003. "psr/event-dispatcher": "^1"
  2004. },
  2005. "type": "library",
  2006. "extra": {
  2007. "thanks": {
  2008. "url": "https://github.com/symfony/contracts",
  2009. "name": "symfony/contracts"
  2010. },
  2011. "branch-alias": {
  2012. "dev-main": "3.5-dev"
  2013. }
  2014. },
  2015. "autoload": {
  2016. "psr-4": {
  2017. "Symfony\\Contracts\\EventDispatcher\\": ""
  2018. }
  2019. },
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "Nicolas Grekas",
  2026. "email": "p@tchwork.com"
  2027. },
  2028. {
  2029. "name": "Symfony Community",
  2030. "homepage": "https://symfony.com/contributors"
  2031. }
  2032. ],
  2033. "description": "Generic abstractions related to dispatching event",
  2034. "homepage": "https://symfony.com",
  2035. "keywords": [
  2036. "abstractions",
  2037. "contracts",
  2038. "decoupling",
  2039. "interfaces",
  2040. "interoperability",
  2041. "standards"
  2042. ],
  2043. "funding": [
  2044. {
  2045. "url": "https://symfony.com/sponsor",
  2046. "type": "custom"
  2047. },
  2048. {
  2049. "url": "https://github.com/fabpot",
  2050. "type": "github"
  2051. },
  2052. {
  2053. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2054. "type": "tidelift"
  2055. }
  2056. ],
  2057. "time": "2024-09-25T14:20:29+00:00"
  2058. },
  2059. {
  2060. "name": "symfony/filesystem",
  2061. "version": "v6.4.13",
  2062. "dist": {
  2063. "type": "zip",
  2064. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/filesystem/v6.4.13/symfony-filesystem-v6.4.13.zip",
  2065. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  2066. "shasum": ""
  2067. },
  2068. "require": {
  2069. "php": ">=8.1",
  2070. "symfony/polyfill-ctype": "~1.8",
  2071. "symfony/polyfill-mbstring": "~1.8"
  2072. },
  2073. "require-dev": {
  2074. "symfony/process": "^5.4|^6.4|^7.0"
  2075. },
  2076. "type": "library",
  2077. "autoload": {
  2078. "psr-4": {
  2079. "Symfony\\Component\\Filesystem\\": ""
  2080. },
  2081. "exclude-from-classmap": [
  2082. "/Tests/"
  2083. ]
  2084. },
  2085. "license": [
  2086. "MIT"
  2087. ],
  2088. "authors": [
  2089. {
  2090. "name": "Fabien Potencier",
  2091. "email": "fabien@symfony.com"
  2092. },
  2093. {
  2094. "name": "Symfony Community",
  2095. "homepage": "https://symfony.com/contributors"
  2096. }
  2097. ],
  2098. "description": "Provides basic utilities for the filesystem",
  2099. "homepage": "https://symfony.com",
  2100. "funding": [
  2101. {
  2102. "url": "https://symfony.com/sponsor",
  2103. "type": "custom"
  2104. },
  2105. {
  2106. "url": "https://github.com/fabpot",
  2107. "type": "github"
  2108. },
  2109. {
  2110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2111. "type": "tidelift"
  2112. }
  2113. ],
  2114. "time": "2024-10-25T15:07:50+00:00"
  2115. },
  2116. {
  2117. "name": "symfony/finder",
  2118. "version": "v6.4.17",
  2119. "dist": {
  2120. "type": "zip",
  2121. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/finder/v6.4.17/symfony-finder-v6.4.17.zip",
  2122. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  2123. "shasum": ""
  2124. },
  2125. "require": {
  2126. "php": ">=8.1"
  2127. },
  2128. "require-dev": {
  2129. "symfony/filesystem": "^6.0|^7.0"
  2130. },
  2131. "type": "library",
  2132. "autoload": {
  2133. "psr-4": {
  2134. "Symfony\\Component\\Finder\\": ""
  2135. },
  2136. "exclude-from-classmap": [
  2137. "/Tests/"
  2138. ]
  2139. },
  2140. "license": [
  2141. "MIT"
  2142. ],
  2143. "authors": [
  2144. {
  2145. "name": "Fabien Potencier",
  2146. "email": "fabien@symfony.com"
  2147. },
  2148. {
  2149. "name": "Symfony Community",
  2150. "homepage": "https://symfony.com/contributors"
  2151. }
  2152. ],
  2153. "description": "Finds files and directories via an intuitive fluent interface",
  2154. "homepage": "https://symfony.com",
  2155. "funding": [
  2156. {
  2157. "url": "https://symfony.com/sponsor",
  2158. "type": "custom"
  2159. },
  2160. {
  2161. "url": "https://github.com/fabpot",
  2162. "type": "github"
  2163. },
  2164. {
  2165. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2166. "type": "tidelift"
  2167. }
  2168. ],
  2169. "time": "2024-12-29T13:51:37+00:00"
  2170. },
  2171. {
  2172. "name": "symfony/flex",
  2173. "version": "v2.4.7",
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/flex/v2.4.7/symfony-flex-v2.4.7.zip",
  2177. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402",
  2178. "shasum": ""
  2179. },
  2180. "require": {
  2181. "composer-plugin-api": "^2.1",
  2182. "php": ">=8.0"
  2183. },
  2184. "conflict": {
  2185. "composer/semver": "<1.7.2"
  2186. },
  2187. "require-dev": {
  2188. "composer/composer": "^2.1",
  2189. "symfony/dotenv": "^5.4|^6.0",
  2190. "symfony/filesystem": "^5.4|^6.0",
  2191. "symfony/phpunit-bridge": "^5.4|^6.0",
  2192. "symfony/process": "^5.4|^6.0"
  2193. },
  2194. "type": "composer-plugin",
  2195. "extra": {
  2196. "class": "Symfony\\Flex\\Flex"
  2197. },
  2198. "autoload": {
  2199. "psr-4": {
  2200. "Symfony\\Flex\\": "src"
  2201. }
  2202. },
  2203. "license": [
  2204. "MIT"
  2205. ],
  2206. "authors": [
  2207. {
  2208. "name": "Fabien Potencier",
  2209. "email": "fabien.potencier@gmail.com"
  2210. }
  2211. ],
  2212. "description": "Composer plugin for Symfony",
  2213. "funding": [
  2214. {
  2215. "url": "https://symfony.com/sponsor",
  2216. "type": "custom"
  2217. },
  2218. {
  2219. "url": "https://github.com/fabpot",
  2220. "type": "github"
  2221. },
  2222. {
  2223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2224. "type": "tidelift"
  2225. }
  2226. ],
  2227. "time": "2024-10-07T08:51:54+00:00"
  2228. },
  2229. {
  2230. "name": "symfony/framework-bundle",
  2231. "version": "v6.4.17",
  2232. "dist": {
  2233. "type": "zip",
  2234. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/framework-bundle/v6.4.17/symfony-framework-bundle-v6.4.17.zip",
  2235. "reference": "17d8ae2e7aa77154f942e8ac48849ac718b0963f",
  2236. "shasum": ""
  2237. },
  2238. "require": {
  2239. "composer-runtime-api": ">=2.1",
  2240. "ext-xml": "*",
  2241. "php": ">=8.1",
  2242. "symfony/cache": "^5.4|^6.0|^7.0",
  2243. "symfony/config": "^6.1|^7.0",
  2244. "symfony/dependency-injection": "^6.4.12|^7.0",
  2245. "symfony/deprecation-contracts": "^2.5|^3",
  2246. "symfony/error-handler": "^6.1|^7.0",
  2247. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  2248. "symfony/filesystem": "^5.4|^6.0|^7.0",
  2249. "symfony/finder": "^5.4|^6.0|^7.0",
  2250. "symfony/http-foundation": "^6.4|^7.0",
  2251. "symfony/http-kernel": "^6.4",
  2252. "symfony/polyfill-mbstring": "~1.0",
  2253. "symfony/routing": "^6.4|^7.0"
  2254. },
  2255. "conflict": {
  2256. "doctrine/annotations": "<1.13.1",
  2257. "doctrine/persistence": "<1.3",
  2258. "phpdocumentor/reflection-docblock": "<3.2.2",
  2259. "phpdocumentor/type-resolver": "<1.4.0",
  2260. "symfony/asset": "<5.4",
  2261. "symfony/asset-mapper": "<6.4",
  2262. "symfony/clock": "<6.3",
  2263. "symfony/console": "<5.4|>=7.0",
  2264. "symfony/dom-crawler": "<6.4",
  2265. "symfony/dotenv": "<5.4",
  2266. "symfony/form": "<5.4",
  2267. "symfony/http-client": "<6.3",
  2268. "symfony/lock": "<5.4",
  2269. "symfony/mailer": "<5.4",
  2270. "symfony/messenger": "<6.3",
  2271. "symfony/mime": "<6.4",
  2272. "symfony/property-access": "<5.4",
  2273. "symfony/property-info": "<5.4",
  2274. "symfony/runtime": "<5.4.45|>=6.0,<6.4.13|>=7.0,<7.1.6",
  2275. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  2276. "symfony/security-core": "<5.4",
  2277. "symfony/security-csrf": "<5.4",
  2278. "symfony/serializer": "<6.4",
  2279. "symfony/stopwatch": "<5.4",
  2280. "symfony/translation": "<6.4",
  2281. "symfony/twig-bridge": "<5.4",
  2282. "symfony/twig-bundle": "<5.4",
  2283. "symfony/validator": "<6.4",
  2284. "symfony/web-profiler-bundle": "<6.4",
  2285. "symfony/workflow": "<6.4"
  2286. },
  2287. "require-dev": {
  2288. "doctrine/annotations": "^1.13.1|^2",
  2289. "doctrine/persistence": "^1.3|^2|^3",
  2290. "dragonmantank/cron-expression": "^3.1",
  2291. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  2292. "seld/jsonlint": "^1.10",
  2293. "symfony/asset": "^5.4|^6.0|^7.0",
  2294. "symfony/asset-mapper": "^6.4|^7.0",
  2295. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  2296. "symfony/clock": "^6.2|^7.0",
  2297. "symfony/console": "^5.4.9|^6.0.9|^7.0",
  2298. "symfony/css-selector": "^5.4|^6.0|^7.0",
  2299. "symfony/dom-crawler": "^6.4|^7.0",
  2300. "symfony/dotenv": "^5.4|^6.0|^7.0",
  2301. "symfony/expression-language": "^5.4|^6.0|^7.0",
  2302. "symfony/form": "^5.4|^6.0|^7.0",
  2303. "symfony/html-sanitizer": "^6.1|^7.0",
  2304. "symfony/http-client": "^6.3|^7.0",
  2305. "symfony/lock": "^5.4|^6.0|^7.0",
  2306. "symfony/mailer": "^5.4|^6.0|^7.0",
  2307. "symfony/messenger": "^6.3|^7.0",
  2308. "symfony/mime": "^6.4|^7.0",
  2309. "symfony/notifier": "^5.4|^6.0|^7.0",
  2310. "symfony/polyfill-intl-icu": "~1.0",
  2311. "symfony/process": "^5.4|^6.0|^7.0",
  2312. "symfony/property-info": "^5.4|^6.0|^7.0",
  2313. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  2314. "symfony/scheduler": "^6.4.4|^7.0.4",
  2315. "symfony/security-bundle": "^5.4|^6.0|^7.0",
  2316. "symfony/semaphore": "^5.4|^6.0|^7.0",
  2317. "symfony/serializer": "^6.4|^7.0",
  2318. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  2319. "symfony/string": "^5.4|^6.0|^7.0",
  2320. "symfony/translation": "^6.4|^7.0",
  2321. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  2322. "symfony/uid": "^5.4|^6.0|^7.0",
  2323. "symfony/validator": "^6.4|^7.0",
  2324. "symfony/web-link": "^5.4|^6.0|^7.0",
  2325. "symfony/workflow": "^6.4|^7.0",
  2326. "symfony/yaml": "^5.4|^6.0|^7.0",
  2327. "twig/twig": "^2.10|^3.0.4"
  2328. },
  2329. "type": "symfony-bundle",
  2330. "autoload": {
  2331. "psr-4": {
  2332. "Symfony\\Bundle\\FrameworkBundle\\": ""
  2333. },
  2334. "exclude-from-classmap": [
  2335. "/Tests/"
  2336. ]
  2337. },
  2338. "license": [
  2339. "MIT"
  2340. ],
  2341. "authors": [
  2342. {
  2343. "name": "Fabien Potencier",
  2344. "email": "fabien@symfony.com"
  2345. },
  2346. {
  2347. "name": "Symfony Community",
  2348. "homepage": "https://symfony.com/contributors"
  2349. }
  2350. ],
  2351. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  2352. "homepage": "https://symfony.com",
  2353. "funding": [
  2354. {
  2355. "url": "https://symfony.com/sponsor",
  2356. "type": "custom"
  2357. },
  2358. {
  2359. "url": "https://github.com/fabpot",
  2360. "type": "github"
  2361. },
  2362. {
  2363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2364. "type": "tidelift"
  2365. }
  2366. ],
  2367. "time": "2024-12-19T14:08:41+00:00"
  2368. },
  2369. {
  2370. "name": "symfony/http-foundation",
  2371. "version": "v6.4.16",
  2372. "dist": {
  2373. "type": "zip",
  2374. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/http-foundation/v6.4.16/symfony-http-foundation-v6.4.16.zip",
  2375. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  2376. "shasum": ""
  2377. },
  2378. "require": {
  2379. "php": ">=8.1",
  2380. "symfony/deprecation-contracts": "^2.5|^3",
  2381. "symfony/polyfill-mbstring": "~1.1",
  2382. "symfony/polyfill-php83": "^1.27"
  2383. },
  2384. "conflict": {
  2385. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  2386. },
  2387. "require-dev": {
  2388. "doctrine/dbal": "^2.13.1|^3|^4",
  2389. "predis/predis": "^1.1|^2.0",
  2390. "symfony/cache": "^6.4.12|^7.1.5",
  2391. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  2392. "symfony/expression-language": "^5.4|^6.0|^7.0",
  2393. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  2394. "symfony/mime": "^5.4|^6.0|^7.0",
  2395. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  2396. },
  2397. "type": "library",
  2398. "autoload": {
  2399. "psr-4": {
  2400. "Symfony\\Component\\HttpFoundation\\": ""
  2401. },
  2402. "exclude-from-classmap": [
  2403. "/Tests/"
  2404. ]
  2405. },
  2406. "license": [
  2407. "MIT"
  2408. ],
  2409. "authors": [
  2410. {
  2411. "name": "Fabien Potencier",
  2412. "email": "fabien@symfony.com"
  2413. },
  2414. {
  2415. "name": "Symfony Community",
  2416. "homepage": "https://symfony.com/contributors"
  2417. }
  2418. ],
  2419. "description": "Defines an object-oriented layer for the HTTP specification",
  2420. "homepage": "https://symfony.com",
  2421. "funding": [
  2422. {
  2423. "url": "https://symfony.com/sponsor",
  2424. "type": "custom"
  2425. },
  2426. {
  2427. "url": "https://github.com/fabpot",
  2428. "type": "github"
  2429. },
  2430. {
  2431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2432. "type": "tidelift"
  2433. }
  2434. ],
  2435. "time": "2024-11-13T18:58:10+00:00"
  2436. },
  2437. {
  2438. "name": "symfony/http-kernel",
  2439. "version": "v6.4.17",
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/http-kernel/v6.4.17/symfony-http-kernel-v6.4.17.zip",
  2443. "reference": "c5647393c5ce11833d13e4b70fff4b571d4ac710",
  2444. "shasum": ""
  2445. },
  2446. "require": {
  2447. "php": ">=8.1",
  2448. "psr/log": "^1|^2|^3",
  2449. "symfony/deprecation-contracts": "^2.5|^3",
  2450. "symfony/error-handler": "^6.4|^7.0",
  2451. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  2452. "symfony/http-foundation": "^6.4|^7.0",
  2453. "symfony/polyfill-ctype": "^1.8"
  2454. },
  2455. "conflict": {
  2456. "symfony/browser-kit": "<5.4",
  2457. "symfony/cache": "<5.4",
  2458. "symfony/config": "<6.1",
  2459. "symfony/console": "<5.4",
  2460. "symfony/dependency-injection": "<6.4",
  2461. "symfony/doctrine-bridge": "<5.4",
  2462. "symfony/form": "<5.4",
  2463. "symfony/http-client": "<5.4",
  2464. "symfony/http-client-contracts": "<2.5",
  2465. "symfony/mailer": "<5.4",
  2466. "symfony/messenger": "<5.4",
  2467. "symfony/translation": "<5.4",
  2468. "symfony/translation-contracts": "<2.5",
  2469. "symfony/twig-bridge": "<5.4",
  2470. "symfony/validator": "<6.4",
  2471. "symfony/var-dumper": "<6.3",
  2472. "twig/twig": "<2.13"
  2473. },
  2474. "provide": {
  2475. "psr/log-implementation": "1.0|2.0|3.0"
  2476. },
  2477. "require-dev": {
  2478. "psr/cache": "^1.0|^2.0|^3.0",
  2479. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  2480. "symfony/clock": "^6.2|^7.0",
  2481. "symfony/config": "^6.1|^7.0",
  2482. "symfony/console": "^5.4|^6.0|^7.0",
  2483. "symfony/css-selector": "^5.4|^6.0|^7.0",
  2484. "symfony/dependency-injection": "^6.4|^7.0",
  2485. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  2486. "symfony/expression-language": "^5.4|^6.0|^7.0",
  2487. "symfony/finder": "^5.4|^6.0|^7.0",
  2488. "symfony/http-client-contracts": "^2.5|^3",
  2489. "symfony/process": "^5.4|^6.0|^7.0",
  2490. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  2491. "symfony/routing": "^5.4|^6.0|^7.0",
  2492. "symfony/serializer": "^6.4.4|^7.0.4",
  2493. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  2494. "symfony/translation": "^5.4|^6.0|^7.0",
  2495. "symfony/translation-contracts": "^2.5|^3",
  2496. "symfony/uid": "^5.4|^6.0|^7.0",
  2497. "symfony/validator": "^6.4|^7.0",
  2498. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  2499. "symfony/var-exporter": "^6.2|^7.0",
  2500. "twig/twig": "^2.13|^3.0.4"
  2501. },
  2502. "type": "library",
  2503. "autoload": {
  2504. "psr-4": {
  2505. "Symfony\\Component\\HttpKernel\\": ""
  2506. },
  2507. "exclude-from-classmap": [
  2508. "/Tests/"
  2509. ]
  2510. },
  2511. "license": [
  2512. "MIT"
  2513. ],
  2514. "authors": [
  2515. {
  2516. "name": "Fabien Potencier",
  2517. "email": "fabien@symfony.com"
  2518. },
  2519. {
  2520. "name": "Symfony Community",
  2521. "homepage": "https://symfony.com/contributors"
  2522. }
  2523. ],
  2524. "description": "Provides a structured process for converting a Request into a Response",
  2525. "homepage": "https://symfony.com",
  2526. "funding": [
  2527. {
  2528. "url": "https://symfony.com/sponsor",
  2529. "type": "custom"
  2530. },
  2531. {
  2532. "url": "https://github.com/fabpot",
  2533. "type": "github"
  2534. },
  2535. {
  2536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2537. "type": "tidelift"
  2538. }
  2539. ],
  2540. "time": "2024-12-31T14:49:31+00:00"
  2541. },
  2542. {
  2543. "name": "symfony/polyfill-intl-grapheme",
  2544. "version": "v1.31.0",
  2545. "dist": {
  2546. "type": "zip",
  2547. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/polyfill-intl-grapheme/v1.31.0/symfony-polyfill-intl-grapheme-v1.31.0.zip",
  2548. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  2549. "shasum": ""
  2550. },
  2551. "require": {
  2552. "php": ">=7.2"
  2553. },
  2554. "suggest": {
  2555. "ext-intl": "For best performance"
  2556. },
  2557. "type": "library",
  2558. "extra": {
  2559. "thanks": {
  2560. "url": "https://github.com/symfony/polyfill",
  2561. "name": "symfony/polyfill"
  2562. }
  2563. },
  2564. "autoload": {
  2565. "files": [
  2566. "bootstrap.php"
  2567. ],
  2568. "psr-4": {
  2569. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  2570. }
  2571. },
  2572. "license": [
  2573. "MIT"
  2574. ],
  2575. "authors": [
  2576. {
  2577. "name": "Nicolas Grekas",
  2578. "email": "p@tchwork.com"
  2579. },
  2580. {
  2581. "name": "Symfony Community",
  2582. "homepage": "https://symfony.com/contributors"
  2583. }
  2584. ],
  2585. "description": "Symfony polyfill for intl's grapheme_* functions",
  2586. "homepage": "https://symfony.com",
  2587. "keywords": [
  2588. "compatibility",
  2589. "grapheme",
  2590. "intl",
  2591. "polyfill",
  2592. "portable",
  2593. "shim"
  2594. ],
  2595. "funding": [
  2596. {
  2597. "url": "https://symfony.com/sponsor",
  2598. "type": "custom"
  2599. },
  2600. {
  2601. "url": "https://github.com/fabpot",
  2602. "type": "github"
  2603. },
  2604. {
  2605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2606. "type": "tidelift"
  2607. }
  2608. ],
  2609. "time": "2024-09-09T11:45:10+00:00"
  2610. },
  2611. {
  2612. "name": "symfony/polyfill-intl-normalizer",
  2613. "version": "v1.31.0",
  2614. "dist": {
  2615. "type": "zip",
  2616. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/polyfill-intl-normalizer/v1.31.0/symfony-polyfill-intl-normalizer-v1.31.0.zip",
  2617. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  2618. "shasum": ""
  2619. },
  2620. "require": {
  2621. "php": ">=7.2"
  2622. },
  2623. "suggest": {
  2624. "ext-intl": "For best performance"
  2625. },
  2626. "type": "library",
  2627. "extra": {
  2628. "thanks": {
  2629. "url": "https://github.com/symfony/polyfill",
  2630. "name": "symfony/polyfill"
  2631. }
  2632. },
  2633. "autoload": {
  2634. "files": [
  2635. "bootstrap.php"
  2636. ],
  2637. "psr-4": {
  2638. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2639. },
  2640. "classmap": [
  2641. "Resources/stubs"
  2642. ]
  2643. },
  2644. "license": [
  2645. "MIT"
  2646. ],
  2647. "authors": [
  2648. {
  2649. "name": "Nicolas Grekas",
  2650. "email": "p@tchwork.com"
  2651. },
  2652. {
  2653. "name": "Symfony Community",
  2654. "homepage": "https://symfony.com/contributors"
  2655. }
  2656. ],
  2657. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2658. "homepage": "https://symfony.com",
  2659. "keywords": [
  2660. "compatibility",
  2661. "intl",
  2662. "normalizer",
  2663. "polyfill",
  2664. "portable",
  2665. "shim"
  2666. ],
  2667. "funding": [
  2668. {
  2669. "url": "https://symfony.com/sponsor",
  2670. "type": "custom"
  2671. },
  2672. {
  2673. "url": "https://github.com/fabpot",
  2674. "type": "github"
  2675. },
  2676. {
  2677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2678. "type": "tidelift"
  2679. }
  2680. ],
  2681. "time": "2024-09-09T11:45:10+00:00"
  2682. },
  2683. {
  2684. "name": "symfony/polyfill-mbstring",
  2685. "version": "v1.31.0",
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/polyfill-mbstring/v1.31.0/symfony-polyfill-mbstring-v1.31.0.zip",
  2689. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  2690. "shasum": ""
  2691. },
  2692. "require": {
  2693. "php": ">=7.2"
  2694. },
  2695. "provide": {
  2696. "ext-mbstring": "*"
  2697. },
  2698. "suggest": {
  2699. "ext-mbstring": "For best performance"
  2700. },
  2701. "type": "library",
  2702. "extra": {
  2703. "thanks": {
  2704. "url": "https://github.com/symfony/polyfill",
  2705. "name": "symfony/polyfill"
  2706. }
  2707. },
  2708. "autoload": {
  2709. "files": [
  2710. "bootstrap.php"
  2711. ],
  2712. "psr-4": {
  2713. "Symfony\\Polyfill\\Mbstring\\": ""
  2714. }
  2715. },
  2716. "license": [
  2717. "MIT"
  2718. ],
  2719. "authors": [
  2720. {
  2721. "name": "Nicolas Grekas",
  2722. "email": "p@tchwork.com"
  2723. },
  2724. {
  2725. "name": "Symfony Community",
  2726. "homepage": "https://symfony.com/contributors"
  2727. }
  2728. ],
  2729. "description": "Symfony polyfill for the Mbstring extension",
  2730. "homepage": "https://symfony.com",
  2731. "keywords": [
  2732. "compatibility",
  2733. "mbstring",
  2734. "polyfill",
  2735. "portable",
  2736. "shim"
  2737. ],
  2738. "funding": [
  2739. {
  2740. "url": "https://symfony.com/sponsor",
  2741. "type": "custom"
  2742. },
  2743. {
  2744. "url": "https://github.com/fabpot",
  2745. "type": "github"
  2746. },
  2747. {
  2748. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2749. "type": "tidelift"
  2750. }
  2751. ],
  2752. "time": "2024-09-09T11:45:10+00:00"
  2753. },
  2754. {
  2755. "name": "symfony/polyfill-php83",
  2756. "version": "v1.31.0",
  2757. "dist": {
  2758. "type": "zip",
  2759. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/polyfill-php83/v1.31.0/symfony-polyfill-php83-v1.31.0.zip",
  2760. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  2761. "shasum": ""
  2762. },
  2763. "require": {
  2764. "php": ">=7.2"
  2765. },
  2766. "type": "library",
  2767. "extra": {
  2768. "thanks": {
  2769. "url": "https://github.com/symfony/polyfill",
  2770. "name": "symfony/polyfill"
  2771. }
  2772. },
  2773. "autoload": {
  2774. "files": [
  2775. "bootstrap.php"
  2776. ],
  2777. "psr-4": {
  2778. "Symfony\\Polyfill\\Php83\\": ""
  2779. },
  2780. "classmap": [
  2781. "Resources/stubs"
  2782. ]
  2783. },
  2784. "license": [
  2785. "MIT"
  2786. ],
  2787. "authors": [
  2788. {
  2789. "name": "Nicolas Grekas",
  2790. "email": "p@tchwork.com"
  2791. },
  2792. {
  2793. "name": "Symfony Community",
  2794. "homepage": "https://symfony.com/contributors"
  2795. }
  2796. ],
  2797. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  2798. "homepage": "https://symfony.com",
  2799. "keywords": [
  2800. "compatibility",
  2801. "polyfill",
  2802. "portable",
  2803. "shim"
  2804. ],
  2805. "funding": [
  2806. {
  2807. "url": "https://symfony.com/sponsor",
  2808. "type": "custom"
  2809. },
  2810. {
  2811. "url": "https://github.com/fabpot",
  2812. "type": "github"
  2813. },
  2814. {
  2815. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2816. "type": "tidelift"
  2817. }
  2818. ],
  2819. "time": "2024-09-09T11:45:10+00:00"
  2820. },
  2821. {
  2822. "name": "symfony/routing",
  2823. "version": "v6.4.16",
  2824. "dist": {
  2825. "type": "zip",
  2826. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/routing/v6.4.16/symfony-routing-v6.4.16.zip",
  2827. "reference": "91e02e606b4b705c2f4fb42f7e7708b7923a3220",
  2828. "shasum": ""
  2829. },
  2830. "require": {
  2831. "php": ">=8.1",
  2832. "symfony/deprecation-contracts": "^2.5|^3"
  2833. },
  2834. "conflict": {
  2835. "doctrine/annotations": "<1.12",
  2836. "symfony/config": "<6.2",
  2837. "symfony/dependency-injection": "<5.4",
  2838. "symfony/yaml": "<5.4"
  2839. },
  2840. "require-dev": {
  2841. "doctrine/annotations": "^1.12|^2",
  2842. "psr/log": "^1|^2|^3",
  2843. "symfony/config": "^6.2|^7.0",
  2844. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  2845. "symfony/expression-language": "^5.4|^6.0|^7.0",
  2846. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  2847. "symfony/yaml": "^5.4|^6.0|^7.0"
  2848. },
  2849. "type": "library",
  2850. "autoload": {
  2851. "psr-4": {
  2852. "Symfony\\Component\\Routing\\": ""
  2853. },
  2854. "exclude-from-classmap": [
  2855. "/Tests/"
  2856. ]
  2857. },
  2858. "license": [
  2859. "MIT"
  2860. ],
  2861. "authors": [
  2862. {
  2863. "name": "Fabien Potencier",
  2864. "email": "fabien@symfony.com"
  2865. },
  2866. {
  2867. "name": "Symfony Community",
  2868. "homepage": "https://symfony.com/contributors"
  2869. }
  2870. ],
  2871. "description": "Maps an HTTP request to a set of configuration variables",
  2872. "homepage": "https://symfony.com",
  2873. "keywords": [
  2874. "router",
  2875. "routing",
  2876. "uri",
  2877. "url"
  2878. ],
  2879. "funding": [
  2880. {
  2881. "url": "https://symfony.com/sponsor",
  2882. "type": "custom"
  2883. },
  2884. {
  2885. "url": "https://github.com/fabpot",
  2886. "type": "github"
  2887. },
  2888. {
  2889. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2890. "type": "tidelift"
  2891. }
  2892. ],
  2893. "time": "2024-11-13T15:31:34+00:00"
  2894. },
  2895. {
  2896. "name": "symfony/runtime",
  2897. "version": "v6.4.14",
  2898. "dist": {
  2899. "type": "zip",
  2900. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/runtime/v6.4.14/symfony-runtime-v6.4.14.zip",
  2901. "reference": "4facd4174f45cd37c65860403412b67c7381136a",
  2902. "shasum": ""
  2903. },
  2904. "require": {
  2905. "composer-plugin-api": "^1.0|^2.0",
  2906. "php": ">=8.1"
  2907. },
  2908. "conflict": {
  2909. "symfony/dotenv": "<5.4"
  2910. },
  2911. "require-dev": {
  2912. "composer/composer": "^1.0.2|^2.0",
  2913. "symfony/console": "^5.4.9|^6.0.9|^7.0",
  2914. "symfony/dotenv": "^5.4|^6.0|^7.0",
  2915. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  2916. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  2917. },
  2918. "type": "composer-plugin",
  2919. "extra": {
  2920. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  2921. },
  2922. "autoload": {
  2923. "psr-4": {
  2924. "Symfony\\Component\\Runtime\\": "",
  2925. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  2926. },
  2927. "exclude-from-classmap": [
  2928. "/Tests/"
  2929. ]
  2930. },
  2931. "license": [
  2932. "MIT"
  2933. ],
  2934. "authors": [
  2935. {
  2936. "name": "Nicolas Grekas",
  2937. "email": "p@tchwork.com"
  2938. },
  2939. {
  2940. "name": "Symfony Community",
  2941. "homepage": "https://symfony.com/contributors"
  2942. }
  2943. ],
  2944. "description": "Enables decoupling PHP applications from global state",
  2945. "homepage": "https://symfony.com",
  2946. "keywords": [
  2947. "runtime"
  2948. ],
  2949. "funding": [
  2950. {
  2951. "url": "https://symfony.com/sponsor",
  2952. "type": "custom"
  2953. },
  2954. {
  2955. "url": "https://github.com/fabpot",
  2956. "type": "github"
  2957. },
  2958. {
  2959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2960. "type": "tidelift"
  2961. }
  2962. ],
  2963. "time": "2024-11-05T16:39:55+00:00"
  2964. },
  2965. {
  2966. "name": "symfony/service-contracts",
  2967. "version": "v3.5.1",
  2968. "dist": {
  2969. "type": "zip",
  2970. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/service-contracts/v3.5.1/symfony-service-contracts-v3.5.1.zip",
  2971. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  2972. "shasum": ""
  2973. },
  2974. "require": {
  2975. "php": ">=8.1",
  2976. "psr/container": "^1.1|^2.0",
  2977. "symfony/deprecation-contracts": "^2.5|^3"
  2978. },
  2979. "conflict": {
  2980. "ext-psr": "<1.1|>=2"
  2981. },
  2982. "type": "library",
  2983. "extra": {
  2984. "thanks": {
  2985. "url": "https://github.com/symfony/contracts",
  2986. "name": "symfony/contracts"
  2987. },
  2988. "branch-alias": {
  2989. "dev-main": "3.5-dev"
  2990. }
  2991. },
  2992. "autoload": {
  2993. "psr-4": {
  2994. "Symfony\\Contracts\\Service\\": ""
  2995. },
  2996. "exclude-from-classmap": [
  2997. "/Test/"
  2998. ]
  2999. },
  3000. "license": [
  3001. "MIT"
  3002. ],
  3003. "authors": [
  3004. {
  3005. "name": "Nicolas Grekas",
  3006. "email": "p@tchwork.com"
  3007. },
  3008. {
  3009. "name": "Symfony Community",
  3010. "homepage": "https://symfony.com/contributors"
  3011. }
  3012. ],
  3013. "description": "Generic abstractions related to writing services",
  3014. "homepage": "https://symfony.com",
  3015. "keywords": [
  3016. "abstractions",
  3017. "contracts",
  3018. "decoupling",
  3019. "interfaces",
  3020. "interoperability",
  3021. "standards"
  3022. ],
  3023. "funding": [
  3024. {
  3025. "url": "https://symfony.com/sponsor",
  3026. "type": "custom"
  3027. },
  3028. {
  3029. "url": "https://github.com/fabpot",
  3030. "type": "github"
  3031. },
  3032. {
  3033. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3034. "type": "tidelift"
  3035. }
  3036. ],
  3037. "time": "2024-09-25T14:20:29+00:00"
  3038. },
  3039. {
  3040. "name": "symfony/stopwatch",
  3041. "version": "v6.4.13",
  3042. "dist": {
  3043. "type": "zip",
  3044. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/stopwatch/v6.4.13/symfony-stopwatch-v6.4.13.zip",
  3045. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  3046. "shasum": ""
  3047. },
  3048. "require": {
  3049. "php": ">=8.1",
  3050. "symfony/service-contracts": "^2.5|^3"
  3051. },
  3052. "type": "library",
  3053. "autoload": {
  3054. "psr-4": {
  3055. "Symfony\\Component\\Stopwatch\\": ""
  3056. },
  3057. "exclude-from-classmap": [
  3058. "/Tests/"
  3059. ]
  3060. },
  3061. "license": [
  3062. "MIT"
  3063. ],
  3064. "authors": [
  3065. {
  3066. "name": "Fabien Potencier",
  3067. "email": "fabien@symfony.com"
  3068. },
  3069. {
  3070. "name": "Symfony Community",
  3071. "homepage": "https://symfony.com/contributors"
  3072. }
  3073. ],
  3074. "description": "Provides a way to profile code",
  3075. "homepage": "https://symfony.com",
  3076. "funding": [
  3077. {
  3078. "url": "https://symfony.com/sponsor",
  3079. "type": "custom"
  3080. },
  3081. {
  3082. "url": "https://github.com/fabpot",
  3083. "type": "github"
  3084. },
  3085. {
  3086. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3087. "type": "tidelift"
  3088. }
  3089. ],
  3090. "time": "2024-09-25T14:18:03+00:00"
  3091. },
  3092. {
  3093. "name": "symfony/string",
  3094. "version": "v6.4.15",
  3095. "dist": {
  3096. "type": "zip",
  3097. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/string/v6.4.15/symfony-string-v6.4.15.zip",
  3098. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  3099. "shasum": ""
  3100. },
  3101. "require": {
  3102. "php": ">=8.1",
  3103. "symfony/polyfill-ctype": "~1.8",
  3104. "symfony/polyfill-intl-grapheme": "~1.0",
  3105. "symfony/polyfill-intl-normalizer": "~1.0",
  3106. "symfony/polyfill-mbstring": "~1.0"
  3107. },
  3108. "conflict": {
  3109. "symfony/translation-contracts": "<2.5"
  3110. },
  3111. "require-dev": {
  3112. "symfony/error-handler": "^5.4|^6.0|^7.0",
  3113. "symfony/http-client": "^5.4|^6.0|^7.0",
  3114. "symfony/intl": "^6.2|^7.0",
  3115. "symfony/translation-contracts": "^2.5|^3.0",
  3116. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  3117. },
  3118. "type": "library",
  3119. "autoload": {
  3120. "files": [
  3121. "Resources/functions.php"
  3122. ],
  3123. "psr-4": {
  3124. "Symfony\\Component\\String\\": ""
  3125. },
  3126. "exclude-from-classmap": [
  3127. "/Tests/"
  3128. ]
  3129. },
  3130. "license": [
  3131. "MIT"
  3132. ],
  3133. "authors": [
  3134. {
  3135. "name": "Nicolas Grekas",
  3136. "email": "p@tchwork.com"
  3137. },
  3138. {
  3139. "name": "Symfony Community",
  3140. "homepage": "https://symfony.com/contributors"
  3141. }
  3142. ],
  3143. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  3144. "homepage": "https://symfony.com",
  3145. "keywords": [
  3146. "grapheme",
  3147. "i18n",
  3148. "string",
  3149. "unicode",
  3150. "utf-8",
  3151. "utf8"
  3152. ],
  3153. "funding": [
  3154. {
  3155. "url": "https://symfony.com/sponsor",
  3156. "type": "custom"
  3157. },
  3158. {
  3159. "url": "https://github.com/fabpot",
  3160. "type": "github"
  3161. },
  3162. {
  3163. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3164. "type": "tidelift"
  3165. }
  3166. ],
  3167. "time": "2024-11-13T13:31:12+00:00"
  3168. },
  3169. {
  3170. "name": "symfony/var-dumper",
  3171. "version": "v6.4.15",
  3172. "dist": {
  3173. "type": "zip",
  3174. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/var-dumper/v6.4.15/symfony-var-dumper-v6.4.15.zip",
  3175. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  3176. "shasum": ""
  3177. },
  3178. "require": {
  3179. "php": ">=8.1",
  3180. "symfony/deprecation-contracts": "^2.5|^3",
  3181. "symfony/polyfill-mbstring": "~1.0"
  3182. },
  3183. "conflict": {
  3184. "symfony/console": "<5.4"
  3185. },
  3186. "require-dev": {
  3187. "ext-iconv": "*",
  3188. "symfony/console": "^5.4|^6.0|^7.0",
  3189. "symfony/error-handler": "^6.3|^7.0",
  3190. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  3191. "symfony/process": "^5.4|^6.0|^7.0",
  3192. "symfony/uid": "^5.4|^6.0|^7.0",
  3193. "twig/twig": "^2.13|^3.0.4"
  3194. },
  3195. "bin": [
  3196. "Resources/bin/var-dump-server"
  3197. ],
  3198. "type": "library",
  3199. "autoload": {
  3200. "files": [
  3201. "Resources/functions/dump.php"
  3202. ],
  3203. "psr-4": {
  3204. "Symfony\\Component\\VarDumper\\": ""
  3205. },
  3206. "exclude-from-classmap": [
  3207. "/Tests/"
  3208. ]
  3209. },
  3210. "license": [
  3211. "MIT"
  3212. ],
  3213. "authors": [
  3214. {
  3215. "name": "Nicolas Grekas",
  3216. "email": "p@tchwork.com"
  3217. },
  3218. {
  3219. "name": "Symfony Community",
  3220. "homepage": "https://symfony.com/contributors"
  3221. }
  3222. ],
  3223. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  3224. "homepage": "https://symfony.com",
  3225. "keywords": [
  3226. "debug",
  3227. "dump"
  3228. ],
  3229. "funding": [
  3230. {
  3231. "url": "https://symfony.com/sponsor",
  3232. "type": "custom"
  3233. },
  3234. {
  3235. "url": "https://github.com/fabpot",
  3236. "type": "github"
  3237. },
  3238. {
  3239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3240. "type": "tidelift"
  3241. }
  3242. ],
  3243. "time": "2024-11-08T15:28:48+00:00"
  3244. },
  3245. {
  3246. "name": "symfony/var-exporter",
  3247. "version": "v6.4.13",
  3248. "dist": {
  3249. "type": "zip",
  3250. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/var-exporter/v6.4.13/symfony-var-exporter-v6.4.13.zip",
  3251. "reference": "0f605f72a363f8743001038a176eeb2a11223b51",
  3252. "shasum": ""
  3253. },
  3254. "require": {
  3255. "php": ">=8.1",
  3256. "symfony/deprecation-contracts": "^2.5|^3"
  3257. },
  3258. "require-dev": {
  3259. "symfony/property-access": "^6.4|^7.0",
  3260. "symfony/serializer": "^6.4|^7.0",
  3261. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3262. },
  3263. "type": "library",
  3264. "autoload": {
  3265. "psr-4": {
  3266. "Symfony\\Component\\VarExporter\\": ""
  3267. },
  3268. "exclude-from-classmap": [
  3269. "/Tests/"
  3270. ]
  3271. },
  3272. "license": [
  3273. "MIT"
  3274. ],
  3275. "authors": [
  3276. {
  3277. "name": "Nicolas Grekas",
  3278. "email": "p@tchwork.com"
  3279. },
  3280. {
  3281. "name": "Symfony Community",
  3282. "homepage": "https://symfony.com/contributors"
  3283. }
  3284. ],
  3285. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  3286. "homepage": "https://symfony.com",
  3287. "keywords": [
  3288. "clone",
  3289. "construct",
  3290. "export",
  3291. "hydrate",
  3292. "instantiate",
  3293. "lazy-loading",
  3294. "proxy",
  3295. "serialize"
  3296. ],
  3297. "funding": [
  3298. {
  3299. "url": "https://symfony.com/sponsor",
  3300. "type": "custom"
  3301. },
  3302. {
  3303. "url": "https://github.com/fabpot",
  3304. "type": "github"
  3305. },
  3306. {
  3307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3308. "type": "tidelift"
  3309. }
  3310. ],
  3311. "time": "2024-09-25T14:18:03+00:00"
  3312. },
  3313. {
  3314. "name": "symfony/yaml",
  3315. "version": "v6.4.13",
  3316. "dist": {
  3317. "type": "zip",
  3318. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/yaml/v6.4.13/symfony-yaml-v6.4.13.zip",
  3319. "reference": "e99b4e94d124b29ee4cf3140e1b537d2dad8cec9",
  3320. "shasum": ""
  3321. },
  3322. "require": {
  3323. "php": ">=8.1",
  3324. "symfony/deprecation-contracts": "^2.5|^3",
  3325. "symfony/polyfill-ctype": "^1.8"
  3326. },
  3327. "conflict": {
  3328. "symfony/console": "<5.4"
  3329. },
  3330. "require-dev": {
  3331. "symfony/console": "^5.4|^6.0|^7.0"
  3332. },
  3333. "bin": [
  3334. "Resources/bin/yaml-lint"
  3335. ],
  3336. "type": "library",
  3337. "autoload": {
  3338. "psr-4": {
  3339. "Symfony\\Component\\Yaml\\": ""
  3340. },
  3341. "exclude-from-classmap": [
  3342. "/Tests/"
  3343. ]
  3344. },
  3345. "license": [
  3346. "MIT"
  3347. ],
  3348. "authors": [
  3349. {
  3350. "name": "Fabien Potencier",
  3351. "email": "fabien@symfony.com"
  3352. },
  3353. {
  3354. "name": "Symfony Community",
  3355. "homepage": "https://symfony.com/contributors"
  3356. }
  3357. ],
  3358. "description": "Loads and dumps YAML files",
  3359. "homepage": "https://symfony.com",
  3360. "funding": [
  3361. {
  3362. "url": "https://symfony.com/sponsor",
  3363. "type": "custom"
  3364. },
  3365. {
  3366. "url": "https://github.com/fabpot",
  3367. "type": "github"
  3368. },
  3369. {
  3370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3371. "type": "tidelift"
  3372. }
  3373. ],
  3374. "time": "2024-09-25T14:18:03+00:00"
  3375. }
  3376. ],
  3377. "packages-dev": [
  3378. {
  3379. "name": "nikic/php-parser",
  3380. "version": "v5.4.0",
  3381. "dist": {
  3382. "type": "zip",
  3383. "url": "http://nexus.intra.cnaf/repository/composer-proxy/nikic/php-parser/v5.4.0/nikic-php-parser-v5.4.0.zip",
  3384. "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
  3385. "shasum": ""
  3386. },
  3387. "require": {
  3388. "ext-ctype": "*",
  3389. "ext-json": "*",
  3390. "ext-tokenizer": "*",
  3391. "php": ">=7.4"
  3392. },
  3393. "require-dev": {
  3394. "ircmaxell/php-yacc": "^0.0.7",
  3395. "phpunit/phpunit": "^9.0"
  3396. },
  3397. "bin": [
  3398. "bin/php-parse"
  3399. ],
  3400. "type": "library",
  3401. "extra": {
  3402. "branch-alias": {
  3403. "dev-master": "5.0-dev"
  3404. }
  3405. },
  3406. "autoload": {
  3407. "psr-4": {
  3408. "PhpParser\\": "lib/PhpParser"
  3409. }
  3410. },
  3411. "license": [
  3412. "BSD-3-Clause"
  3413. ],
  3414. "authors": [
  3415. {
  3416. "name": "Nikita Popov"
  3417. }
  3418. ],
  3419. "description": "A PHP parser written in PHP",
  3420. "keywords": [
  3421. "parser",
  3422. "php"
  3423. ],
  3424. "time": "2024-12-30T11:07:19+00:00"
  3425. },
  3426. {
  3427. "name": "symfony/maker-bundle",
  3428. "version": "v1.61.0",
  3429. "dist": {
  3430. "type": "zip",
  3431. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/maker-bundle/v1.61.0/symfony-maker-bundle-v1.61.0.zip",
  3432. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  3433. "shasum": ""
  3434. },
  3435. "require": {
  3436. "doctrine/inflector": "^2.0",
  3437. "nikic/php-parser": "^4.18|^5.0",
  3438. "php": ">=8.1",
  3439. "symfony/config": "^6.4|^7.0",
  3440. "symfony/console": "^6.4|^7.0",
  3441. "symfony/dependency-injection": "^6.4|^7.0",
  3442. "symfony/deprecation-contracts": "^2.2|^3",
  3443. "symfony/filesystem": "^6.4|^7.0",
  3444. "symfony/finder": "^6.4|^7.0",
  3445. "symfony/framework-bundle": "^6.4|^7.0",
  3446. "symfony/http-kernel": "^6.4|^7.0",
  3447. "symfony/process": "^6.4|^7.0"
  3448. },
  3449. "conflict": {
  3450. "doctrine/doctrine-bundle": "<2.10",
  3451. "doctrine/orm": "<2.15"
  3452. },
  3453. "require-dev": {
  3454. "composer/semver": "^3.0",
  3455. "doctrine/doctrine-bundle": "^2.5.0",
  3456. "doctrine/orm": "^2.15|^3",
  3457. "symfony/http-client": "^6.4|^7.0",
  3458. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  3459. "symfony/security-core": "^6.4|^7.0",
  3460. "symfony/yaml": "^6.4|^7.0",
  3461. "twig/twig": "^3.0|^4.x-dev"
  3462. },
  3463. "type": "symfony-bundle",
  3464. "extra": {
  3465. "branch-alias": {
  3466. "dev-main": "1.x-dev"
  3467. }
  3468. },
  3469. "autoload": {
  3470. "psr-4": {
  3471. "Symfony\\Bundle\\MakerBundle\\": "src/"
  3472. }
  3473. },
  3474. "license": [
  3475. "MIT"
  3476. ],
  3477. "authors": [
  3478. {
  3479. "name": "Symfony Community",
  3480. "homepage": "https://symfony.com/contributors"
  3481. }
  3482. ],
  3483. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  3484. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  3485. "keywords": [
  3486. "code generator",
  3487. "dev",
  3488. "generator",
  3489. "scaffold",
  3490. "scaffolding"
  3491. ],
  3492. "funding": [
  3493. {
  3494. "url": "https://symfony.com/sponsor",
  3495. "type": "custom"
  3496. },
  3497. {
  3498. "url": "https://github.com/fabpot",
  3499. "type": "github"
  3500. },
  3501. {
  3502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3503. "type": "tidelift"
  3504. }
  3505. ],
  3506. "time": "2024-08-29T22:50:23+00:00"
  3507. },
  3508. {
  3509. "name": "symfony/process",
  3510. "version": "v6.4.15",
  3511. "dist": {
  3512. "type": "zip",
  3513. "url": "http://nexus.intra.cnaf/repository/composer-proxy/symfony/process/v6.4.15/symfony-process-v6.4.15.zip",
  3514. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  3515. "shasum": ""
  3516. },
  3517. "require": {
  3518. "php": ">=8.1"
  3519. },
  3520. "type": "library",
  3521. "autoload": {
  3522. "psr-4": {
  3523. "Symfony\\Component\\Process\\": ""
  3524. },
  3525. "exclude-from-classmap": [
  3526. "/Tests/"
  3527. ]
  3528. },
  3529. "license": [
  3530. "MIT"
  3531. ],
  3532. "authors": [
  3533. {
  3534. "name": "Fabien Potencier",
  3535. "email": "fabien@symfony.com"
  3536. },
  3537. {
  3538. "name": "Symfony Community",
  3539. "homepage": "https://symfony.com/contributors"
  3540. }
  3541. ],
  3542. "description": "Executes commands in sub-processes",
  3543. "homepage": "https://symfony.com",
  3544. "funding": [
  3545. {
  3546. "url": "https://symfony.com/sponsor",
  3547. "type": "custom"
  3548. },
  3549. {
  3550. "url": "https://github.com/fabpot",
  3551. "type": "github"
  3552. },
  3553. {
  3554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3555. "type": "tidelift"
  3556. }
  3557. ],
  3558. "time": "2024-11-06T14:19:14+00:00"
  3559. }
  3560. ],
  3561. "aliases": [],
  3562. "minimum-stability": "stable",
  3563. "stability-flags": [],
  3564. "prefer-stable": true,
  3565. "prefer-lowest": false,
  3566. "platform": {
  3567. "php": ">=8.1",
  3568. "ext-ctype": "*",
  3569. "ext-iconv": "*"
  3570. },
  3571. "platform-dev": [],
  3572. "plugin-api-version": "2.3.0"
  3573. }