composer.lock 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378
  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": "704c7729e6ed4e5c01f05be32675c02c",
  8. "packages": [
  9. {
  10. "name": "composer-unused/contracts",
  11. "version": "0.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer-unused/contracts.git",
  15. "reference": "5ec448d3ee80735dccad6a21a3266c377d0845ae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer-unused/contracts/zipball/5ec448d3ee80735dccad6a21a3266c377d0845ae",
  20. "reference": "5ec448d3ee80735dccad6a21a3266c377d0845ae",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.4 || ^8.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-4": {
  29. "ComposerUnused\\Contracts\\": "src/"
  30. }
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "MIT"
  35. ],
  36. "authors": [
  37. {
  38. "name": "Andreas Frömer",
  39. "email": "composer-unused@icanhazstring.com"
  40. }
  41. ],
  42. "description": "Contract repository for composer-unused",
  43. "support": {
  44. "issues": "https://github.com/composer-unused/contracts/issues",
  45. "source": "https://github.com/composer-unused/contracts/tree/0.3.0"
  46. },
  47. "funding": [
  48. {
  49. "url": "https://github.com/icanhazstring",
  50. "type": "github"
  51. }
  52. ],
  53. "time": "2023-03-17T00:41:49+00:00"
  54. },
  55. {
  56. "name": "composer-unused/symbol-parser",
  57. "version": "0.2.5",
  58. "source": {
  59. "type": "git",
  60. "url": "https://github.com/composer-unused/symbol-parser.git",
  61. "reference": "96cee7244aea405e936247d42c49332d52d90ae7"
  62. },
  63. "dist": {
  64. "type": "zip",
  65. "url": "https://api.github.com/repos/composer-unused/symbol-parser/zipball/96cee7244aea405e936247d42c49332d52d90ae7",
  66. "reference": "96cee7244aea405e936247d42c49332d52d90ae7",
  67. "shasum": ""
  68. },
  69. "require": {
  70. "composer-unused/contracts": "^0.3",
  71. "nikic/php-parser": "^4.18 || ^5.0",
  72. "php": "^7.4 || ^8.0",
  73. "phpstan/phpdoc-parser": "^1.25",
  74. "psr/container": "^1.0 || ^2.0",
  75. "psr/log": "^1.1 || ^2 || ^3",
  76. "symfony/finder": "^5.3 || ^6.0 || ^7.0"
  77. },
  78. "require-dev": {
  79. "ergebnis/composer-normalize": "^2.42",
  80. "ext-ds": "*",
  81. "phpstan/phpstan": "^1.10",
  82. "phpunit/phpunit": "^9.6.10 || ^10.5",
  83. "roave/security-advisories": "dev-master",
  84. "squizlabs/php_codesniffer": "^3.9.0",
  85. "symfony/serializer": "^5.4"
  86. },
  87. "type": "library",
  88. "autoload": {
  89. "psr-4": {
  90. "ComposerUnused\\SymbolParser\\": "src"
  91. }
  92. },
  93. "notification-url": "https://packagist.org/downloads/",
  94. "license": [
  95. "MIT"
  96. ],
  97. "authors": [
  98. {
  99. "name": "Andreas Frömer",
  100. "email": "composer-unused@icanhazstring.com"
  101. }
  102. ],
  103. "description": "Toolkit to parse symbols from a composer package",
  104. "homepage": "https://github.com/composer-unused/symbol-parser",
  105. "keywords": [
  106. "composer",
  107. "parser",
  108. "symbol"
  109. ],
  110. "support": {
  111. "issues": "https://github.com/composer-unused/symbol-parser/issues",
  112. "source": "https://github.com/composer-unused/symbol-parser"
  113. },
  114. "funding": [
  115. {
  116. "url": "https://github.com/sponsors/icanhazstring",
  117. "type": "github"
  118. },
  119. {
  120. "url": "https://paypal.me/icanhazstring",
  121. "type": "other"
  122. }
  123. ],
  124. "time": "2024-03-09T15:25:51+00:00"
  125. },
  126. {
  127. "name": "composer/pcre",
  128. "version": "3.1.3",
  129. "source": {
  130. "type": "git",
  131. "url": "https://github.com/composer/pcre.git",
  132. "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8"
  133. },
  134. "dist": {
  135. "type": "zip",
  136. "url": "https://api.github.com/repos/composer/pcre/zipball/5b16e25a5355f1f3afdfc2f954a0a80aec4826a8",
  137. "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8",
  138. "shasum": ""
  139. },
  140. "require": {
  141. "php": "^7.4 || ^8.0"
  142. },
  143. "require-dev": {
  144. "phpstan/phpstan": "^1.3",
  145. "phpstan/phpstan-strict-rules": "^1.1",
  146. "symfony/phpunit-bridge": "^5"
  147. },
  148. "type": "library",
  149. "extra": {
  150. "branch-alias": {
  151. "dev-main": "3.x-dev"
  152. }
  153. },
  154. "autoload": {
  155. "psr-4": {
  156. "Composer\\Pcre\\": "src"
  157. }
  158. },
  159. "notification-url": "https://packagist.org/downloads/",
  160. "license": [
  161. "MIT"
  162. ],
  163. "authors": [
  164. {
  165. "name": "Jordi Boggiano",
  166. "email": "j.boggiano@seld.be",
  167. "homepage": "http://seld.be"
  168. }
  169. ],
  170. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  171. "keywords": [
  172. "PCRE",
  173. "preg",
  174. "regex",
  175. "regular expression"
  176. ],
  177. "support": {
  178. "issues": "https://github.com/composer/pcre/issues",
  179. "source": "https://github.com/composer/pcre/tree/3.1.3"
  180. },
  181. "funding": [
  182. {
  183. "url": "https://packagist.com",
  184. "type": "custom"
  185. },
  186. {
  187. "url": "https://github.com/composer",
  188. "type": "github"
  189. },
  190. {
  191. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  192. "type": "tidelift"
  193. }
  194. ],
  195. "time": "2024-03-19T10:26:25+00:00"
  196. },
  197. {
  198. "name": "composer/xdebug-handler",
  199. "version": "3.0.4",
  200. "source": {
  201. "type": "git",
  202. "url": "https://github.com/composer/xdebug-handler.git",
  203. "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255"
  204. },
  205. "dist": {
  206. "type": "zip",
  207. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/4f988f8fdf580d53bdb2d1278fe93d1ed5462255",
  208. "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255",
  209. "shasum": ""
  210. },
  211. "require": {
  212. "composer/pcre": "^1 || ^2 || ^3",
  213. "php": "^7.2.5 || ^8.0",
  214. "psr/log": "^1 || ^2 || ^3"
  215. },
  216. "require-dev": {
  217. "phpstan/phpstan": "^1.0",
  218. "phpstan/phpstan-strict-rules": "^1.1",
  219. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  220. },
  221. "type": "library",
  222. "autoload": {
  223. "psr-4": {
  224. "Composer\\XdebugHandler\\": "src"
  225. }
  226. },
  227. "notification-url": "https://packagist.org/downloads/",
  228. "license": [
  229. "MIT"
  230. ],
  231. "authors": [
  232. {
  233. "name": "John Stevenson",
  234. "email": "john-stevenson@blueyonder.co.uk"
  235. }
  236. ],
  237. "description": "Restarts a process without Xdebug.",
  238. "keywords": [
  239. "Xdebug",
  240. "performance"
  241. ],
  242. "support": {
  243. "irc": "ircs://irc.libera.chat:6697/composer",
  244. "issues": "https://github.com/composer/xdebug-handler/issues",
  245. "source": "https://github.com/composer/xdebug-handler/tree/3.0.4"
  246. },
  247. "funding": [
  248. {
  249. "url": "https://packagist.com",
  250. "type": "custom"
  251. },
  252. {
  253. "url": "https://github.com/composer",
  254. "type": "github"
  255. },
  256. {
  257. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  258. "type": "tidelift"
  259. }
  260. ],
  261. "time": "2024-03-26T18:29:49+00:00"
  262. },
  263. {
  264. "name": "ergebnis/composer-normalize",
  265. "version": "2.42.0",
  266. "source": {
  267. "type": "git",
  268. "url": "https://github.com/ergebnis/composer-normalize.git",
  269. "reference": "02cf2b69ad2a74c6f11a8c3f5f054b8f949df910"
  270. },
  271. "dist": {
  272. "type": "zip",
  273. "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/02cf2b69ad2a74c6f11a8c3f5f054b8f949df910",
  274. "reference": "02cf2b69ad2a74c6f11a8c3f5f054b8f949df910",
  275. "shasum": ""
  276. },
  277. "require": {
  278. "composer-plugin-api": "^2.0.0",
  279. "ergebnis/json": "^1.2.0",
  280. "ergebnis/json-normalizer": "^4.5.0",
  281. "ergebnis/json-printer": "^3.5.0",
  282. "ext-json": "*",
  283. "justinrainbow/json-schema": "^5.2.12",
  284. "localheinz/diff": "^1.1.1",
  285. "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  286. },
  287. "require-dev": {
  288. "composer/composer": "^2.6.6",
  289. "ergebnis/license": "^2.4.0",
  290. "ergebnis/php-cs-fixer-config": "^6.20.0",
  291. "ergebnis/phpunit-slow-test-detector": "^2.9.0",
  292. "fakerphp/faker": "^1.23.1",
  293. "infection/infection": "~0.26.6",
  294. "phpunit/phpunit": "^9.6.16",
  295. "psalm/plugin-phpunit": "~0.18.4",
  296. "rector/rector": "~0.19.2",
  297. "symfony/filesystem": "^5.4.25",
  298. "vimeo/psalm": "^5.20.0"
  299. },
  300. "type": "composer-plugin",
  301. "extra": {
  302. "class": "Ergebnis\\Composer\\Normalize\\NormalizePlugin",
  303. "composer-normalize": {
  304. "indent-size": 2,
  305. "indent-style": "space"
  306. },
  307. "plugin-optional": true
  308. },
  309. "autoload": {
  310. "psr-4": {
  311. "Ergebnis\\Composer\\Normalize\\": "src/"
  312. }
  313. },
  314. "notification-url": "https://packagist.org/downloads/",
  315. "license": [
  316. "MIT"
  317. ],
  318. "authors": [
  319. {
  320. "name": "Andreas Möller",
  321. "email": "am@localheinz.com",
  322. "homepage": "https://localheinz.com"
  323. }
  324. ],
  325. "description": "Provides a composer plugin for normalizing composer.json.",
  326. "homepage": "https://github.com/ergebnis/composer-normalize",
  327. "keywords": [
  328. "composer",
  329. "normalize",
  330. "normalizer",
  331. "plugin"
  332. ],
  333. "support": {
  334. "issues": "https://github.com/ergebnis/composer-normalize/issues",
  335. "security": "https://github.com/ergebnis/composer-normalize/blob/main/.github/SECURITY.md",
  336. "source": "https://github.com/ergebnis/composer-normalize"
  337. },
  338. "time": "2024-01-30T11:54:02+00:00"
  339. },
  340. {
  341. "name": "ergebnis/json",
  342. "version": "1.2.0",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/ergebnis/json.git",
  346. "reference": "a457f25a5ba7ea11fc94f84d53678c5211abfce0"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/ergebnis/json/zipball/a457f25a5ba7ea11fc94f84d53678c5211abfce0",
  351. "reference": "a457f25a5ba7ea11fc94f84d53678c5211abfce0",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "ext-json": "*",
  356. "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  357. },
  358. "require-dev": {
  359. "ergebnis/data-provider": "^3.2.0",
  360. "ergebnis/license": "^2.4.0",
  361. "ergebnis/php-cs-fixer-config": "^6.20.0",
  362. "ergebnis/phpunit-slow-test-detector": "^2.9.0",
  363. "fakerphp/faker": "^1.23.1",
  364. "infection/infection": "~0.26.6",
  365. "phpunit/phpunit": "^9.6.16",
  366. "psalm/plugin-phpunit": "~0.18.4",
  367. "rector/rector": "~0.19.2",
  368. "vimeo/psalm": "^5.20.0"
  369. },
  370. "type": "library",
  371. "extra": {
  372. "composer-normalize": {
  373. "indent-size": 2,
  374. "indent-style": "space"
  375. }
  376. },
  377. "autoload": {
  378. "psr-4": {
  379. "Ergebnis\\Json\\": "src/"
  380. }
  381. },
  382. "notification-url": "https://packagist.org/downloads/",
  383. "license": [
  384. "MIT"
  385. ],
  386. "authors": [
  387. {
  388. "name": "Andreas Möller",
  389. "email": "am@localheinz.com",
  390. "homepage": "https://localheinz.com"
  391. }
  392. ],
  393. "description": "Provides a Json value object for representing a valid JSON string.",
  394. "homepage": "https://github.com/ergebnis/json",
  395. "keywords": [
  396. "json"
  397. ],
  398. "support": {
  399. "issues": "https://github.com/ergebnis/json/issues",
  400. "security": "https://github.com/ergebnis/json/blob/main/.github/SECURITY.md",
  401. "source": "https://github.com/ergebnis/json"
  402. },
  403. "time": "2024-01-29T15:09:24+00:00"
  404. },
  405. {
  406. "name": "ergebnis/json-normalizer",
  407. "version": "4.5.0",
  408. "source": {
  409. "type": "git",
  410. "url": "https://github.com/ergebnis/json-normalizer.git",
  411. "reference": "f0ee9e70739f121b27fac8b743e4a52b23de2152"
  412. },
  413. "dist": {
  414. "type": "zip",
  415. "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/f0ee9e70739f121b27fac8b743e4a52b23de2152",
  416. "reference": "f0ee9e70739f121b27fac8b743e4a52b23de2152",
  417. "shasum": ""
  418. },
  419. "require": {
  420. "ergebnis/json": "^1.2.0",
  421. "ergebnis/json-pointer": "^3.4.0",
  422. "ergebnis/json-printer": "^3.5.0",
  423. "ergebnis/json-schema-validator": "^4.2.0",
  424. "ext-json": "*",
  425. "justinrainbow/json-schema": "^5.2.12",
  426. "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  427. },
  428. "require-dev": {
  429. "composer/semver": "^3.4.0",
  430. "ergebnis/data-provider": "^3.2.0",
  431. "ergebnis/license": "^2.4.0",
  432. "ergebnis/php-cs-fixer-config": "^6.20.0",
  433. "ergebnis/phpunit-slow-test-detector": "^2.9.0",
  434. "fakerphp/faker": "^1.23.1",
  435. "infection/infection": "~0.26.6",
  436. "phpunit/phpunit": "^9.6.16",
  437. "psalm/plugin-phpunit": "~0.18.4",
  438. "rector/rector": "~0.19.4",
  439. "vimeo/psalm": "^5.20.0"
  440. },
  441. "suggest": {
  442. "composer/semver": "If you want to use ComposerJsonNormalizer or VersionConstraintNormalizer"
  443. },
  444. "type": "library",
  445. "autoload": {
  446. "psr-4": {
  447. "Ergebnis\\Json\\Normalizer\\": "src/"
  448. }
  449. },
  450. "notification-url": "https://packagist.org/downloads/",
  451. "license": [
  452. "MIT"
  453. ],
  454. "authors": [
  455. {
  456. "name": "Andreas Möller",
  457. "email": "am@localheinz.com",
  458. "homepage": "https://localheinz.com"
  459. }
  460. ],
  461. "description": "Provides generic and vendor-specific normalizers for normalizing JSON documents.",
  462. "homepage": "https://github.com/ergebnis/json-normalizer",
  463. "keywords": [
  464. "json",
  465. "normalizer"
  466. ],
  467. "support": {
  468. "issues": "https://github.com/ergebnis/json-normalizer/issues",
  469. "security": "https://github.com/ergebnis/json-normalizer/blob/main/.github/SECURITY.md",
  470. "source": "https://github.com/ergebnis/json-normalizer"
  471. },
  472. "time": "2024-01-30T09:10:15+00:00"
  473. },
  474. {
  475. "name": "ergebnis/json-pointer",
  476. "version": "3.4.0",
  477. "source": {
  478. "type": "git",
  479. "url": "https://github.com/ergebnis/json-pointer.git",
  480. "reference": "b654757d873050622c2166f55ab25d04685261c5"
  481. },
  482. "dist": {
  483. "type": "zip",
  484. "url": "https://api.github.com/repos/ergebnis/json-pointer/zipball/b654757d873050622c2166f55ab25d04685261c5",
  485. "reference": "b654757d873050622c2166f55ab25d04685261c5",
  486. "shasum": ""
  487. },
  488. "require": {
  489. "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  490. },
  491. "require-dev": {
  492. "ergebnis/data-provider": "^3.2.0",
  493. "ergebnis/license": "^2.4.0",
  494. "ergebnis/php-cs-fixer-config": "^6.20.0",
  495. "ergebnis/phpunit-slow-test-detector": "^2.9.0",
  496. "fakerphp/faker": "^1.23.1",
  497. "infection/infection": "~0.26.6",
  498. "phpunit/phpunit": "^9.6.16",
  499. "psalm/plugin-phpunit": "~0.18.4",
  500. "rector/rector": "~0.19.2",
  501. "vimeo/psalm": "^5.20.0"
  502. },
  503. "type": "library",
  504. "extra": {
  505. "composer-normalize": {
  506. "indent-size": 2,
  507. "indent-style": "space"
  508. }
  509. },
  510. "autoload": {
  511. "psr-4": {
  512. "Ergebnis\\Json\\Pointer\\": "src/"
  513. }
  514. },
  515. "notification-url": "https://packagist.org/downloads/",
  516. "license": [
  517. "MIT"
  518. ],
  519. "authors": [
  520. {
  521. "name": "Andreas Möller",
  522. "email": "am@localheinz.com",
  523. "homepage": "https://localheinz.com"
  524. }
  525. ],
  526. "description": "Provides an abstraction of a JSON pointer.",
  527. "homepage": "https://github.com/ergebnis/json-pointer",
  528. "keywords": [
  529. "RFC6901",
  530. "json",
  531. "pointer"
  532. ],
  533. "support": {
  534. "issues": "https://github.com/ergebnis/json-pointer/issues",
  535. "security": "https://github.com/ergebnis/json-pointer/blob/main/.github/SECURITY.md",
  536. "source": "https://github.com/ergebnis/json-pointer"
  537. },
  538. "time": "2024-01-29T16:37:15+00:00"
  539. },
  540. {
  541. "name": "ergebnis/json-printer",
  542. "version": "3.5.0",
  543. "source": {
  544. "type": "git",
  545. "url": "https://github.com/ergebnis/json-printer.git",
  546. "reference": "549e16fe6de34b8c3aee7b421be12caa552f3ced"
  547. },
  548. "dist": {
  549. "type": "zip",
  550. "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/549e16fe6de34b8c3aee7b421be12caa552f3ced",
  551. "reference": "549e16fe6de34b8c3aee7b421be12caa552f3ced",
  552. "shasum": ""
  553. },
  554. "require": {
  555. "ext-json": "*",
  556. "ext-mbstring": "*",
  557. "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  558. },
  559. "require-dev": {
  560. "ergebnis/data-provider": "^3.2.0",
  561. "ergebnis/license": "^2.4.0",
  562. "ergebnis/php-cs-fixer-config": "^6.20.0",
  563. "ergebnis/phpunit-slow-test-detector": "^2.9.0",
  564. "fakerphp/faker": "^1.23.1",
  565. "infection/infection": "~0.26.6",
  566. "phpunit/phpunit": "^9.6.16",
  567. "psalm/plugin-phpunit": "~0.18.4",
  568. "rector/rector": "~0.19.2",
  569. "vimeo/psalm": "^5.20.0"
  570. },
  571. "type": "library",
  572. "autoload": {
  573. "psr-4": {
  574. "Ergebnis\\Json\\Printer\\": "src/"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "MIT"
  580. ],
  581. "authors": [
  582. {
  583. "name": "Andreas Möller",
  584. "email": "am@localheinz.com",
  585. "homepage": "https://localheinz.com"
  586. }
  587. ],
  588. "description": "Provides a JSON printer, allowing for flexible indentation.",
  589. "homepage": "https://github.com/ergebnis/json-printer",
  590. "keywords": [
  591. "formatter",
  592. "json",
  593. "printer"
  594. ],
  595. "support": {
  596. "issues": "https://github.com/ergebnis/json-printer/issues",
  597. "security": "https://github.com/ergebnis/json-printer/blob/main/.github/SECURITY.md",
  598. "source": "https://github.com/ergebnis/json-printer"
  599. },
  600. "time": "2024-01-29T15:33:37+00:00"
  601. },
  602. {
  603. "name": "ergebnis/json-schema-validator",
  604. "version": "4.2.0",
  605. "source": {
  606. "type": "git",
  607. "url": "https://github.com/ergebnis/json-schema-validator.git",
  608. "reference": "10ed514fdc3f9b71f8a92c567afea21a2f6fa1ef"
  609. },
  610. "dist": {
  611. "type": "zip",
  612. "url": "https://api.github.com/repos/ergebnis/json-schema-validator/zipball/10ed514fdc3f9b71f8a92c567afea21a2f6fa1ef",
  613. "reference": "10ed514fdc3f9b71f8a92c567afea21a2f6fa1ef",
  614. "shasum": ""
  615. },
  616. "require": {
  617. "ergebnis/json": "^1.2.0",
  618. "ergebnis/json-pointer": "^3.4.0",
  619. "ext-json": "*",
  620. "justinrainbow/json-schema": "^5.2.12",
  621. "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  622. },
  623. "require-dev": {
  624. "ergebnis/data-provider": "^3.2.0",
  625. "ergebnis/license": "^2.4.0",
  626. "ergebnis/php-cs-fixer-config": "^6.20.0",
  627. "ergebnis/phpunit-slow-test-detector": "^2.9.0",
  628. "fakerphp/faker": "^1.23.1",
  629. "infection/infection": "~0.26.6",
  630. "phpunit/phpunit": "^9.6.16",
  631. "psalm/plugin-phpunit": "~0.18.4",
  632. "rector/rector": "~0.19.2",
  633. "vimeo/psalm": "^5.20.0"
  634. },
  635. "type": "library",
  636. "extra": {
  637. "composer-normalize": {
  638. "indent-size": 2,
  639. "indent-style": "space"
  640. }
  641. },
  642. "autoload": {
  643. "psr-4": {
  644. "Ergebnis\\Json\\SchemaValidator\\": "src/"
  645. }
  646. },
  647. "notification-url": "https://packagist.org/downloads/",
  648. "license": [
  649. "MIT"
  650. ],
  651. "authors": [
  652. {
  653. "name": "Andreas Möller",
  654. "email": "am@localheinz.com",
  655. "homepage": "https://localheinz.com"
  656. }
  657. ],
  658. "description": "Provides a JSON schema validator, building on top of justinrainbow/json-schema.",
  659. "homepage": "https://github.com/ergebnis/json-schema-validator",
  660. "keywords": [
  661. "json",
  662. "schema",
  663. "validator"
  664. ],
  665. "support": {
  666. "issues": "https://github.com/ergebnis/json-schema-validator/issues",
  667. "security": "https://github.com/ergebnis/json-schema-validator/blob/main/.github/SECURITY.md",
  668. "source": "https://github.com/ergebnis/json-schema-validator"
  669. },
  670. "time": "2024-01-29T16:50:15+00:00"
  671. },
  672. {
  673. "name": "icanhazstring/composer-unused",
  674. "version": "0.8.11",
  675. "source": {
  676. "type": "git",
  677. "url": "https://github.com/composer-unused/composer-unused.git",
  678. "reference": "4720206edc29a7da1913ece0e508f6d82fbcd905"
  679. },
  680. "dist": {
  681. "type": "zip",
  682. "url": "https://api.github.com/repos/composer-unused/composer-unused/zipball/4720206edc29a7da1913ece0e508f6d82fbcd905",
  683. "reference": "4720206edc29a7da1913ece0e508f6d82fbcd905",
  684. "shasum": ""
  685. },
  686. "require": {
  687. "composer-unused/contracts": "^0.3",
  688. "composer-unused/symbol-parser": "^0.2.1",
  689. "ext-json": "*",
  690. "nikic/php-parser": "^4.15",
  691. "ondram/ci-detector": "^4.1",
  692. "php": "^7.4 || ^8.0",
  693. "phpstan/phpdoc-parser": "^1.12",
  694. "psr/container": "^1.0 || ^2.0",
  695. "psr/log": "^1.1 || ^2 || ^3",
  696. "symfony/config": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  697. "symfony/console": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  698. "symfony/dependency-injection": "^4.4.8 || ^5.4 || ^6.0 || ^7.0",
  699. "symfony/property-access": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  700. "symfony/serializer": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  701. "symfony/validator": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  702. "webmozart/assert": "^1.10",
  703. "webmozart/glob": "^4.4"
  704. },
  705. "require-dev": {
  706. "bamarni/composer-bin-plugin": "^1.8",
  707. "codeception/verify": "^3.0",
  708. "dg/bypass-finals": "^1.5",
  709. "ergebnis/composer-normalize": "^2.28",
  710. "ext-ds": "*",
  711. "ext-zend-opcache": "*",
  712. "jangregor/phpstan-prophecy": "^1.0",
  713. "php-ds/php-ds": "^1.4",
  714. "phpspec/prophecy-phpunit": "^2.0.2",
  715. "phpstan/extension-installer": "^1.3",
  716. "phpstan/phpstan": "^1.10",
  717. "phpstan/phpstan-phpunit": "^1.3",
  718. "phpunit/phpunit": "^9.6.13",
  719. "roave/security-advisories": "dev-master",
  720. "squizlabs/php_codesniffer": "^3.7"
  721. },
  722. "bin": [
  723. "bin/composer-unused"
  724. ],
  725. "type": "library",
  726. "extra": {
  727. "bamarni-bin": {
  728. "bin-links": true,
  729. "forward-command": true
  730. }
  731. },
  732. "autoload": {
  733. "psr-4": {
  734. "ComposerUnused\\ComposerUnused\\": "src"
  735. }
  736. },
  737. "notification-url": "https://packagist.org/downloads/",
  738. "license": [
  739. "MIT"
  740. ],
  741. "authors": [
  742. {
  743. "name": "Andreas Frömer",
  744. "email": "composer-unused@icanhazstring.com"
  745. }
  746. ],
  747. "description": "Show unused packages by scanning your code",
  748. "homepage": "https://github.com/composer-unused/composer-unused",
  749. "keywords": [
  750. "composer",
  751. "php-parser",
  752. "static analysis",
  753. "unused"
  754. ],
  755. "support": {
  756. "issues": "https://github.com/composer-unused/composer-unused/issues",
  757. "source": "https://github.com/composer-unused/composer-unused"
  758. },
  759. "funding": [
  760. {
  761. "url": "https://github.com/sponsors/icanhazstring",
  762. "type": "github"
  763. },
  764. {
  765. "url": "https://paypal.me/icanhazstring",
  766. "type": "other"
  767. }
  768. ],
  769. "time": "2023-11-30T14:35:29+00:00"
  770. },
  771. {
  772. "name": "justinrainbow/json-schema",
  773. "version": "v5.2.13",
  774. "source": {
  775. "type": "git",
  776. "url": "https://github.com/justinrainbow/json-schema.git",
  777. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
  778. },
  779. "dist": {
  780. "type": "zip",
  781. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
  782. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
  783. "shasum": ""
  784. },
  785. "require": {
  786. "php": ">=5.3.3"
  787. },
  788. "require-dev": {
  789. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  790. "json-schema/json-schema-test-suite": "1.2.0",
  791. "phpunit/phpunit": "^4.8.35"
  792. },
  793. "bin": [
  794. "bin/validate-json"
  795. ],
  796. "type": "library",
  797. "extra": {
  798. "branch-alias": {
  799. "dev-master": "5.0.x-dev"
  800. }
  801. },
  802. "autoload": {
  803. "psr-4": {
  804. "JsonSchema\\": "src/JsonSchema/"
  805. }
  806. },
  807. "notification-url": "https://packagist.org/downloads/",
  808. "license": [
  809. "MIT"
  810. ],
  811. "authors": [
  812. {
  813. "name": "Bruno Prieto Reis",
  814. "email": "bruno.p.reis@gmail.com"
  815. },
  816. {
  817. "name": "Justin Rainbow",
  818. "email": "justin.rainbow@gmail.com"
  819. },
  820. {
  821. "name": "Igor Wiedler",
  822. "email": "igor@wiedler.ch"
  823. },
  824. {
  825. "name": "Robert Schönthal",
  826. "email": "seroscho@googlemail.com"
  827. }
  828. ],
  829. "description": "A library to validate a json schema.",
  830. "homepage": "https://github.com/justinrainbow/json-schema",
  831. "keywords": [
  832. "json",
  833. "schema"
  834. ],
  835. "support": {
  836. "issues": "https://github.com/justinrainbow/json-schema/issues",
  837. "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
  838. },
  839. "time": "2023-09-26T02:20:38+00:00"
  840. },
  841. {
  842. "name": "localheinz/diff",
  843. "version": "1.1.1",
  844. "source": {
  845. "type": "git",
  846. "url": "https://github.com/localheinz/diff.git",
  847. "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c"
  848. },
  849. "dist": {
  850. "type": "zip",
  851. "url": "https://api.github.com/repos/localheinz/diff/zipball/851bb20ea8358c86f677f5f111c4ab031b1c764c",
  852. "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c",
  853. "shasum": ""
  854. },
  855. "require": {
  856. "php": "^7.1 || ^8.0"
  857. },
  858. "require-dev": {
  859. "phpunit/phpunit": "^7.5 || ^8.0",
  860. "symfony/process": "^4.2 || ^5"
  861. },
  862. "type": "library",
  863. "autoload": {
  864. "classmap": [
  865. "src/"
  866. ]
  867. },
  868. "notification-url": "https://packagist.org/downloads/",
  869. "license": [
  870. "BSD-3-Clause"
  871. ],
  872. "authors": [
  873. {
  874. "name": "Sebastian Bergmann",
  875. "email": "sebastian@phpunit.de"
  876. },
  877. {
  878. "name": "Kore Nordmann",
  879. "email": "mail@kore-nordmann.de"
  880. }
  881. ],
  882. "description": "Fork of sebastian/diff for use with ergebnis/composer-normalize",
  883. "homepage": "https://github.com/localheinz/diff",
  884. "keywords": [
  885. "diff",
  886. "udiff",
  887. "unidiff",
  888. "unified diff"
  889. ],
  890. "support": {
  891. "source": "https://github.com/localheinz/diff/tree/main"
  892. },
  893. "funding": [
  894. {
  895. "url": "https://github.com/sebastianbergmann",
  896. "type": "github"
  897. }
  898. ],
  899. "time": "2020-07-06T04:49:32+00:00"
  900. },
  901. {
  902. "name": "maglnet/composer-require-checker",
  903. "version": "4.11.0",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/maglnet/ComposerRequireChecker.git",
  907. "reference": "c6c555e799bee50810fd84933ca1f0b276379ccf"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/maglnet/ComposerRequireChecker/zipball/c6c555e799bee50810fd84933ca1f0b276379ccf",
  912. "reference": "c6c555e799bee50810fd84933ca1f0b276379ccf",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "composer-runtime-api": "^2.0.0",
  917. "ext-phar": "*",
  918. "nikic/php-parser": "^4.19.1",
  919. "php": "~8.2.0 || ~8.3.0",
  920. "symfony/console": "^6.4.1 || ^7.0.1",
  921. "webmozart/assert": "^1.11.0",
  922. "webmozart/glob": "^4.7.0"
  923. },
  924. "require-dev": {
  925. "doctrine/coding-standard": "^12.0.0",
  926. "ext-zend-opcache": "*",
  927. "phing/phing": "^2.17.4",
  928. "phpstan/phpstan": "^1.10.66",
  929. "phpunit/phpunit": "^10.5.16",
  930. "psalm/plugin-phpunit": "^0.19.0",
  931. "roave/infection-static-analysis-plugin": "^1.35.0",
  932. "spatie/temporary-directory": "^2.2.1",
  933. "vimeo/psalm": "^5.23.1"
  934. },
  935. "bin": [
  936. "bin/composer-require-checker"
  937. ],
  938. "type": "library",
  939. "extra": {
  940. "branch-alias": {
  941. "dev-master": "2.1-dev"
  942. }
  943. },
  944. "autoload": {
  945. "psr-4": {
  946. "ComposerRequireChecker\\": "src/ComposerRequireChecker"
  947. }
  948. },
  949. "notification-url": "https://packagist.org/downloads/",
  950. "license": [
  951. "MIT"
  952. ],
  953. "authors": [
  954. {
  955. "name": "Marco Pivetta",
  956. "email": "ocramius@gmail.com",
  957. "homepage": "http://ocramius.github.io/"
  958. },
  959. {
  960. "name": "Matthias Glaub",
  961. "email": "magl@magl.net",
  962. "homepage": "http://magl.net"
  963. }
  964. ],
  965. "description": "CLI tool to analyze composer dependencies and verify that no unknown symbols are used in the sources of a package",
  966. "homepage": "https://github.com/maglnet/ComposerRequireChecker",
  967. "keywords": [
  968. "analysis",
  969. "cli",
  970. "composer",
  971. "dependency",
  972. "imports",
  973. "require",
  974. "requirements"
  975. ],
  976. "support": {
  977. "issues": "https://github.com/maglnet/ComposerRequireChecker/issues",
  978. "source": "https://github.com/maglnet/ComposerRequireChecker/tree/4.11.0"
  979. },
  980. "time": "2024-04-01T20:24:52+00:00"
  981. },
  982. {
  983. "name": "mi-schi/phpmd-extension",
  984. "version": "4.3.0",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/mi-schi/phpmd-extension.git",
  988. "reference": "52e3eeaf6aaefaca16dbe296372158eb00430e93"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/mi-schi/phpmd-extension/zipball/52e3eeaf6aaefaca16dbe296372158eb00430e93",
  993. "reference": "52e3eeaf6aaefaca16dbe296372158eb00430e93",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "phpmd/phpmd": "^2.3"
  998. },
  999. "require-dev": {
  1000. "mockery/mockery": "@stable",
  1001. "phpunit/phpunit": "^4.7"
  1002. },
  1003. "type": "library",
  1004. "autoload": {
  1005. "psr-4": {
  1006. "MS\\PHPMD\\": "src/"
  1007. }
  1008. },
  1009. "notification-url": "https://packagist.org/downloads/",
  1010. "license": [
  1011. "MIT"
  1012. ],
  1013. "authors": [
  1014. {
  1015. "name": "Michael Schindler",
  1016. "email": "madsn@gmx.de"
  1017. }
  1018. ],
  1019. "description": "Contains extra phpmd rules from clean code book and the best practices of my experiences.",
  1020. "homepage": "https://github.com/mi-schi/phpmd-extension",
  1021. "keywords": [
  1022. "best practices",
  1023. "clean code",
  1024. "extension",
  1025. "mess detection",
  1026. "phpmd",
  1027. "rules"
  1028. ],
  1029. "support": {
  1030. "email": "madsn@gmx.de",
  1031. "issues": "https://github.com/mi-schi/phpmd-extension/issues",
  1032. "source": "https://github.com/mi-schi/phpmd-extension"
  1033. },
  1034. "time": "2018-08-15T09:09:59+00:00"
  1035. },
  1036. {
  1037. "name": "nikic/php-parser",
  1038. "version": "v4.19.1",
  1039. "source": {
  1040. "type": "git",
  1041. "url": "https://github.com/nikic/PHP-Parser.git",
  1042. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  1043. },
  1044. "dist": {
  1045. "type": "zip",
  1046. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  1047. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  1048. "shasum": ""
  1049. },
  1050. "require": {
  1051. "ext-tokenizer": "*",
  1052. "php": ">=7.1"
  1053. },
  1054. "require-dev": {
  1055. "ircmaxell/php-yacc": "^0.0.7",
  1056. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1057. },
  1058. "bin": [
  1059. "bin/php-parse"
  1060. ],
  1061. "type": "library",
  1062. "extra": {
  1063. "branch-alias": {
  1064. "dev-master": "4.9-dev"
  1065. }
  1066. },
  1067. "autoload": {
  1068. "psr-4": {
  1069. "PhpParser\\": "lib/PhpParser"
  1070. }
  1071. },
  1072. "notification-url": "https://packagist.org/downloads/",
  1073. "license": [
  1074. "BSD-3-Clause"
  1075. ],
  1076. "authors": [
  1077. {
  1078. "name": "Nikita Popov"
  1079. }
  1080. ],
  1081. "description": "A PHP parser written in PHP",
  1082. "keywords": [
  1083. "parser",
  1084. "php"
  1085. ],
  1086. "support": {
  1087. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1088. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  1089. },
  1090. "time": "2024-03-17T08:10:35+00:00"
  1091. },
  1092. {
  1093. "name": "ondram/ci-detector",
  1094. "version": "4.2.0",
  1095. "source": {
  1096. "type": "git",
  1097. "url": "https://github.com/OndraM/ci-detector.git",
  1098. "reference": "8b0223b5ed235fd377c75fdd1bfcad05c0f168b8"
  1099. },
  1100. "dist": {
  1101. "type": "zip",
  1102. "url": "https://api.github.com/repos/OndraM/ci-detector/zipball/8b0223b5ed235fd377c75fdd1bfcad05c0f168b8",
  1103. "reference": "8b0223b5ed235fd377c75fdd1bfcad05c0f168b8",
  1104. "shasum": ""
  1105. },
  1106. "require": {
  1107. "php": "^7.4 || ^8.0"
  1108. },
  1109. "require-dev": {
  1110. "ergebnis/composer-normalize": "^2.13.2",
  1111. "lmc/coding-standard": "^3.0.0",
  1112. "php-parallel-lint/php-parallel-lint": "^1.2",
  1113. "phpstan/extension-installer": "^1.1.0",
  1114. "phpstan/phpstan": "^1.2.0",
  1115. "phpstan/phpstan-phpunit": "^1.0.0",
  1116. "phpunit/phpunit": "^9.6.13"
  1117. },
  1118. "type": "library",
  1119. "autoload": {
  1120. "psr-4": {
  1121. "OndraM\\CiDetector\\": "src/"
  1122. }
  1123. },
  1124. "notification-url": "https://packagist.org/downloads/",
  1125. "license": [
  1126. "MIT"
  1127. ],
  1128. "authors": [
  1129. {
  1130. "name": "Ondřej Machulda",
  1131. "email": "ondrej.machulda@gmail.com"
  1132. }
  1133. ],
  1134. "description": "Detect continuous integration environment and provide unified access to properties of current build",
  1135. "keywords": [
  1136. "CircleCI",
  1137. "Codeship",
  1138. "Wercker",
  1139. "adapter",
  1140. "appveyor",
  1141. "aws",
  1142. "aws codebuild",
  1143. "azure",
  1144. "azure devops",
  1145. "azure pipelines",
  1146. "bamboo",
  1147. "bitbucket",
  1148. "buddy",
  1149. "ci-info",
  1150. "codebuild",
  1151. "continuous integration",
  1152. "continuousphp",
  1153. "devops",
  1154. "drone",
  1155. "github",
  1156. "gitlab",
  1157. "interface",
  1158. "jenkins",
  1159. "pipelines",
  1160. "sourcehut",
  1161. "teamcity",
  1162. "travis"
  1163. ],
  1164. "support": {
  1165. "issues": "https://github.com/OndraM/ci-detector/issues",
  1166. "source": "https://github.com/OndraM/ci-detector/tree/4.2.0"
  1167. },
  1168. "time": "2024-03-12T13:22:30+00:00"
  1169. },
  1170. {
  1171. "name": "pdepend/pdepend",
  1172. "version": "2.16.2",
  1173. "source": {
  1174. "type": "git",
  1175. "url": "https://github.com/pdepend/pdepend.git",
  1176. "reference": "f942b208dc2a0868454d01b29f0c75bbcfc6ed58"
  1177. },
  1178. "dist": {
  1179. "type": "zip",
  1180. "url": "https://api.github.com/repos/pdepend/pdepend/zipball/f942b208dc2a0868454d01b29f0c75bbcfc6ed58",
  1181. "reference": "f942b208dc2a0868454d01b29f0c75bbcfc6ed58",
  1182. "shasum": ""
  1183. },
  1184. "require": {
  1185. "php": ">=5.3.7",
  1186. "symfony/config": "^2.3.0|^3|^4|^5|^6.0|^7.0",
  1187. "symfony/dependency-injection": "^2.3.0|^3|^4|^5|^6.0|^7.0",
  1188. "symfony/filesystem": "^2.3.0|^3|^4|^5|^6.0|^7.0",
  1189. "symfony/polyfill-mbstring": "^1.19"
  1190. },
  1191. "require-dev": {
  1192. "easy-doc/easy-doc": "0.0.0|^1.2.3",
  1193. "gregwar/rst": "^1.0",
  1194. "squizlabs/php_codesniffer": "^2.0.0"
  1195. },
  1196. "bin": [
  1197. "src/bin/pdepend"
  1198. ],
  1199. "type": "library",
  1200. "extra": {
  1201. "branch-alias": {
  1202. "dev-master": "2.x-dev"
  1203. }
  1204. },
  1205. "autoload": {
  1206. "psr-4": {
  1207. "PDepend\\": "src/main/php/PDepend"
  1208. }
  1209. },
  1210. "notification-url": "https://packagist.org/downloads/",
  1211. "license": [
  1212. "BSD-3-Clause"
  1213. ],
  1214. "description": "Official version of pdepend to be handled with Composer",
  1215. "keywords": [
  1216. "PHP Depend",
  1217. "PHP_Depend",
  1218. "dev",
  1219. "pdepend"
  1220. ],
  1221. "support": {
  1222. "issues": "https://github.com/pdepend/pdepend/issues",
  1223. "source": "https://github.com/pdepend/pdepend/tree/2.16.2"
  1224. },
  1225. "funding": [
  1226. {
  1227. "url": "https://tidelift.com/funding/github/packagist/pdepend/pdepend",
  1228. "type": "tidelift"
  1229. }
  1230. ],
  1231. "time": "2023-12-17T18:09:59+00:00"
  1232. },
  1233. {
  1234. "name": "phpmd/phpmd",
  1235. "version": "2.15.0",
  1236. "source": {
  1237. "type": "git",
  1238. "url": "https://github.com/phpmd/phpmd.git",
  1239. "reference": "74a1f56e33afad4128b886e334093e98e1b5e7c0"
  1240. },
  1241. "dist": {
  1242. "type": "zip",
  1243. "url": "https://api.github.com/repos/phpmd/phpmd/zipball/74a1f56e33afad4128b886e334093e98e1b5e7c0",
  1244. "reference": "74a1f56e33afad4128b886e334093e98e1b5e7c0",
  1245. "shasum": ""
  1246. },
  1247. "require": {
  1248. "composer/xdebug-handler": "^1.0 || ^2.0 || ^3.0",
  1249. "ext-xml": "*",
  1250. "pdepend/pdepend": "^2.16.1",
  1251. "php": ">=5.3.9"
  1252. },
  1253. "require-dev": {
  1254. "easy-doc/easy-doc": "0.0.0 || ^1.3.2",
  1255. "ext-json": "*",
  1256. "ext-simplexml": "*",
  1257. "gregwar/rst": "^1.0",
  1258. "mikey179/vfsstream": "^1.6.8",
  1259. "squizlabs/php_codesniffer": "^2.9.2 || ^3.7.2"
  1260. },
  1261. "bin": [
  1262. "src/bin/phpmd"
  1263. ],
  1264. "type": "library",
  1265. "autoload": {
  1266. "psr-0": {
  1267. "PHPMD\\": "src/main/php"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "BSD-3-Clause"
  1273. ],
  1274. "authors": [
  1275. {
  1276. "name": "Manuel Pichler",
  1277. "email": "github@manuel-pichler.de",
  1278. "homepage": "https://github.com/manuelpichler",
  1279. "role": "Project Founder"
  1280. },
  1281. {
  1282. "name": "Marc Würth",
  1283. "email": "ravage@bluewin.ch",
  1284. "homepage": "https://github.com/ravage84",
  1285. "role": "Project Maintainer"
  1286. },
  1287. {
  1288. "name": "Other contributors",
  1289. "homepage": "https://github.com/phpmd/phpmd/graphs/contributors",
  1290. "role": "Contributors"
  1291. }
  1292. ],
  1293. "description": "PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD.",
  1294. "homepage": "https://phpmd.org/",
  1295. "keywords": [
  1296. "dev",
  1297. "mess detection",
  1298. "mess detector",
  1299. "pdepend",
  1300. "phpmd",
  1301. "pmd"
  1302. ],
  1303. "support": {
  1304. "irc": "irc://irc.freenode.org/phpmd",
  1305. "issues": "https://github.com/phpmd/phpmd/issues",
  1306. "source": "https://github.com/phpmd/phpmd/tree/2.15.0"
  1307. },
  1308. "funding": [
  1309. {
  1310. "url": "https://tidelift.com/funding/github/packagist/phpmd/phpmd",
  1311. "type": "tidelift"
  1312. }
  1313. ],
  1314. "time": "2023-12-11T08:22:20+00:00"
  1315. },
  1316. {
  1317. "name": "phpstan/extension-installer",
  1318. "version": "1.3.1",
  1319. "source": {
  1320. "type": "git",
  1321. "url": "https://github.com/phpstan/extension-installer.git",
  1322. "reference": "f45734bfb9984c6c56c4486b71230355f066a58a"
  1323. },
  1324. "dist": {
  1325. "type": "zip",
  1326. "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/f45734bfb9984c6c56c4486b71230355f066a58a",
  1327. "reference": "f45734bfb9984c6c56c4486b71230355f066a58a",
  1328. "shasum": ""
  1329. },
  1330. "require": {
  1331. "composer-plugin-api": "^2.0",
  1332. "php": "^7.2 || ^8.0",
  1333. "phpstan/phpstan": "^1.9.0"
  1334. },
  1335. "require-dev": {
  1336. "composer/composer": "^2.0",
  1337. "php-parallel-lint/php-parallel-lint": "^1.2.0",
  1338. "phpstan/phpstan-strict-rules": "^0.11 || ^0.12 || ^1.0"
  1339. },
  1340. "type": "composer-plugin",
  1341. "extra": {
  1342. "class": "PHPStan\\ExtensionInstaller\\Plugin"
  1343. },
  1344. "autoload": {
  1345. "psr-4": {
  1346. "PHPStan\\ExtensionInstaller\\": "src/"
  1347. }
  1348. },
  1349. "notification-url": "https://packagist.org/downloads/",
  1350. "license": [
  1351. "MIT"
  1352. ],
  1353. "description": "Composer plugin for automatic installation of PHPStan extensions",
  1354. "support": {
  1355. "issues": "https://github.com/phpstan/extension-installer/issues",
  1356. "source": "https://github.com/phpstan/extension-installer/tree/1.3.1"
  1357. },
  1358. "time": "2023-05-24T08:59:17+00:00"
  1359. },
  1360. {
  1361. "name": "phpstan/phpdoc-parser",
  1362. "version": "1.28.0",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1366. "reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb",
  1371. "reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "php": "^7.2 || ^8.0"
  1376. },
  1377. "require-dev": {
  1378. "doctrine/annotations": "^2.0",
  1379. "nikic/php-parser": "^4.15",
  1380. "php-parallel-lint/php-parallel-lint": "^1.2",
  1381. "phpstan/extension-installer": "^1.0",
  1382. "phpstan/phpstan": "^1.5",
  1383. "phpstan/phpstan-phpunit": "^1.1",
  1384. "phpstan/phpstan-strict-rules": "^1.0",
  1385. "phpunit/phpunit": "^9.5",
  1386. "symfony/process": "^5.2"
  1387. },
  1388. "type": "library",
  1389. "autoload": {
  1390. "psr-4": {
  1391. "PHPStan\\PhpDocParser\\": [
  1392. "src/"
  1393. ]
  1394. }
  1395. },
  1396. "notification-url": "https://packagist.org/downloads/",
  1397. "license": [
  1398. "MIT"
  1399. ],
  1400. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1401. "support": {
  1402. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1403. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.28.0"
  1404. },
  1405. "time": "2024-04-03T18:51:33+00:00"
  1406. },
  1407. {
  1408. "name": "phpstan/phpstan",
  1409. "version": "1.10.67",
  1410. "source": {
  1411. "type": "git",
  1412. "url": "https://github.com/phpstan/phpstan.git",
  1413. "reference": "16ddbe776f10da6a95ebd25de7c1dbed397dc493"
  1414. },
  1415. "dist": {
  1416. "type": "zip",
  1417. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/16ddbe776f10da6a95ebd25de7c1dbed397dc493",
  1418. "reference": "16ddbe776f10da6a95ebd25de7c1dbed397dc493",
  1419. "shasum": ""
  1420. },
  1421. "require": {
  1422. "php": "^7.2|^8.0"
  1423. },
  1424. "conflict": {
  1425. "phpstan/phpstan-shim": "*"
  1426. },
  1427. "bin": [
  1428. "phpstan",
  1429. "phpstan.phar"
  1430. ],
  1431. "type": "library",
  1432. "autoload": {
  1433. "files": [
  1434. "bootstrap.php"
  1435. ]
  1436. },
  1437. "notification-url": "https://packagist.org/downloads/",
  1438. "license": [
  1439. "MIT"
  1440. ],
  1441. "description": "PHPStan - PHP Static Analysis Tool",
  1442. "keywords": [
  1443. "dev",
  1444. "static analysis"
  1445. ],
  1446. "support": {
  1447. "docs": "https://phpstan.org/user-guide/getting-started",
  1448. "forum": "https://github.com/phpstan/phpstan/discussions",
  1449. "issues": "https://github.com/phpstan/phpstan/issues",
  1450. "security": "https://github.com/phpstan/phpstan/security/policy",
  1451. "source": "https://github.com/phpstan/phpstan-src"
  1452. },
  1453. "funding": [
  1454. {
  1455. "url": "https://github.com/ondrejmirtes",
  1456. "type": "github"
  1457. },
  1458. {
  1459. "url": "https://github.com/phpstan",
  1460. "type": "github"
  1461. }
  1462. ],
  1463. "time": "2024-04-16T07:22:02+00:00"
  1464. },
  1465. {
  1466. "name": "phpstan/phpstan-phpunit",
  1467. "version": "1.3.16",
  1468. "source": {
  1469. "type": "git",
  1470. "url": "https://github.com/phpstan/phpstan-phpunit.git",
  1471. "reference": "d5242a59d035e46774f2e634b374bc39ff62cb95"
  1472. },
  1473. "dist": {
  1474. "type": "zip",
  1475. "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/d5242a59d035e46774f2e634b374bc39ff62cb95",
  1476. "reference": "d5242a59d035e46774f2e634b374bc39ff62cb95",
  1477. "shasum": ""
  1478. },
  1479. "require": {
  1480. "php": "^7.2 || ^8.0",
  1481. "phpstan/phpstan": "^1.10"
  1482. },
  1483. "conflict": {
  1484. "phpunit/phpunit": "<7.0"
  1485. },
  1486. "require-dev": {
  1487. "nikic/php-parser": "^4.13.0",
  1488. "php-parallel-lint/php-parallel-lint": "^1.2",
  1489. "phpstan/phpstan-strict-rules": "^1.5.1",
  1490. "phpunit/phpunit": "^9.5"
  1491. },
  1492. "type": "phpstan-extension",
  1493. "extra": {
  1494. "phpstan": {
  1495. "includes": [
  1496. "extension.neon",
  1497. "rules.neon"
  1498. ]
  1499. }
  1500. },
  1501. "autoload": {
  1502. "psr-4": {
  1503. "PHPStan\\": "src/"
  1504. }
  1505. },
  1506. "notification-url": "https://packagist.org/downloads/",
  1507. "license": [
  1508. "MIT"
  1509. ],
  1510. "description": "PHPUnit extensions and rules for PHPStan",
  1511. "support": {
  1512. "issues": "https://github.com/phpstan/phpstan-phpunit/issues",
  1513. "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.3.16"
  1514. },
  1515. "time": "2024-02-23T09:51:20+00:00"
  1516. },
  1517. {
  1518. "name": "phpstan/phpstan-strict-rules",
  1519. "version": "1.5.5",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/phpstan/phpstan-strict-rules.git",
  1523. "reference": "2e193a07651a6f4be3baa44ddb21d822681f5918"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/2e193a07651a6f4be3baa44ddb21d822681f5918",
  1528. "reference": "2e193a07651a6f4be3baa44ddb21d822681f5918",
  1529. "shasum": ""
  1530. },
  1531. "require": {
  1532. "php": "^7.2 || ^8.0",
  1533. "phpstan/phpstan": "^1.10.60"
  1534. },
  1535. "require-dev": {
  1536. "nikic/php-parser": "^4.13.0",
  1537. "php-parallel-lint/php-parallel-lint": "^1.2",
  1538. "phpstan/phpstan-deprecation-rules": "^1.1",
  1539. "phpstan/phpstan-phpunit": "^1.0",
  1540. "phpunit/phpunit": "^9.5"
  1541. },
  1542. "type": "phpstan-extension",
  1543. "extra": {
  1544. "phpstan": {
  1545. "includes": [
  1546. "rules.neon"
  1547. ]
  1548. }
  1549. },
  1550. "autoload": {
  1551. "psr-4": {
  1552. "PHPStan\\": "src/"
  1553. }
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "MIT"
  1558. ],
  1559. "description": "Extra strict and opinionated rules for PHPStan",
  1560. "support": {
  1561. "issues": "https://github.com/phpstan/phpstan-strict-rules/issues",
  1562. "source": "https://github.com/phpstan/phpstan-strict-rules/tree/1.5.5"
  1563. },
  1564. "time": "2024-04-19T15:12:26+00:00"
  1565. },
  1566. {
  1567. "name": "psr/container",
  1568. "version": "2.0.2",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/php-fig/container.git",
  1572. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1577. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "php": ">=7.4.0"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-master": "2.0.x-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "Psr\\Container\\": "src/"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "PHP-FIG",
  1601. "homepage": "https://www.php-fig.org/"
  1602. }
  1603. ],
  1604. "description": "Common Container Interface (PHP FIG PSR-11)",
  1605. "homepage": "https://github.com/php-fig/container",
  1606. "keywords": [
  1607. "PSR-11",
  1608. "container",
  1609. "container-interface",
  1610. "container-interop",
  1611. "psr"
  1612. ],
  1613. "support": {
  1614. "issues": "https://github.com/php-fig/container/issues",
  1615. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1616. },
  1617. "time": "2021-11-05T16:47:00+00:00"
  1618. },
  1619. {
  1620. "name": "psr/log",
  1621. "version": "3.0.0",
  1622. "source": {
  1623. "type": "git",
  1624. "url": "https://github.com/php-fig/log.git",
  1625. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  1626. },
  1627. "dist": {
  1628. "type": "zip",
  1629. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  1630. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  1631. "shasum": ""
  1632. },
  1633. "require": {
  1634. "php": ">=8.0.0"
  1635. },
  1636. "type": "library",
  1637. "extra": {
  1638. "branch-alias": {
  1639. "dev-master": "3.x-dev"
  1640. }
  1641. },
  1642. "autoload": {
  1643. "psr-4": {
  1644. "Psr\\Log\\": "src"
  1645. }
  1646. },
  1647. "notification-url": "https://packagist.org/downloads/",
  1648. "license": [
  1649. "MIT"
  1650. ],
  1651. "authors": [
  1652. {
  1653. "name": "PHP-FIG",
  1654. "homepage": "https://www.php-fig.org/"
  1655. }
  1656. ],
  1657. "description": "Common interface for logging libraries",
  1658. "homepage": "https://github.com/php-fig/log",
  1659. "keywords": [
  1660. "log",
  1661. "psr",
  1662. "psr-3"
  1663. ],
  1664. "support": {
  1665. "source": "https://github.com/php-fig/log/tree/3.0.0"
  1666. },
  1667. "time": "2021-07-14T16:46:02+00:00"
  1668. },
  1669. {
  1670. "name": "symfony/config",
  1671. "version": "v7.0.6",
  1672. "source": {
  1673. "type": "git",
  1674. "url": "https://github.com/symfony/config.git",
  1675. "reference": "7fc7e18a73ec8125fd95928c0340470d64760deb"
  1676. },
  1677. "dist": {
  1678. "type": "zip",
  1679. "url": "https://api.github.com/repos/symfony/config/zipball/7fc7e18a73ec8125fd95928c0340470d64760deb",
  1680. "reference": "7fc7e18a73ec8125fd95928c0340470d64760deb",
  1681. "shasum": ""
  1682. },
  1683. "require": {
  1684. "php": ">=8.2",
  1685. "symfony/deprecation-contracts": "^2.5|^3",
  1686. "symfony/filesystem": "^6.4|^7.0",
  1687. "symfony/polyfill-ctype": "~1.8"
  1688. },
  1689. "conflict": {
  1690. "symfony/finder": "<6.4",
  1691. "symfony/service-contracts": "<2.5"
  1692. },
  1693. "require-dev": {
  1694. "symfony/event-dispatcher": "^6.4|^7.0",
  1695. "symfony/finder": "^6.4|^7.0",
  1696. "symfony/messenger": "^6.4|^7.0",
  1697. "symfony/service-contracts": "^2.5|^3",
  1698. "symfony/yaml": "^6.4|^7.0"
  1699. },
  1700. "type": "library",
  1701. "autoload": {
  1702. "psr-4": {
  1703. "Symfony\\Component\\Config\\": ""
  1704. },
  1705. "exclude-from-classmap": [
  1706. "/Tests/"
  1707. ]
  1708. },
  1709. "notification-url": "https://packagist.org/downloads/",
  1710. "license": [
  1711. "MIT"
  1712. ],
  1713. "authors": [
  1714. {
  1715. "name": "Fabien Potencier",
  1716. "email": "fabien@symfony.com"
  1717. },
  1718. {
  1719. "name": "Symfony Community",
  1720. "homepage": "https://symfony.com/contributors"
  1721. }
  1722. ],
  1723. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  1724. "homepage": "https://symfony.com",
  1725. "support": {
  1726. "source": "https://github.com/symfony/config/tree/v7.0.6"
  1727. },
  1728. "funding": [
  1729. {
  1730. "url": "https://symfony.com/sponsor",
  1731. "type": "custom"
  1732. },
  1733. {
  1734. "url": "https://github.com/fabpot",
  1735. "type": "github"
  1736. },
  1737. {
  1738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1739. "type": "tidelift"
  1740. }
  1741. ],
  1742. "time": "2024-03-27T19:55:25+00:00"
  1743. },
  1744. {
  1745. "name": "symfony/console",
  1746. "version": "v7.0.6",
  1747. "source": {
  1748. "type": "git",
  1749. "url": "https://github.com/symfony/console.git",
  1750. "reference": "fde915cd8e7eb99b3d531d3d5c09531429c3f9e5"
  1751. },
  1752. "dist": {
  1753. "type": "zip",
  1754. "url": "https://api.github.com/repos/symfony/console/zipball/fde915cd8e7eb99b3d531d3d5c09531429c3f9e5",
  1755. "reference": "fde915cd8e7eb99b3d531d3d5c09531429c3f9e5",
  1756. "shasum": ""
  1757. },
  1758. "require": {
  1759. "php": ">=8.2",
  1760. "symfony/polyfill-mbstring": "~1.0",
  1761. "symfony/service-contracts": "^2.5|^3",
  1762. "symfony/string": "^6.4|^7.0"
  1763. },
  1764. "conflict": {
  1765. "symfony/dependency-injection": "<6.4",
  1766. "symfony/dotenv": "<6.4",
  1767. "symfony/event-dispatcher": "<6.4",
  1768. "symfony/lock": "<6.4",
  1769. "symfony/process": "<6.4"
  1770. },
  1771. "provide": {
  1772. "psr/log-implementation": "1.0|2.0|3.0"
  1773. },
  1774. "require-dev": {
  1775. "psr/log": "^1|^2|^3",
  1776. "symfony/config": "^6.4|^7.0",
  1777. "symfony/dependency-injection": "^6.4|^7.0",
  1778. "symfony/event-dispatcher": "^6.4|^7.0",
  1779. "symfony/http-foundation": "^6.4|^7.0",
  1780. "symfony/http-kernel": "^6.4|^7.0",
  1781. "symfony/lock": "^6.4|^7.0",
  1782. "symfony/messenger": "^6.4|^7.0",
  1783. "symfony/process": "^6.4|^7.0",
  1784. "symfony/stopwatch": "^6.4|^7.0",
  1785. "symfony/var-dumper": "^6.4|^7.0"
  1786. },
  1787. "type": "library",
  1788. "autoload": {
  1789. "psr-4": {
  1790. "Symfony\\Component\\Console\\": ""
  1791. },
  1792. "exclude-from-classmap": [
  1793. "/Tests/"
  1794. ]
  1795. },
  1796. "notification-url": "https://packagist.org/downloads/",
  1797. "license": [
  1798. "MIT"
  1799. ],
  1800. "authors": [
  1801. {
  1802. "name": "Fabien Potencier",
  1803. "email": "fabien@symfony.com"
  1804. },
  1805. {
  1806. "name": "Symfony Community",
  1807. "homepage": "https://symfony.com/contributors"
  1808. }
  1809. ],
  1810. "description": "Eases the creation of beautiful and testable command line interfaces",
  1811. "homepage": "https://symfony.com",
  1812. "keywords": [
  1813. "cli",
  1814. "command-line",
  1815. "console",
  1816. "terminal"
  1817. ],
  1818. "support": {
  1819. "source": "https://github.com/symfony/console/tree/v7.0.6"
  1820. },
  1821. "funding": [
  1822. {
  1823. "url": "https://symfony.com/sponsor",
  1824. "type": "custom"
  1825. },
  1826. {
  1827. "url": "https://github.com/fabpot",
  1828. "type": "github"
  1829. },
  1830. {
  1831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1832. "type": "tidelift"
  1833. }
  1834. ],
  1835. "time": "2024-04-01T11:04:53+00:00"
  1836. },
  1837. {
  1838. "name": "symfony/dependency-injection",
  1839. "version": "v7.0.6",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://github.com/symfony/dependency-injection.git",
  1843. "reference": "ff57b5c7d518c39eeb4e69dc0d1ec70723a117b9"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/ff57b5c7d518c39eeb4e69dc0d1ec70723a117b9",
  1848. "reference": "ff57b5c7d518c39eeb4e69dc0d1ec70723a117b9",
  1849. "shasum": ""
  1850. },
  1851. "require": {
  1852. "php": ">=8.2",
  1853. "psr/container": "^1.1|^2.0",
  1854. "symfony/deprecation-contracts": "^2.5|^3",
  1855. "symfony/service-contracts": "^3.3",
  1856. "symfony/var-exporter": "^6.4|^7.0"
  1857. },
  1858. "conflict": {
  1859. "ext-psr": "<1.1|>=2",
  1860. "symfony/config": "<6.4",
  1861. "symfony/finder": "<6.4",
  1862. "symfony/yaml": "<6.4"
  1863. },
  1864. "provide": {
  1865. "psr/container-implementation": "1.1|2.0",
  1866. "symfony/service-implementation": "1.1|2.0|3.0"
  1867. },
  1868. "require-dev": {
  1869. "symfony/config": "^6.4|^7.0",
  1870. "symfony/expression-language": "^6.4|^7.0",
  1871. "symfony/yaml": "^6.4|^7.0"
  1872. },
  1873. "type": "library",
  1874. "autoload": {
  1875. "psr-4": {
  1876. "Symfony\\Component\\DependencyInjection\\": ""
  1877. },
  1878. "exclude-from-classmap": [
  1879. "/Tests/"
  1880. ]
  1881. },
  1882. "notification-url": "https://packagist.org/downloads/",
  1883. "license": [
  1884. "MIT"
  1885. ],
  1886. "authors": [
  1887. {
  1888. "name": "Fabien Potencier",
  1889. "email": "fabien@symfony.com"
  1890. },
  1891. {
  1892. "name": "Symfony Community",
  1893. "homepage": "https://symfony.com/contributors"
  1894. }
  1895. ],
  1896. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  1897. "homepage": "https://symfony.com",
  1898. "support": {
  1899. "source": "https://github.com/symfony/dependency-injection/tree/v7.0.6"
  1900. },
  1901. "funding": [
  1902. {
  1903. "url": "https://symfony.com/sponsor",
  1904. "type": "custom"
  1905. },
  1906. {
  1907. "url": "https://github.com/fabpot",
  1908. "type": "github"
  1909. },
  1910. {
  1911. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1912. "type": "tidelift"
  1913. }
  1914. ],
  1915. "time": "2024-03-28T09:20:36+00:00"
  1916. },
  1917. {
  1918. "name": "symfony/deprecation-contracts",
  1919. "version": "v3.4.0",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/symfony/deprecation-contracts.git",
  1923. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  1928. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  1929. "shasum": ""
  1930. },
  1931. "require": {
  1932. "php": ">=8.1"
  1933. },
  1934. "type": "library",
  1935. "extra": {
  1936. "branch-alias": {
  1937. "dev-main": "3.4-dev"
  1938. },
  1939. "thanks": {
  1940. "name": "symfony/contracts",
  1941. "url": "https://github.com/symfony/contracts"
  1942. }
  1943. },
  1944. "autoload": {
  1945. "files": [
  1946. "function.php"
  1947. ]
  1948. },
  1949. "notification-url": "https://packagist.org/downloads/",
  1950. "license": [
  1951. "MIT"
  1952. ],
  1953. "authors": [
  1954. {
  1955. "name": "Nicolas Grekas",
  1956. "email": "p@tchwork.com"
  1957. },
  1958. {
  1959. "name": "Symfony Community",
  1960. "homepage": "https://symfony.com/contributors"
  1961. }
  1962. ],
  1963. "description": "A generic function and convention to trigger deprecation notices",
  1964. "homepage": "https://symfony.com",
  1965. "support": {
  1966. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  1967. },
  1968. "funding": [
  1969. {
  1970. "url": "https://symfony.com/sponsor",
  1971. "type": "custom"
  1972. },
  1973. {
  1974. "url": "https://github.com/fabpot",
  1975. "type": "github"
  1976. },
  1977. {
  1978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1979. "type": "tidelift"
  1980. }
  1981. ],
  1982. "time": "2023-05-23T14:45:45+00:00"
  1983. },
  1984. {
  1985. "name": "symfony/filesystem",
  1986. "version": "v7.0.6",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/symfony/filesystem.git",
  1990. "reference": "408105dff4c104454100730bdfd1a9cdd993f04d"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/symfony/filesystem/zipball/408105dff4c104454100730bdfd1a9cdd993f04d",
  1995. "reference": "408105dff4c104454100730bdfd1a9cdd993f04d",
  1996. "shasum": ""
  1997. },
  1998. "require": {
  1999. "php": ">=8.2",
  2000. "symfony/polyfill-ctype": "~1.8",
  2001. "symfony/polyfill-mbstring": "~1.8"
  2002. },
  2003. "type": "library",
  2004. "autoload": {
  2005. "psr-4": {
  2006. "Symfony\\Component\\Filesystem\\": ""
  2007. },
  2008. "exclude-from-classmap": [
  2009. "/Tests/"
  2010. ]
  2011. },
  2012. "notification-url": "https://packagist.org/downloads/",
  2013. "license": [
  2014. "MIT"
  2015. ],
  2016. "authors": [
  2017. {
  2018. "name": "Fabien Potencier",
  2019. "email": "fabien@symfony.com"
  2020. },
  2021. {
  2022. "name": "Symfony Community",
  2023. "homepage": "https://symfony.com/contributors"
  2024. }
  2025. ],
  2026. "description": "Provides basic utilities for the filesystem",
  2027. "homepage": "https://symfony.com",
  2028. "support": {
  2029. "source": "https://github.com/symfony/filesystem/tree/v7.0.6"
  2030. },
  2031. "funding": [
  2032. {
  2033. "url": "https://symfony.com/sponsor",
  2034. "type": "custom"
  2035. },
  2036. {
  2037. "url": "https://github.com/fabpot",
  2038. "type": "github"
  2039. },
  2040. {
  2041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2042. "type": "tidelift"
  2043. }
  2044. ],
  2045. "time": "2024-03-21T19:37:36+00:00"
  2046. },
  2047. {
  2048. "name": "symfony/finder",
  2049. "version": "v7.0.0",
  2050. "source": {
  2051. "type": "git",
  2052. "url": "https://github.com/symfony/finder.git",
  2053. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56"
  2054. },
  2055. "dist": {
  2056. "type": "zip",
  2057. "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  2058. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  2059. "shasum": ""
  2060. },
  2061. "require": {
  2062. "php": ">=8.2"
  2063. },
  2064. "require-dev": {
  2065. "symfony/filesystem": "^6.4|^7.0"
  2066. },
  2067. "type": "library",
  2068. "autoload": {
  2069. "psr-4": {
  2070. "Symfony\\Component\\Finder\\": ""
  2071. },
  2072. "exclude-from-classmap": [
  2073. "/Tests/"
  2074. ]
  2075. },
  2076. "notification-url": "https://packagist.org/downloads/",
  2077. "license": [
  2078. "MIT"
  2079. ],
  2080. "authors": [
  2081. {
  2082. "name": "Fabien Potencier",
  2083. "email": "fabien@symfony.com"
  2084. },
  2085. {
  2086. "name": "Symfony Community",
  2087. "homepage": "https://symfony.com/contributors"
  2088. }
  2089. ],
  2090. "description": "Finds files and directories via an intuitive fluent interface",
  2091. "homepage": "https://symfony.com",
  2092. "support": {
  2093. "source": "https://github.com/symfony/finder/tree/v7.0.0"
  2094. },
  2095. "funding": [
  2096. {
  2097. "url": "https://symfony.com/sponsor",
  2098. "type": "custom"
  2099. },
  2100. {
  2101. "url": "https://github.com/fabpot",
  2102. "type": "github"
  2103. },
  2104. {
  2105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2106. "type": "tidelift"
  2107. }
  2108. ],
  2109. "time": "2023-10-31T17:59:56+00:00"
  2110. },
  2111. {
  2112. "name": "symfony/polyfill-ctype",
  2113. "version": "v1.29.0",
  2114. "source": {
  2115. "type": "git",
  2116. "url": "https://github.com/symfony/polyfill-ctype.git",
  2117. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  2118. },
  2119. "dist": {
  2120. "type": "zip",
  2121. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  2122. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  2123. "shasum": ""
  2124. },
  2125. "require": {
  2126. "php": ">=7.1"
  2127. },
  2128. "provide": {
  2129. "ext-ctype": "*"
  2130. },
  2131. "suggest": {
  2132. "ext-ctype": "For best performance"
  2133. },
  2134. "type": "library",
  2135. "extra": {
  2136. "thanks": {
  2137. "name": "symfony/polyfill",
  2138. "url": "https://github.com/symfony/polyfill"
  2139. }
  2140. },
  2141. "autoload": {
  2142. "files": [
  2143. "bootstrap.php"
  2144. ],
  2145. "psr-4": {
  2146. "Symfony\\Polyfill\\Ctype\\": ""
  2147. }
  2148. },
  2149. "notification-url": "https://packagist.org/downloads/",
  2150. "license": [
  2151. "MIT"
  2152. ],
  2153. "authors": [
  2154. {
  2155. "name": "Gert de Pagter",
  2156. "email": "BackEndTea@gmail.com"
  2157. },
  2158. {
  2159. "name": "Symfony Community",
  2160. "homepage": "https://symfony.com/contributors"
  2161. }
  2162. ],
  2163. "description": "Symfony polyfill for ctype functions",
  2164. "homepage": "https://symfony.com",
  2165. "keywords": [
  2166. "compatibility",
  2167. "ctype",
  2168. "polyfill",
  2169. "portable"
  2170. ],
  2171. "support": {
  2172. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  2173. },
  2174. "funding": [
  2175. {
  2176. "url": "https://symfony.com/sponsor",
  2177. "type": "custom"
  2178. },
  2179. {
  2180. "url": "https://github.com/fabpot",
  2181. "type": "github"
  2182. },
  2183. {
  2184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2185. "type": "tidelift"
  2186. }
  2187. ],
  2188. "time": "2024-01-29T20:11:03+00:00"
  2189. },
  2190. {
  2191. "name": "symfony/polyfill-intl-grapheme",
  2192. "version": "v1.29.0",
  2193. "source": {
  2194. "type": "git",
  2195. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  2196. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  2197. },
  2198. "dist": {
  2199. "type": "zip",
  2200. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  2201. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  2202. "shasum": ""
  2203. },
  2204. "require": {
  2205. "php": ">=7.1"
  2206. },
  2207. "suggest": {
  2208. "ext-intl": "For best performance"
  2209. },
  2210. "type": "library",
  2211. "extra": {
  2212. "thanks": {
  2213. "name": "symfony/polyfill",
  2214. "url": "https://github.com/symfony/polyfill"
  2215. }
  2216. },
  2217. "autoload": {
  2218. "files": [
  2219. "bootstrap.php"
  2220. ],
  2221. "psr-4": {
  2222. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  2223. }
  2224. },
  2225. "notification-url": "https://packagist.org/downloads/",
  2226. "license": [
  2227. "MIT"
  2228. ],
  2229. "authors": [
  2230. {
  2231. "name": "Nicolas Grekas",
  2232. "email": "p@tchwork.com"
  2233. },
  2234. {
  2235. "name": "Symfony Community",
  2236. "homepage": "https://symfony.com/contributors"
  2237. }
  2238. ],
  2239. "description": "Symfony polyfill for intl's grapheme_* functions",
  2240. "homepage": "https://symfony.com",
  2241. "keywords": [
  2242. "compatibility",
  2243. "grapheme",
  2244. "intl",
  2245. "polyfill",
  2246. "portable",
  2247. "shim"
  2248. ],
  2249. "support": {
  2250. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  2251. },
  2252. "funding": [
  2253. {
  2254. "url": "https://symfony.com/sponsor",
  2255. "type": "custom"
  2256. },
  2257. {
  2258. "url": "https://github.com/fabpot",
  2259. "type": "github"
  2260. },
  2261. {
  2262. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2263. "type": "tidelift"
  2264. }
  2265. ],
  2266. "time": "2024-01-29T20:11:03+00:00"
  2267. },
  2268. {
  2269. "name": "symfony/polyfill-intl-normalizer",
  2270. "version": "v1.29.0",
  2271. "source": {
  2272. "type": "git",
  2273. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  2274. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  2275. },
  2276. "dist": {
  2277. "type": "zip",
  2278. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  2279. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  2280. "shasum": ""
  2281. },
  2282. "require": {
  2283. "php": ">=7.1"
  2284. },
  2285. "suggest": {
  2286. "ext-intl": "For best performance"
  2287. },
  2288. "type": "library",
  2289. "extra": {
  2290. "thanks": {
  2291. "name": "symfony/polyfill",
  2292. "url": "https://github.com/symfony/polyfill"
  2293. }
  2294. },
  2295. "autoload": {
  2296. "files": [
  2297. "bootstrap.php"
  2298. ],
  2299. "psr-4": {
  2300. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2301. },
  2302. "classmap": [
  2303. "Resources/stubs"
  2304. ]
  2305. },
  2306. "notification-url": "https://packagist.org/downloads/",
  2307. "license": [
  2308. "MIT"
  2309. ],
  2310. "authors": [
  2311. {
  2312. "name": "Nicolas Grekas",
  2313. "email": "p@tchwork.com"
  2314. },
  2315. {
  2316. "name": "Symfony Community",
  2317. "homepage": "https://symfony.com/contributors"
  2318. }
  2319. ],
  2320. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2321. "homepage": "https://symfony.com",
  2322. "keywords": [
  2323. "compatibility",
  2324. "intl",
  2325. "normalizer",
  2326. "polyfill",
  2327. "portable",
  2328. "shim"
  2329. ],
  2330. "support": {
  2331. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  2332. },
  2333. "funding": [
  2334. {
  2335. "url": "https://symfony.com/sponsor",
  2336. "type": "custom"
  2337. },
  2338. {
  2339. "url": "https://github.com/fabpot",
  2340. "type": "github"
  2341. },
  2342. {
  2343. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2344. "type": "tidelift"
  2345. }
  2346. ],
  2347. "time": "2024-01-29T20:11:03+00:00"
  2348. },
  2349. {
  2350. "name": "symfony/polyfill-mbstring",
  2351. "version": "v1.29.0",
  2352. "source": {
  2353. "type": "git",
  2354. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2355. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  2356. },
  2357. "dist": {
  2358. "type": "zip",
  2359. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  2360. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  2361. "shasum": ""
  2362. },
  2363. "require": {
  2364. "php": ">=7.1"
  2365. },
  2366. "provide": {
  2367. "ext-mbstring": "*"
  2368. },
  2369. "suggest": {
  2370. "ext-mbstring": "For best performance"
  2371. },
  2372. "type": "library",
  2373. "extra": {
  2374. "thanks": {
  2375. "name": "symfony/polyfill",
  2376. "url": "https://github.com/symfony/polyfill"
  2377. }
  2378. },
  2379. "autoload": {
  2380. "files": [
  2381. "bootstrap.php"
  2382. ],
  2383. "psr-4": {
  2384. "Symfony\\Polyfill\\Mbstring\\": ""
  2385. }
  2386. },
  2387. "notification-url": "https://packagist.org/downloads/",
  2388. "license": [
  2389. "MIT"
  2390. ],
  2391. "authors": [
  2392. {
  2393. "name": "Nicolas Grekas",
  2394. "email": "p@tchwork.com"
  2395. },
  2396. {
  2397. "name": "Symfony Community",
  2398. "homepage": "https://symfony.com/contributors"
  2399. }
  2400. ],
  2401. "description": "Symfony polyfill for the Mbstring extension",
  2402. "homepage": "https://symfony.com",
  2403. "keywords": [
  2404. "compatibility",
  2405. "mbstring",
  2406. "polyfill",
  2407. "portable",
  2408. "shim"
  2409. ],
  2410. "support": {
  2411. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  2412. },
  2413. "funding": [
  2414. {
  2415. "url": "https://symfony.com/sponsor",
  2416. "type": "custom"
  2417. },
  2418. {
  2419. "url": "https://github.com/fabpot",
  2420. "type": "github"
  2421. },
  2422. {
  2423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2424. "type": "tidelift"
  2425. }
  2426. ],
  2427. "time": "2024-01-29T20:11:03+00:00"
  2428. },
  2429. {
  2430. "name": "symfony/polyfill-php80",
  2431. "version": "v1.29.0",
  2432. "source": {
  2433. "type": "git",
  2434. "url": "https://github.com/symfony/polyfill-php80.git",
  2435. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  2436. },
  2437. "dist": {
  2438. "type": "zip",
  2439. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  2440. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  2441. "shasum": ""
  2442. },
  2443. "require": {
  2444. "php": ">=7.1"
  2445. },
  2446. "type": "library",
  2447. "extra": {
  2448. "thanks": {
  2449. "name": "symfony/polyfill",
  2450. "url": "https://github.com/symfony/polyfill"
  2451. }
  2452. },
  2453. "autoload": {
  2454. "files": [
  2455. "bootstrap.php"
  2456. ],
  2457. "psr-4": {
  2458. "Symfony\\Polyfill\\Php80\\": ""
  2459. },
  2460. "classmap": [
  2461. "Resources/stubs"
  2462. ]
  2463. },
  2464. "notification-url": "https://packagist.org/downloads/",
  2465. "license": [
  2466. "MIT"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "Ion Bazan",
  2471. "email": "ion.bazan@gmail.com"
  2472. },
  2473. {
  2474. "name": "Nicolas Grekas",
  2475. "email": "p@tchwork.com"
  2476. },
  2477. {
  2478. "name": "Symfony Community",
  2479. "homepage": "https://symfony.com/contributors"
  2480. }
  2481. ],
  2482. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2483. "homepage": "https://symfony.com",
  2484. "keywords": [
  2485. "compatibility",
  2486. "polyfill",
  2487. "portable",
  2488. "shim"
  2489. ],
  2490. "support": {
  2491. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  2492. },
  2493. "funding": [
  2494. {
  2495. "url": "https://symfony.com/sponsor",
  2496. "type": "custom"
  2497. },
  2498. {
  2499. "url": "https://github.com/fabpot",
  2500. "type": "github"
  2501. },
  2502. {
  2503. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2504. "type": "tidelift"
  2505. }
  2506. ],
  2507. "time": "2024-01-29T20:11:03+00:00"
  2508. },
  2509. {
  2510. "name": "symfony/polyfill-php83",
  2511. "version": "v1.29.0",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/symfony/polyfill-php83.git",
  2515. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  2520. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  2521. "shasum": ""
  2522. },
  2523. "require": {
  2524. "php": ">=7.1",
  2525. "symfony/polyfill-php80": "^1.14"
  2526. },
  2527. "type": "library",
  2528. "extra": {
  2529. "thanks": {
  2530. "name": "symfony/polyfill",
  2531. "url": "https://github.com/symfony/polyfill"
  2532. }
  2533. },
  2534. "autoload": {
  2535. "files": [
  2536. "bootstrap.php"
  2537. ],
  2538. "psr-4": {
  2539. "Symfony\\Polyfill\\Php83\\": ""
  2540. },
  2541. "classmap": [
  2542. "Resources/stubs"
  2543. ]
  2544. },
  2545. "notification-url": "https://packagist.org/downloads/",
  2546. "license": [
  2547. "MIT"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Nicolas Grekas",
  2552. "email": "p@tchwork.com"
  2553. },
  2554. {
  2555. "name": "Symfony Community",
  2556. "homepage": "https://symfony.com/contributors"
  2557. }
  2558. ],
  2559. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  2560. "homepage": "https://symfony.com",
  2561. "keywords": [
  2562. "compatibility",
  2563. "polyfill",
  2564. "portable",
  2565. "shim"
  2566. ],
  2567. "support": {
  2568. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  2569. },
  2570. "funding": [
  2571. {
  2572. "url": "https://symfony.com/sponsor",
  2573. "type": "custom"
  2574. },
  2575. {
  2576. "url": "https://github.com/fabpot",
  2577. "type": "github"
  2578. },
  2579. {
  2580. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2581. "type": "tidelift"
  2582. }
  2583. ],
  2584. "time": "2024-01-29T20:11:03+00:00"
  2585. },
  2586. {
  2587. "name": "symfony/property-access",
  2588. "version": "v7.0.6",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/symfony/property-access.git",
  2592. "reference": "1c268ba954ccc5e78cf035b391abb67759e24423"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/symfony/property-access/zipball/1c268ba954ccc5e78cf035b391abb67759e24423",
  2597. "reference": "1c268ba954ccc5e78cf035b391abb67759e24423",
  2598. "shasum": ""
  2599. },
  2600. "require": {
  2601. "php": ">=8.2",
  2602. "symfony/property-info": "^6.4|^7.0"
  2603. },
  2604. "require-dev": {
  2605. "symfony/cache": "^6.4|^7.0"
  2606. },
  2607. "type": "library",
  2608. "autoload": {
  2609. "psr-4": {
  2610. "Symfony\\Component\\PropertyAccess\\": ""
  2611. },
  2612. "exclude-from-classmap": [
  2613. "/Tests/"
  2614. ]
  2615. },
  2616. "notification-url": "https://packagist.org/downloads/",
  2617. "license": [
  2618. "MIT"
  2619. ],
  2620. "authors": [
  2621. {
  2622. "name": "Fabien Potencier",
  2623. "email": "fabien@symfony.com"
  2624. },
  2625. {
  2626. "name": "Symfony Community",
  2627. "homepage": "https://symfony.com/contributors"
  2628. }
  2629. ],
  2630. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  2631. "homepage": "https://symfony.com",
  2632. "keywords": [
  2633. "access",
  2634. "array",
  2635. "extraction",
  2636. "index",
  2637. "injection",
  2638. "object",
  2639. "property",
  2640. "property-path",
  2641. "reflection"
  2642. ],
  2643. "support": {
  2644. "source": "https://github.com/symfony/property-access/tree/v7.0.6"
  2645. },
  2646. "funding": [
  2647. {
  2648. "url": "https://symfony.com/sponsor",
  2649. "type": "custom"
  2650. },
  2651. {
  2652. "url": "https://github.com/fabpot",
  2653. "type": "github"
  2654. },
  2655. {
  2656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2657. "type": "tidelift"
  2658. }
  2659. ],
  2660. "time": "2024-03-19T11:57:22+00:00"
  2661. },
  2662. {
  2663. "name": "symfony/property-info",
  2664. "version": "v7.0.6",
  2665. "source": {
  2666. "type": "git",
  2667. "url": "https://github.com/symfony/property-info.git",
  2668. "reference": "b8844ddce7d53f78b57ec9be59da80fceddf3167"
  2669. },
  2670. "dist": {
  2671. "type": "zip",
  2672. "url": "https://api.github.com/repos/symfony/property-info/zipball/b8844ddce7d53f78b57ec9be59da80fceddf3167",
  2673. "reference": "b8844ddce7d53f78b57ec9be59da80fceddf3167",
  2674. "shasum": ""
  2675. },
  2676. "require": {
  2677. "php": ">=8.2",
  2678. "symfony/string": "^6.4|^7.0"
  2679. },
  2680. "conflict": {
  2681. "phpdocumentor/reflection-docblock": "<5.2",
  2682. "phpdocumentor/type-resolver": "<1.5.1",
  2683. "symfony/dependency-injection": "<6.4",
  2684. "symfony/serializer": "<6.4"
  2685. },
  2686. "require-dev": {
  2687. "phpdocumentor/reflection-docblock": "^5.2",
  2688. "phpstan/phpdoc-parser": "^1.0",
  2689. "symfony/cache": "^6.4|^7.0",
  2690. "symfony/dependency-injection": "^6.4|^7.0",
  2691. "symfony/serializer": "^6.4|^7.0"
  2692. },
  2693. "type": "library",
  2694. "autoload": {
  2695. "psr-4": {
  2696. "Symfony\\Component\\PropertyInfo\\": ""
  2697. },
  2698. "exclude-from-classmap": [
  2699. "/Tests/"
  2700. ]
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "Kévin Dunglas",
  2709. "email": "dunglas@gmail.com"
  2710. },
  2711. {
  2712. "name": "Symfony Community",
  2713. "homepage": "https://symfony.com/contributors"
  2714. }
  2715. ],
  2716. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  2717. "homepage": "https://symfony.com",
  2718. "keywords": [
  2719. "doctrine",
  2720. "phpdoc",
  2721. "property",
  2722. "symfony",
  2723. "type",
  2724. "validator"
  2725. ],
  2726. "support": {
  2727. "source": "https://github.com/symfony/property-info/tree/v7.0.6"
  2728. },
  2729. "funding": [
  2730. {
  2731. "url": "https://symfony.com/sponsor",
  2732. "type": "custom"
  2733. },
  2734. {
  2735. "url": "https://github.com/fabpot",
  2736. "type": "github"
  2737. },
  2738. {
  2739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2740. "type": "tidelift"
  2741. }
  2742. ],
  2743. "time": "2024-03-28T09:20:36+00:00"
  2744. },
  2745. {
  2746. "name": "symfony/serializer",
  2747. "version": "v7.0.6",
  2748. "source": {
  2749. "type": "git",
  2750. "url": "https://github.com/symfony/serializer.git",
  2751. "reference": "dbdc0c04c28ac53de1fa35f92fca26e9b1345d98"
  2752. },
  2753. "dist": {
  2754. "type": "zip",
  2755. "url": "https://api.github.com/repos/symfony/serializer/zipball/dbdc0c04c28ac53de1fa35f92fca26e9b1345d98",
  2756. "reference": "dbdc0c04c28ac53de1fa35f92fca26e9b1345d98",
  2757. "shasum": ""
  2758. },
  2759. "require": {
  2760. "php": ">=8.2",
  2761. "symfony/polyfill-ctype": "~1.8"
  2762. },
  2763. "conflict": {
  2764. "phpdocumentor/reflection-docblock": "<3.2.2",
  2765. "phpdocumentor/type-resolver": "<1.4.0",
  2766. "symfony/dependency-injection": "<6.4",
  2767. "symfony/property-access": "<6.4",
  2768. "symfony/property-info": "<6.4",
  2769. "symfony/uid": "<6.4",
  2770. "symfony/validator": "<6.4",
  2771. "symfony/yaml": "<6.4"
  2772. },
  2773. "require-dev": {
  2774. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  2775. "seld/jsonlint": "^1.10",
  2776. "symfony/cache": "^6.4|^7.0",
  2777. "symfony/config": "^6.4|^7.0",
  2778. "symfony/console": "^6.4|^7.0",
  2779. "symfony/dependency-injection": "^6.4|^7.0",
  2780. "symfony/error-handler": "^6.4|^7.0",
  2781. "symfony/filesystem": "^6.4|^7.0",
  2782. "symfony/form": "^6.4|^7.0",
  2783. "symfony/http-foundation": "^6.4|^7.0",
  2784. "symfony/http-kernel": "^6.4|^7.0",
  2785. "symfony/messenger": "^6.4|^7.0",
  2786. "symfony/mime": "^6.4|^7.0",
  2787. "symfony/property-access": "^6.4|^7.0",
  2788. "symfony/property-info": "^6.4|^7.0",
  2789. "symfony/translation-contracts": "^2.5|^3",
  2790. "symfony/uid": "^6.4|^7.0",
  2791. "symfony/validator": "^6.4|^7.0",
  2792. "symfony/var-dumper": "^6.4|^7.0",
  2793. "symfony/var-exporter": "^6.4|^7.0",
  2794. "symfony/yaml": "^6.4|^7.0"
  2795. },
  2796. "type": "library",
  2797. "autoload": {
  2798. "psr-4": {
  2799. "Symfony\\Component\\Serializer\\": ""
  2800. },
  2801. "exclude-from-classmap": [
  2802. "/Tests/"
  2803. ]
  2804. },
  2805. "notification-url": "https://packagist.org/downloads/",
  2806. "license": [
  2807. "MIT"
  2808. ],
  2809. "authors": [
  2810. {
  2811. "name": "Fabien Potencier",
  2812. "email": "fabien@symfony.com"
  2813. },
  2814. {
  2815. "name": "Symfony Community",
  2816. "homepage": "https://symfony.com/contributors"
  2817. }
  2818. ],
  2819. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  2820. "homepage": "https://symfony.com",
  2821. "support": {
  2822. "source": "https://github.com/symfony/serializer/tree/v7.0.6"
  2823. },
  2824. "funding": [
  2825. {
  2826. "url": "https://symfony.com/sponsor",
  2827. "type": "custom"
  2828. },
  2829. {
  2830. "url": "https://github.com/fabpot",
  2831. "type": "github"
  2832. },
  2833. {
  2834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2835. "type": "tidelift"
  2836. }
  2837. ],
  2838. "time": "2024-03-28T09:20:36+00:00"
  2839. },
  2840. {
  2841. "name": "symfony/service-contracts",
  2842. "version": "v3.4.2",
  2843. "source": {
  2844. "type": "git",
  2845. "url": "https://github.com/symfony/service-contracts.git",
  2846. "reference": "11bbf19a0fb7b36345861e85c5768844c552906e"
  2847. },
  2848. "dist": {
  2849. "type": "zip",
  2850. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/11bbf19a0fb7b36345861e85c5768844c552906e",
  2851. "reference": "11bbf19a0fb7b36345861e85c5768844c552906e",
  2852. "shasum": ""
  2853. },
  2854. "require": {
  2855. "php": ">=8.1",
  2856. "psr/container": "^1.1|^2.0"
  2857. },
  2858. "conflict": {
  2859. "ext-psr": "<1.1|>=2"
  2860. },
  2861. "type": "library",
  2862. "extra": {
  2863. "branch-alias": {
  2864. "dev-main": "3.4-dev"
  2865. },
  2866. "thanks": {
  2867. "name": "symfony/contracts",
  2868. "url": "https://github.com/symfony/contracts"
  2869. }
  2870. },
  2871. "autoload": {
  2872. "psr-4": {
  2873. "Symfony\\Contracts\\Service\\": ""
  2874. },
  2875. "exclude-from-classmap": [
  2876. "/Test/"
  2877. ]
  2878. },
  2879. "notification-url": "https://packagist.org/downloads/",
  2880. "license": [
  2881. "MIT"
  2882. ],
  2883. "authors": [
  2884. {
  2885. "name": "Nicolas Grekas",
  2886. "email": "p@tchwork.com"
  2887. },
  2888. {
  2889. "name": "Symfony Community",
  2890. "homepage": "https://symfony.com/contributors"
  2891. }
  2892. ],
  2893. "description": "Generic abstractions related to writing services",
  2894. "homepage": "https://symfony.com",
  2895. "keywords": [
  2896. "abstractions",
  2897. "contracts",
  2898. "decoupling",
  2899. "interfaces",
  2900. "interoperability",
  2901. "standards"
  2902. ],
  2903. "support": {
  2904. "source": "https://github.com/symfony/service-contracts/tree/v3.4.2"
  2905. },
  2906. "funding": [
  2907. {
  2908. "url": "https://symfony.com/sponsor",
  2909. "type": "custom"
  2910. },
  2911. {
  2912. "url": "https://github.com/fabpot",
  2913. "type": "github"
  2914. },
  2915. {
  2916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2917. "type": "tidelift"
  2918. }
  2919. ],
  2920. "time": "2023-12-19T21:51:00+00:00"
  2921. },
  2922. {
  2923. "name": "symfony/string",
  2924. "version": "v7.0.4",
  2925. "source": {
  2926. "type": "git",
  2927. "url": "https://github.com/symfony/string.git",
  2928. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b"
  2929. },
  2930. "dist": {
  2931. "type": "zip",
  2932. "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b",
  2933. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b",
  2934. "shasum": ""
  2935. },
  2936. "require": {
  2937. "php": ">=8.2",
  2938. "symfony/polyfill-ctype": "~1.8",
  2939. "symfony/polyfill-intl-grapheme": "~1.0",
  2940. "symfony/polyfill-intl-normalizer": "~1.0",
  2941. "symfony/polyfill-mbstring": "~1.0"
  2942. },
  2943. "conflict": {
  2944. "symfony/translation-contracts": "<2.5"
  2945. },
  2946. "require-dev": {
  2947. "symfony/error-handler": "^6.4|^7.0",
  2948. "symfony/http-client": "^6.4|^7.0",
  2949. "symfony/intl": "^6.4|^7.0",
  2950. "symfony/translation-contracts": "^2.5|^3.0",
  2951. "symfony/var-exporter": "^6.4|^7.0"
  2952. },
  2953. "type": "library",
  2954. "autoload": {
  2955. "files": [
  2956. "Resources/functions.php"
  2957. ],
  2958. "psr-4": {
  2959. "Symfony\\Component\\String\\": ""
  2960. },
  2961. "exclude-from-classmap": [
  2962. "/Tests/"
  2963. ]
  2964. },
  2965. "notification-url": "https://packagist.org/downloads/",
  2966. "license": [
  2967. "MIT"
  2968. ],
  2969. "authors": [
  2970. {
  2971. "name": "Nicolas Grekas",
  2972. "email": "p@tchwork.com"
  2973. },
  2974. {
  2975. "name": "Symfony Community",
  2976. "homepage": "https://symfony.com/contributors"
  2977. }
  2978. ],
  2979. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  2980. "homepage": "https://symfony.com",
  2981. "keywords": [
  2982. "grapheme",
  2983. "i18n",
  2984. "string",
  2985. "unicode",
  2986. "utf-8",
  2987. "utf8"
  2988. ],
  2989. "support": {
  2990. "source": "https://github.com/symfony/string/tree/v7.0.4"
  2991. },
  2992. "funding": [
  2993. {
  2994. "url": "https://symfony.com/sponsor",
  2995. "type": "custom"
  2996. },
  2997. {
  2998. "url": "https://github.com/fabpot",
  2999. "type": "github"
  3000. },
  3001. {
  3002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3003. "type": "tidelift"
  3004. }
  3005. ],
  3006. "time": "2024-02-01T13:17:36+00:00"
  3007. },
  3008. {
  3009. "name": "symfony/translation-contracts",
  3010. "version": "v3.4.2",
  3011. "source": {
  3012. "type": "git",
  3013. "url": "https://github.com/symfony/translation-contracts.git",
  3014. "reference": "43810bdb2ddb5400e5c5e778e27b210a0ca83b6b"
  3015. },
  3016. "dist": {
  3017. "type": "zip",
  3018. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/43810bdb2ddb5400e5c5e778e27b210a0ca83b6b",
  3019. "reference": "43810bdb2ddb5400e5c5e778e27b210a0ca83b6b",
  3020. "shasum": ""
  3021. },
  3022. "require": {
  3023. "php": ">=8.1"
  3024. },
  3025. "type": "library",
  3026. "extra": {
  3027. "branch-alias": {
  3028. "dev-main": "3.4-dev"
  3029. },
  3030. "thanks": {
  3031. "name": "symfony/contracts",
  3032. "url": "https://github.com/symfony/contracts"
  3033. }
  3034. },
  3035. "autoload": {
  3036. "psr-4": {
  3037. "Symfony\\Contracts\\Translation\\": ""
  3038. },
  3039. "exclude-from-classmap": [
  3040. "/Test/"
  3041. ]
  3042. },
  3043. "notification-url": "https://packagist.org/downloads/",
  3044. "license": [
  3045. "MIT"
  3046. ],
  3047. "authors": [
  3048. {
  3049. "name": "Nicolas Grekas",
  3050. "email": "p@tchwork.com"
  3051. },
  3052. {
  3053. "name": "Symfony Community",
  3054. "homepage": "https://symfony.com/contributors"
  3055. }
  3056. ],
  3057. "description": "Generic abstractions related to translation",
  3058. "homepage": "https://symfony.com",
  3059. "keywords": [
  3060. "abstractions",
  3061. "contracts",
  3062. "decoupling",
  3063. "interfaces",
  3064. "interoperability",
  3065. "standards"
  3066. ],
  3067. "support": {
  3068. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.2"
  3069. },
  3070. "funding": [
  3071. {
  3072. "url": "https://symfony.com/sponsor",
  3073. "type": "custom"
  3074. },
  3075. {
  3076. "url": "https://github.com/fabpot",
  3077. "type": "github"
  3078. },
  3079. {
  3080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3081. "type": "tidelift"
  3082. }
  3083. ],
  3084. "time": "2024-01-23T14:51:35+00:00"
  3085. },
  3086. {
  3087. "name": "symfony/validator",
  3088. "version": "v7.0.6",
  3089. "source": {
  3090. "type": "git",
  3091. "url": "https://github.com/symfony/validator.git",
  3092. "reference": "a2df2c63b7944a162dee86ab8065f2f91b7d6e36"
  3093. },
  3094. "dist": {
  3095. "type": "zip",
  3096. "url": "https://api.github.com/repos/symfony/validator/zipball/a2df2c63b7944a162dee86ab8065f2f91b7d6e36",
  3097. "reference": "a2df2c63b7944a162dee86ab8065f2f91b7d6e36",
  3098. "shasum": ""
  3099. },
  3100. "require": {
  3101. "php": ">=8.2",
  3102. "symfony/polyfill-ctype": "~1.8",
  3103. "symfony/polyfill-mbstring": "~1.0",
  3104. "symfony/polyfill-php83": "^1.27",
  3105. "symfony/translation-contracts": "^2.5|^3"
  3106. },
  3107. "conflict": {
  3108. "doctrine/lexer": "<1.1",
  3109. "symfony/dependency-injection": "<6.4",
  3110. "symfony/doctrine-bridge": "<7.0",
  3111. "symfony/expression-language": "<6.4",
  3112. "symfony/http-kernel": "<6.4",
  3113. "symfony/intl": "<6.4",
  3114. "symfony/property-info": "<6.4",
  3115. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  3116. "symfony/yaml": "<6.4"
  3117. },
  3118. "require-dev": {
  3119. "egulias/email-validator": "^2.1.10|^3|^4",
  3120. "symfony/cache": "^6.4|^7.0",
  3121. "symfony/config": "^6.4|^7.0",
  3122. "symfony/console": "^6.4|^7.0",
  3123. "symfony/dependency-injection": "^6.4|^7.0",
  3124. "symfony/expression-language": "^6.4|^7.0",
  3125. "symfony/finder": "^6.4|^7.0",
  3126. "symfony/http-client": "^6.4|^7.0",
  3127. "symfony/http-foundation": "^6.4|^7.0",
  3128. "symfony/http-kernel": "^6.4|^7.0",
  3129. "symfony/intl": "^6.4|^7.0",
  3130. "symfony/mime": "^6.4|^7.0",
  3131. "symfony/property-access": "^6.4|^7.0",
  3132. "symfony/property-info": "^6.4|^7.0",
  3133. "symfony/translation": "^6.4.3|^7.0.3",
  3134. "symfony/yaml": "^6.4|^7.0"
  3135. },
  3136. "type": "library",
  3137. "autoload": {
  3138. "psr-4": {
  3139. "Symfony\\Component\\Validator\\": ""
  3140. },
  3141. "exclude-from-classmap": [
  3142. "/Tests/"
  3143. ]
  3144. },
  3145. "notification-url": "https://packagist.org/downloads/",
  3146. "license": [
  3147. "MIT"
  3148. ],
  3149. "authors": [
  3150. {
  3151. "name": "Fabien Potencier",
  3152. "email": "fabien@symfony.com"
  3153. },
  3154. {
  3155. "name": "Symfony Community",
  3156. "homepage": "https://symfony.com/contributors"
  3157. }
  3158. ],
  3159. "description": "Provides tools to validate values",
  3160. "homepage": "https://symfony.com",
  3161. "support": {
  3162. "source": "https://github.com/symfony/validator/tree/v7.0.6"
  3163. },
  3164. "funding": [
  3165. {
  3166. "url": "https://symfony.com/sponsor",
  3167. "type": "custom"
  3168. },
  3169. {
  3170. "url": "https://github.com/fabpot",
  3171. "type": "github"
  3172. },
  3173. {
  3174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3175. "type": "tidelift"
  3176. }
  3177. ],
  3178. "time": "2024-03-28T09:20:36+00:00"
  3179. },
  3180. {
  3181. "name": "symfony/var-exporter",
  3182. "version": "v7.0.6",
  3183. "source": {
  3184. "type": "git",
  3185. "url": "https://github.com/symfony/var-exporter.git",
  3186. "reference": "c74c568d2a15a1d407cf40d61ea82bc2d521e27b"
  3187. },
  3188. "dist": {
  3189. "type": "zip",
  3190. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/c74c568d2a15a1d407cf40d61ea82bc2d521e27b",
  3191. "reference": "c74c568d2a15a1d407cf40d61ea82bc2d521e27b",
  3192. "shasum": ""
  3193. },
  3194. "require": {
  3195. "php": ">=8.2"
  3196. },
  3197. "require-dev": {
  3198. "symfony/property-access": "^6.4|^7.0",
  3199. "symfony/serializer": "^6.4|^7.0",
  3200. "symfony/var-dumper": "^6.4|^7.0"
  3201. },
  3202. "type": "library",
  3203. "autoload": {
  3204. "psr-4": {
  3205. "Symfony\\Component\\VarExporter\\": ""
  3206. },
  3207. "exclude-from-classmap": [
  3208. "/Tests/"
  3209. ]
  3210. },
  3211. "notification-url": "https://packagist.org/downloads/",
  3212. "license": [
  3213. "MIT"
  3214. ],
  3215. "authors": [
  3216. {
  3217. "name": "Nicolas Grekas",
  3218. "email": "p@tchwork.com"
  3219. },
  3220. {
  3221. "name": "Symfony Community",
  3222. "homepage": "https://symfony.com/contributors"
  3223. }
  3224. ],
  3225. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  3226. "homepage": "https://symfony.com",
  3227. "keywords": [
  3228. "clone",
  3229. "construct",
  3230. "export",
  3231. "hydrate",
  3232. "instantiate",
  3233. "lazy-loading",
  3234. "proxy",
  3235. "serialize"
  3236. ],
  3237. "support": {
  3238. "source": "https://github.com/symfony/var-exporter/tree/v7.0.6"
  3239. },
  3240. "funding": [
  3241. {
  3242. "url": "https://symfony.com/sponsor",
  3243. "type": "custom"
  3244. },
  3245. {
  3246. "url": "https://github.com/fabpot",
  3247. "type": "github"
  3248. },
  3249. {
  3250. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3251. "type": "tidelift"
  3252. }
  3253. ],
  3254. "time": "2024-03-20T21:25:22+00:00"
  3255. },
  3256. {
  3257. "name": "webmozart/assert",
  3258. "version": "1.11.0",
  3259. "source": {
  3260. "type": "git",
  3261. "url": "https://github.com/webmozarts/assert.git",
  3262. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  3263. },
  3264. "dist": {
  3265. "type": "zip",
  3266. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  3267. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  3268. "shasum": ""
  3269. },
  3270. "require": {
  3271. "ext-ctype": "*",
  3272. "php": "^7.2 || ^8.0"
  3273. },
  3274. "conflict": {
  3275. "phpstan/phpstan": "<0.12.20",
  3276. "vimeo/psalm": "<4.6.1 || 4.6.2"
  3277. },
  3278. "require-dev": {
  3279. "phpunit/phpunit": "^8.5.13"
  3280. },
  3281. "type": "library",
  3282. "extra": {
  3283. "branch-alias": {
  3284. "dev-master": "1.10-dev"
  3285. }
  3286. },
  3287. "autoload": {
  3288. "psr-4": {
  3289. "Webmozart\\Assert\\": "src/"
  3290. }
  3291. },
  3292. "notification-url": "https://packagist.org/downloads/",
  3293. "license": [
  3294. "MIT"
  3295. ],
  3296. "authors": [
  3297. {
  3298. "name": "Bernhard Schussek",
  3299. "email": "bschussek@gmail.com"
  3300. }
  3301. ],
  3302. "description": "Assertions to validate method input/output with nice error messages.",
  3303. "keywords": [
  3304. "assert",
  3305. "check",
  3306. "validate"
  3307. ],
  3308. "support": {
  3309. "issues": "https://github.com/webmozarts/assert/issues",
  3310. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  3311. },
  3312. "time": "2022-06-03T18:03:27+00:00"
  3313. },
  3314. {
  3315. "name": "webmozart/glob",
  3316. "version": "4.7.0",
  3317. "source": {
  3318. "type": "git",
  3319. "url": "https://github.com/webmozarts/glob.git",
  3320. "reference": "8a2842112d6916e61e0e15e316465b611f3abc17"
  3321. },
  3322. "dist": {
  3323. "type": "zip",
  3324. "url": "https://api.github.com/repos/webmozarts/glob/zipball/8a2842112d6916e61e0e15e316465b611f3abc17",
  3325. "reference": "8a2842112d6916e61e0e15e316465b611f3abc17",
  3326. "shasum": ""
  3327. },
  3328. "require": {
  3329. "php": "^7.3 || ^8.0.0"
  3330. },
  3331. "require-dev": {
  3332. "phpunit/phpunit": "^9.5",
  3333. "symfony/filesystem": "^5.3"
  3334. },
  3335. "type": "library",
  3336. "extra": {
  3337. "branch-alias": {
  3338. "dev-master": "4.1-dev"
  3339. }
  3340. },
  3341. "autoload": {
  3342. "psr-4": {
  3343. "Webmozart\\Glob\\": "src/"
  3344. }
  3345. },
  3346. "notification-url": "https://packagist.org/downloads/",
  3347. "license": [
  3348. "MIT"
  3349. ],
  3350. "authors": [
  3351. {
  3352. "name": "Bernhard Schussek",
  3353. "email": "bschussek@gmail.com"
  3354. }
  3355. ],
  3356. "description": "A PHP implementation of Ant's glob.",
  3357. "support": {
  3358. "issues": "https://github.com/webmozarts/glob/issues",
  3359. "source": "https://github.com/webmozarts/glob/tree/4.7.0"
  3360. },
  3361. "time": "2024-03-07T20:33:40+00:00"
  3362. }
  3363. ],
  3364. "packages-dev": [],
  3365. "aliases": [],
  3366. "minimum-stability": "stable",
  3367. "stability-flags": [],
  3368. "prefer-stable": false,
  3369. "prefer-lowest": false,
  3370. "platform": {
  3371. "php": "^8.3"
  3372. },
  3373. "platform-dev": [],
  3374. "platform-overrides": {
  3375. "php": "8.3"
  3376. },
  3377. "plugin-api-version": "2.6.0"
  3378. }