You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 75KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172
  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": "d46e0242846864231ef015d17aa18343",
  8. "packages": [
  9. {
  10. "name": "composer/pcre",
  11. "version": "3.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/pcre.git",
  15. "reference": "4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/pcre/zipball/4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb",
  20. "reference": "4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.4 || ^8.0"
  25. },
  26. "require-dev": {
  27. "phpstan/phpstan": "^1.3",
  28. "phpstan/phpstan-strict-rules": "^1.1",
  29. "symfony/phpunit-bridge": "^5"
  30. },
  31. "type": "library",
  32. "extra": {
  33. "branch-alias": {
  34. "dev-main": "3.x-dev"
  35. }
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "Composer\\Pcre\\": "src"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Jordi Boggiano",
  49. "email": "j.boggiano@seld.be",
  50. "homepage": "http://seld.be"
  51. }
  52. ],
  53. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  54. "keywords": [
  55. "PCRE",
  56. "preg",
  57. "regex",
  58. "regular expression"
  59. ],
  60. "support": {
  61. "issues": "https://github.com/composer/pcre/issues",
  62. "source": "https://github.com/composer/pcre/tree/3.0.2"
  63. },
  64. "funding": [
  65. {
  66. "url": "https://packagist.com",
  67. "type": "custom"
  68. },
  69. {
  70. "url": "https://github.com/composer",
  71. "type": "github"
  72. },
  73. {
  74. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  75. "type": "tidelift"
  76. }
  77. ],
  78. "time": "2022-11-03T20:24:16+00:00"
  79. },
  80. {
  81. "name": "composer/semver",
  82. "version": "3.3.2",
  83. "source": {
  84. "type": "git",
  85. "url": "https://github.com/composer/semver.git",
  86. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  87. },
  88. "dist": {
  89. "type": "zip",
  90. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  91. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  92. "shasum": ""
  93. },
  94. "require": {
  95. "php": "^5.3.2 || ^7.0 || ^8.0"
  96. },
  97. "require-dev": {
  98. "phpstan/phpstan": "^1.4",
  99. "symfony/phpunit-bridge": "^4.2 || ^5"
  100. },
  101. "type": "library",
  102. "extra": {
  103. "branch-alias": {
  104. "dev-main": "3.x-dev"
  105. }
  106. },
  107. "autoload": {
  108. "psr-4": {
  109. "Composer\\Semver\\": "src"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "MIT"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Nils Adermann",
  119. "email": "naderman@naderman.de",
  120. "homepage": "http://www.naderman.de"
  121. },
  122. {
  123. "name": "Jordi Boggiano",
  124. "email": "j.boggiano@seld.be",
  125. "homepage": "http://seld.be"
  126. },
  127. {
  128. "name": "Rob Bast",
  129. "email": "rob.bast@gmail.com",
  130. "homepage": "http://robbast.nl"
  131. }
  132. ],
  133. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  134. "keywords": [
  135. "semantic",
  136. "semver",
  137. "validation",
  138. "versioning"
  139. ],
  140. "support": {
  141. "irc": "irc://irc.freenode.org/composer",
  142. "issues": "https://github.com/composer/semver/issues",
  143. "source": "https://github.com/composer/semver/tree/3.3.2"
  144. },
  145. "funding": [
  146. {
  147. "url": "https://packagist.com",
  148. "type": "custom"
  149. },
  150. {
  151. "url": "https://github.com/composer",
  152. "type": "github"
  153. },
  154. {
  155. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  156. "type": "tidelift"
  157. }
  158. ],
  159. "time": "2022-04-01T19:23:25+00:00"
  160. },
  161. {
  162. "name": "composer/xdebug-handler",
  163. "version": "3.0.3",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/composer/xdebug-handler.git",
  167. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  172. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "composer/pcre": "^1 || ^2 || ^3",
  177. "php": "^7.2.5 || ^8.0",
  178. "psr/log": "^1 || ^2 || ^3"
  179. },
  180. "require-dev": {
  181. "phpstan/phpstan": "^1.0",
  182. "phpstan/phpstan-strict-rules": "^1.1",
  183. "symfony/phpunit-bridge": "^6.0"
  184. },
  185. "type": "library",
  186. "autoload": {
  187. "psr-4": {
  188. "Composer\\XdebugHandler\\": "src"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "MIT"
  194. ],
  195. "authors": [
  196. {
  197. "name": "John Stevenson",
  198. "email": "john-stevenson@blueyonder.co.uk"
  199. }
  200. ],
  201. "description": "Restarts a process without Xdebug.",
  202. "keywords": [
  203. "Xdebug",
  204. "performance"
  205. ],
  206. "support": {
  207. "irc": "irc://irc.freenode.org/composer",
  208. "issues": "https://github.com/composer/xdebug-handler/issues",
  209. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  210. },
  211. "funding": [
  212. {
  213. "url": "https://packagist.com",
  214. "type": "custom"
  215. },
  216. {
  217. "url": "https://github.com/composer",
  218. "type": "github"
  219. },
  220. {
  221. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  222. "type": "tidelift"
  223. }
  224. ],
  225. "time": "2022-02-25T21:32:43+00:00"
  226. },
  227. {
  228. "name": "doctrine/annotations",
  229. "version": "1.13.3",
  230. "source": {
  231. "type": "git",
  232. "url": "https://github.com/doctrine/annotations.git",
  233. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  234. },
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  238. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  239. "shasum": ""
  240. },
  241. "require": {
  242. "doctrine/lexer": "1.*",
  243. "ext-tokenizer": "*",
  244. "php": "^7.1 || ^8.0",
  245. "psr/cache": "^1 || ^2 || ^3"
  246. },
  247. "require-dev": {
  248. "doctrine/cache": "^1.11 || ^2.0",
  249. "doctrine/coding-standard": "^6.0 || ^8.1",
  250. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  251. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  252. "symfony/cache": "^4.4 || ^5.2",
  253. "vimeo/psalm": "^4.10"
  254. },
  255. "type": "library",
  256. "autoload": {
  257. "psr-4": {
  258. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  259. }
  260. },
  261. "notification-url": "https://packagist.org/downloads/",
  262. "license": [
  263. "MIT"
  264. ],
  265. "authors": [
  266. {
  267. "name": "Guilherme Blanco",
  268. "email": "guilhermeblanco@gmail.com"
  269. },
  270. {
  271. "name": "Roman Borschel",
  272. "email": "roman@code-factory.org"
  273. },
  274. {
  275. "name": "Benjamin Eberlei",
  276. "email": "kontakt@beberlei.de"
  277. },
  278. {
  279. "name": "Jonathan Wage",
  280. "email": "jonwage@gmail.com"
  281. },
  282. {
  283. "name": "Johannes Schmitt",
  284. "email": "schmittjoh@gmail.com"
  285. }
  286. ],
  287. "description": "Docblock Annotations Parser",
  288. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  289. "keywords": [
  290. "annotations",
  291. "docblock",
  292. "parser"
  293. ],
  294. "support": {
  295. "issues": "https://github.com/doctrine/annotations/issues",
  296. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  297. },
  298. "time": "2022-07-02T10:48:51+00:00"
  299. },
  300. {
  301. "name": "doctrine/lexer",
  302. "version": "1.2.3",
  303. "source": {
  304. "type": "git",
  305. "url": "https://github.com/doctrine/lexer.git",
  306. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  307. },
  308. "dist": {
  309. "type": "zip",
  310. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  311. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  312. "shasum": ""
  313. },
  314. "require": {
  315. "php": "^7.1 || ^8.0"
  316. },
  317. "require-dev": {
  318. "doctrine/coding-standard": "^9.0",
  319. "phpstan/phpstan": "^1.3",
  320. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  321. "vimeo/psalm": "^4.11"
  322. },
  323. "type": "library",
  324. "autoload": {
  325. "psr-4": {
  326. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  327. }
  328. },
  329. "notification-url": "https://packagist.org/downloads/",
  330. "license": [
  331. "MIT"
  332. ],
  333. "authors": [
  334. {
  335. "name": "Guilherme Blanco",
  336. "email": "guilhermeblanco@gmail.com"
  337. },
  338. {
  339. "name": "Roman Borschel",
  340. "email": "roman@code-factory.org"
  341. },
  342. {
  343. "name": "Johannes Schmitt",
  344. "email": "schmittjoh@gmail.com"
  345. }
  346. ],
  347. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  348. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  349. "keywords": [
  350. "annotations",
  351. "docblock",
  352. "lexer",
  353. "parser",
  354. "php"
  355. ],
  356. "support": {
  357. "issues": "https://github.com/doctrine/lexer/issues",
  358. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  359. },
  360. "funding": [
  361. {
  362. "url": "https://www.doctrine-project.org/sponsorship.html",
  363. "type": "custom"
  364. },
  365. {
  366. "url": "https://www.patreon.com/phpdoctrine",
  367. "type": "patreon"
  368. },
  369. {
  370. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  371. "type": "tidelift"
  372. }
  373. ],
  374. "time": "2022-02-28T11:07:21+00:00"
  375. },
  376. {
  377. "name": "friendsofphp/php-cs-fixer",
  378. "version": "v3.13.0",
  379. "source": {
  380. "type": "git",
  381. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  382. "reference": "a6232229a8309e8811dc751c28b91cb34b2943e1"
  383. },
  384. "dist": {
  385. "type": "zip",
  386. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/a6232229a8309e8811dc751c28b91cb34b2943e1",
  387. "reference": "a6232229a8309e8811dc751c28b91cb34b2943e1",
  388. "shasum": ""
  389. },
  390. "require": {
  391. "composer/semver": "^3.2",
  392. "composer/xdebug-handler": "^3.0.3",
  393. "doctrine/annotations": "^1.13",
  394. "ext-json": "*",
  395. "ext-tokenizer": "*",
  396. "php": "^7.4 || ^8.0",
  397. "sebastian/diff": "^4.0",
  398. "symfony/console": "^5.4 || ^6.0",
  399. "symfony/event-dispatcher": "^5.4 || ^6.0",
  400. "symfony/filesystem": "^5.4 || ^6.0",
  401. "symfony/finder": "^5.4 || ^6.0",
  402. "symfony/options-resolver": "^5.4 || ^6.0",
  403. "symfony/polyfill-mbstring": "^1.23",
  404. "symfony/polyfill-php80": "^1.25",
  405. "symfony/polyfill-php81": "^1.25",
  406. "symfony/process": "^5.4 || ^6.0",
  407. "symfony/stopwatch": "^5.4 || ^6.0"
  408. },
  409. "require-dev": {
  410. "justinrainbow/json-schema": "^5.2",
  411. "keradus/cli-executor": "^2.0",
  412. "mikey179/vfsstream": "^1.6.10",
  413. "php-coveralls/php-coveralls": "^2.5.2",
  414. "php-cs-fixer/accessible-object": "^1.1",
  415. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  416. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  417. "phpspec/prophecy": "^1.15",
  418. "phpspec/prophecy-phpunit": "^2.0",
  419. "phpunit/phpunit": "^9.5",
  420. "phpunitgoodpractices/polyfill": "^1.6",
  421. "phpunitgoodpractices/traits": "^1.9.2",
  422. "symfony/phpunit-bridge": "^6.0",
  423. "symfony/yaml": "^5.4 || ^6.0"
  424. },
  425. "suggest": {
  426. "ext-dom": "For handling output formats in XML",
  427. "ext-mbstring": "For handling non-UTF8 characters."
  428. },
  429. "bin": [
  430. "php-cs-fixer"
  431. ],
  432. "type": "application",
  433. "autoload": {
  434. "psr-4": {
  435. "PhpCsFixer\\": "src/"
  436. }
  437. },
  438. "notification-url": "https://packagist.org/downloads/",
  439. "license": [
  440. "MIT"
  441. ],
  442. "authors": [
  443. {
  444. "name": "Fabien Potencier",
  445. "email": "fabien@symfony.com"
  446. },
  447. {
  448. "name": "Dariusz Rumiński",
  449. "email": "dariusz.ruminski@gmail.com"
  450. }
  451. ],
  452. "description": "A tool to automatically fix PHP code style",
  453. "support": {
  454. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  455. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.13.0"
  456. },
  457. "funding": [
  458. {
  459. "url": "https://github.com/keradus",
  460. "type": "github"
  461. }
  462. ],
  463. "time": "2022-10-31T19:28:50+00:00"
  464. },
  465. {
  466. "name": "nextcloud/coding-standard",
  467. "version": "v1.0.0",
  468. "source": {
  469. "type": "git",
  470. "url": "https://github.com/nextcloud/coding-standard.git",
  471. "reference": "f3d1f9375e89c605deb1734f59a9f51ecbe80578"
  472. },
  473. "dist": {
  474. "type": "zip",
  475. "url": "https://api.github.com/repos/nextcloud/coding-standard/zipball/f3d1f9375e89c605deb1734f59a9f51ecbe80578",
  476. "reference": "f3d1f9375e89c605deb1734f59a9f51ecbe80578",
  477. "shasum": ""
  478. },
  479. "require": {
  480. "friendsofphp/php-cs-fixer": "^3.2",
  481. "php": "^7.3|^8.0"
  482. },
  483. "type": "library",
  484. "autoload": {
  485. "psr-4": {
  486. "Nextcloud\\CodingStandard\\": "src"
  487. }
  488. },
  489. "notification-url": "https://packagist.org/downloads/",
  490. "license": [
  491. "MIT"
  492. ],
  493. "authors": [
  494. {
  495. "name": "Christoph Wurst",
  496. "email": "christoph@winzerhof-wurst.at"
  497. }
  498. ],
  499. "description": "Nextcloud coding standards for the php cs fixer",
  500. "support": {
  501. "issues": "https://github.com/nextcloud/coding-standard/issues",
  502. "source": "https://github.com/nextcloud/coding-standard/tree/v1.0.0"
  503. },
  504. "time": "2021-11-10T08:44:10+00:00"
  505. },
  506. {
  507. "name": "psr/cache",
  508. "version": "1.0.1",
  509. "source": {
  510. "type": "git",
  511. "url": "https://github.com/php-fig/cache.git",
  512. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  513. },
  514. "dist": {
  515. "type": "zip",
  516. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  517. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  518. "shasum": ""
  519. },
  520. "require": {
  521. "php": ">=5.3.0"
  522. },
  523. "type": "library",
  524. "extra": {
  525. "branch-alias": {
  526. "dev-master": "1.0.x-dev"
  527. }
  528. },
  529. "autoload": {
  530. "psr-4": {
  531. "Psr\\Cache\\": "src/"
  532. }
  533. },
  534. "notification-url": "https://packagist.org/downloads/",
  535. "license": [
  536. "MIT"
  537. ],
  538. "authors": [
  539. {
  540. "name": "PHP-FIG",
  541. "homepage": "http://www.php-fig.org/"
  542. }
  543. ],
  544. "description": "Common interface for caching libraries",
  545. "keywords": [
  546. "cache",
  547. "psr",
  548. "psr-6"
  549. ],
  550. "support": {
  551. "source": "https://github.com/php-fig/cache/tree/master"
  552. },
  553. "time": "2016-08-06T20:24:11+00:00"
  554. },
  555. {
  556. "name": "psr/container",
  557. "version": "1.1.2",
  558. "source": {
  559. "type": "git",
  560. "url": "https://github.com/php-fig/container.git",
  561. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  562. },
  563. "dist": {
  564. "type": "zip",
  565. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  566. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  567. "shasum": ""
  568. },
  569. "require": {
  570. "php": ">=7.4.0"
  571. },
  572. "type": "library",
  573. "autoload": {
  574. "psr-4": {
  575. "Psr\\Container\\": "src/"
  576. }
  577. },
  578. "notification-url": "https://packagist.org/downloads/",
  579. "license": [
  580. "MIT"
  581. ],
  582. "authors": [
  583. {
  584. "name": "PHP-FIG",
  585. "homepage": "https://www.php-fig.org/"
  586. }
  587. ],
  588. "description": "Common Container Interface (PHP FIG PSR-11)",
  589. "homepage": "https://github.com/php-fig/container",
  590. "keywords": [
  591. "PSR-11",
  592. "container",
  593. "container-interface",
  594. "container-interop",
  595. "psr"
  596. ],
  597. "support": {
  598. "issues": "https://github.com/php-fig/container/issues",
  599. "source": "https://github.com/php-fig/container/tree/1.1.2"
  600. },
  601. "time": "2021-11-05T16:50:12+00:00"
  602. },
  603. {
  604. "name": "psr/event-dispatcher",
  605. "version": "1.0.0",
  606. "source": {
  607. "type": "git",
  608. "url": "https://github.com/php-fig/event-dispatcher.git",
  609. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  610. },
  611. "dist": {
  612. "type": "zip",
  613. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  614. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  615. "shasum": ""
  616. },
  617. "require": {
  618. "php": ">=7.2.0"
  619. },
  620. "type": "library",
  621. "extra": {
  622. "branch-alias": {
  623. "dev-master": "1.0.x-dev"
  624. }
  625. },
  626. "autoload": {
  627. "psr-4": {
  628. "Psr\\EventDispatcher\\": "src/"
  629. }
  630. },
  631. "notification-url": "https://packagist.org/downloads/",
  632. "license": [
  633. "MIT"
  634. ],
  635. "authors": [
  636. {
  637. "name": "PHP-FIG",
  638. "homepage": "http://www.php-fig.org/"
  639. }
  640. ],
  641. "description": "Standard interfaces for event handling.",
  642. "keywords": [
  643. "events",
  644. "psr",
  645. "psr-14"
  646. ],
  647. "support": {
  648. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  649. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  650. },
  651. "time": "2019-01-08T18:20:26+00:00"
  652. },
  653. {
  654. "name": "psr/log",
  655. "version": "1.1.4",
  656. "source": {
  657. "type": "git",
  658. "url": "https://github.com/php-fig/log.git",
  659. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  660. },
  661. "dist": {
  662. "type": "zip",
  663. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  664. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  665. "shasum": ""
  666. },
  667. "require": {
  668. "php": ">=5.3.0"
  669. },
  670. "type": "library",
  671. "extra": {
  672. "branch-alias": {
  673. "dev-master": "1.1.x-dev"
  674. }
  675. },
  676. "autoload": {
  677. "psr-4": {
  678. "Psr\\Log\\": "Psr/Log/"
  679. }
  680. },
  681. "notification-url": "https://packagist.org/downloads/",
  682. "license": [
  683. "MIT"
  684. ],
  685. "authors": [
  686. {
  687. "name": "PHP-FIG",
  688. "homepage": "https://www.php-fig.org/"
  689. }
  690. ],
  691. "description": "Common interface for logging libraries",
  692. "homepage": "https://github.com/php-fig/log",
  693. "keywords": [
  694. "log",
  695. "psr",
  696. "psr-3"
  697. ],
  698. "support": {
  699. "source": "https://github.com/php-fig/log/tree/1.1.4"
  700. },
  701. "time": "2021-05-03T11:20:27+00:00"
  702. },
  703. {
  704. "name": "sebastian/diff",
  705. "version": "4.0.4",
  706. "source": {
  707. "type": "git",
  708. "url": "https://github.com/sebastianbergmann/diff.git",
  709. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  710. },
  711. "dist": {
  712. "type": "zip",
  713. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  714. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  715. "shasum": ""
  716. },
  717. "require": {
  718. "php": ">=7.3"
  719. },
  720. "require-dev": {
  721. "phpunit/phpunit": "^9.3",
  722. "symfony/process": "^4.2 || ^5"
  723. },
  724. "type": "library",
  725. "extra": {
  726. "branch-alias": {
  727. "dev-master": "4.0-dev"
  728. }
  729. },
  730. "autoload": {
  731. "classmap": [
  732. "src/"
  733. ]
  734. },
  735. "notification-url": "https://packagist.org/downloads/",
  736. "license": [
  737. "BSD-3-Clause"
  738. ],
  739. "authors": [
  740. {
  741. "name": "Sebastian Bergmann",
  742. "email": "sebastian@phpunit.de"
  743. },
  744. {
  745. "name": "Kore Nordmann",
  746. "email": "mail@kore-nordmann.de"
  747. }
  748. ],
  749. "description": "Diff implementation",
  750. "homepage": "https://github.com/sebastianbergmann/diff",
  751. "keywords": [
  752. "diff",
  753. "udiff",
  754. "unidiff",
  755. "unified diff"
  756. ],
  757. "support": {
  758. "issues": "https://github.com/sebastianbergmann/diff/issues",
  759. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  760. },
  761. "funding": [
  762. {
  763. "url": "https://github.com/sebastianbergmann",
  764. "type": "github"
  765. }
  766. ],
  767. "time": "2020-10-26T13:10:38+00:00"
  768. },
  769. {
  770. "name": "symfony/console",
  771. "version": "v5.4.15",
  772. "source": {
  773. "type": "git",
  774. "url": "https://github.com/symfony/console.git",
  775. "reference": "ea59bb0edfaf9f28d18d8791410ee0355f317669"
  776. },
  777. "dist": {
  778. "type": "zip",
  779. "url": "https://api.github.com/repos/symfony/console/zipball/ea59bb0edfaf9f28d18d8791410ee0355f317669",
  780. "reference": "ea59bb0edfaf9f28d18d8791410ee0355f317669",
  781. "shasum": ""
  782. },
  783. "require": {
  784. "php": ">=7.2.5",
  785. "symfony/deprecation-contracts": "^2.1|^3",
  786. "symfony/polyfill-mbstring": "~1.0",
  787. "symfony/polyfill-php73": "^1.9",
  788. "symfony/polyfill-php80": "^1.16",
  789. "symfony/service-contracts": "^1.1|^2|^3",
  790. "symfony/string": "^5.1|^6.0"
  791. },
  792. "conflict": {
  793. "psr/log": ">=3",
  794. "symfony/dependency-injection": "<4.4",
  795. "symfony/dotenv": "<5.1",
  796. "symfony/event-dispatcher": "<4.4",
  797. "symfony/lock": "<4.4",
  798. "symfony/process": "<4.4"
  799. },
  800. "provide": {
  801. "psr/log-implementation": "1.0|2.0"
  802. },
  803. "require-dev": {
  804. "psr/log": "^1|^2",
  805. "symfony/config": "^4.4|^5.0|^6.0",
  806. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  807. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  808. "symfony/lock": "^4.4|^5.0|^6.0",
  809. "symfony/process": "^4.4|^5.0|^6.0",
  810. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  811. },
  812. "suggest": {
  813. "psr/log": "For using the console logger",
  814. "symfony/event-dispatcher": "",
  815. "symfony/lock": "",
  816. "symfony/process": ""
  817. },
  818. "type": "library",
  819. "autoload": {
  820. "psr-4": {
  821. "Symfony\\Component\\Console\\": ""
  822. },
  823. "exclude-from-classmap": [
  824. "/Tests/"
  825. ]
  826. },
  827. "notification-url": "https://packagist.org/downloads/",
  828. "license": [
  829. "MIT"
  830. ],
  831. "authors": [
  832. {
  833. "name": "Fabien Potencier",
  834. "email": "fabien@symfony.com"
  835. },
  836. {
  837. "name": "Symfony Community",
  838. "homepage": "https://symfony.com/contributors"
  839. }
  840. ],
  841. "description": "Eases the creation of beautiful and testable command line interfaces",
  842. "homepage": "https://symfony.com",
  843. "keywords": [
  844. "cli",
  845. "command line",
  846. "console",
  847. "terminal"
  848. ],
  849. "support": {
  850. "source": "https://github.com/symfony/console/tree/v5.4.15"
  851. },
  852. "funding": [
  853. {
  854. "url": "https://symfony.com/sponsor",
  855. "type": "custom"
  856. },
  857. {
  858. "url": "https://github.com/fabpot",
  859. "type": "github"
  860. },
  861. {
  862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  863. "type": "tidelift"
  864. }
  865. ],
  866. "time": "2022-10-26T21:41:52+00:00"
  867. },
  868. {
  869. "name": "symfony/deprecation-contracts",
  870. "version": "v2.5.2",
  871. "source": {
  872. "type": "git",
  873. "url": "https://github.com/symfony/deprecation-contracts.git",
  874. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  875. },
  876. "dist": {
  877. "type": "zip",
  878. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  879. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  880. "shasum": ""
  881. },
  882. "require": {
  883. "php": ">=7.1"
  884. },
  885. "type": "library",
  886. "extra": {
  887. "branch-alias": {
  888. "dev-main": "2.5-dev"
  889. },
  890. "thanks": {
  891. "name": "symfony/contracts",
  892. "url": "https://github.com/symfony/contracts"
  893. }
  894. },
  895. "autoload": {
  896. "files": [
  897. "function.php"
  898. ]
  899. },
  900. "notification-url": "https://packagist.org/downloads/",
  901. "license": [
  902. "MIT"
  903. ],
  904. "authors": [
  905. {
  906. "name": "Nicolas Grekas",
  907. "email": "p@tchwork.com"
  908. },
  909. {
  910. "name": "Symfony Community",
  911. "homepage": "https://symfony.com/contributors"
  912. }
  913. ],
  914. "description": "A generic function and convention to trigger deprecation notices",
  915. "homepage": "https://symfony.com",
  916. "support": {
  917. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  918. },
  919. "funding": [
  920. {
  921. "url": "https://symfony.com/sponsor",
  922. "type": "custom"
  923. },
  924. {
  925. "url": "https://github.com/fabpot",
  926. "type": "github"
  927. },
  928. {
  929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  930. "type": "tidelift"
  931. }
  932. ],
  933. "time": "2022-01-02T09:53:40+00:00"
  934. },
  935. {
  936. "name": "symfony/event-dispatcher",
  937. "version": "v5.4.9",
  938. "source": {
  939. "type": "git",
  940. "url": "https://github.com/symfony/event-dispatcher.git",
  941. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  942. },
  943. "dist": {
  944. "type": "zip",
  945. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  946. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  947. "shasum": ""
  948. },
  949. "require": {
  950. "php": ">=7.2.5",
  951. "symfony/deprecation-contracts": "^2.1|^3",
  952. "symfony/event-dispatcher-contracts": "^2|^3",
  953. "symfony/polyfill-php80": "^1.16"
  954. },
  955. "conflict": {
  956. "symfony/dependency-injection": "<4.4"
  957. },
  958. "provide": {
  959. "psr/event-dispatcher-implementation": "1.0",
  960. "symfony/event-dispatcher-implementation": "2.0"
  961. },
  962. "require-dev": {
  963. "psr/log": "^1|^2|^3",
  964. "symfony/config": "^4.4|^5.0|^6.0",
  965. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  966. "symfony/error-handler": "^4.4|^5.0|^6.0",
  967. "symfony/expression-language": "^4.4|^5.0|^6.0",
  968. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  969. "symfony/service-contracts": "^1.1|^2|^3",
  970. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  971. },
  972. "suggest": {
  973. "symfony/dependency-injection": "",
  974. "symfony/http-kernel": ""
  975. },
  976. "type": "library",
  977. "autoload": {
  978. "psr-4": {
  979. "Symfony\\Component\\EventDispatcher\\": ""
  980. },
  981. "exclude-from-classmap": [
  982. "/Tests/"
  983. ]
  984. },
  985. "notification-url": "https://packagist.org/downloads/",
  986. "license": [
  987. "MIT"
  988. ],
  989. "authors": [
  990. {
  991. "name": "Fabien Potencier",
  992. "email": "fabien@symfony.com"
  993. },
  994. {
  995. "name": "Symfony Community",
  996. "homepage": "https://symfony.com/contributors"
  997. }
  998. ],
  999. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  1000. "homepage": "https://symfony.com",
  1001. "support": {
  1002. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  1003. },
  1004. "funding": [
  1005. {
  1006. "url": "https://symfony.com/sponsor",
  1007. "type": "custom"
  1008. },
  1009. {
  1010. "url": "https://github.com/fabpot",
  1011. "type": "github"
  1012. },
  1013. {
  1014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1015. "type": "tidelift"
  1016. }
  1017. ],
  1018. "time": "2022-05-05T16:45:39+00:00"
  1019. },
  1020. {
  1021. "name": "symfony/event-dispatcher-contracts",
  1022. "version": "v2.5.2",
  1023. "source": {
  1024. "type": "git",
  1025. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  1026. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  1027. },
  1028. "dist": {
  1029. "type": "zip",
  1030. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  1031. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  1032. "shasum": ""
  1033. },
  1034. "require": {
  1035. "php": ">=7.2.5",
  1036. "psr/event-dispatcher": "^1"
  1037. },
  1038. "suggest": {
  1039. "symfony/event-dispatcher-implementation": ""
  1040. },
  1041. "type": "library",
  1042. "extra": {
  1043. "branch-alias": {
  1044. "dev-main": "2.5-dev"
  1045. },
  1046. "thanks": {
  1047. "name": "symfony/contracts",
  1048. "url": "https://github.com/symfony/contracts"
  1049. }
  1050. },
  1051. "autoload": {
  1052. "psr-4": {
  1053. "Symfony\\Contracts\\EventDispatcher\\": ""
  1054. }
  1055. },
  1056. "notification-url": "https://packagist.org/downloads/",
  1057. "license": [
  1058. "MIT"
  1059. ],
  1060. "authors": [
  1061. {
  1062. "name": "Nicolas Grekas",
  1063. "email": "p@tchwork.com"
  1064. },
  1065. {
  1066. "name": "Symfony Community",
  1067. "homepage": "https://symfony.com/contributors"
  1068. }
  1069. ],
  1070. "description": "Generic abstractions related to dispatching event",
  1071. "homepage": "https://symfony.com",
  1072. "keywords": [
  1073. "abstractions",
  1074. "contracts",
  1075. "decoupling",
  1076. "interfaces",
  1077. "interoperability",
  1078. "standards"
  1079. ],
  1080. "support": {
  1081. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  1082. },
  1083. "funding": [
  1084. {
  1085. "url": "https://symfony.com/sponsor",
  1086. "type": "custom"
  1087. },
  1088. {
  1089. "url": "https://github.com/fabpot",
  1090. "type": "github"
  1091. },
  1092. {
  1093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1094. "type": "tidelift"
  1095. }
  1096. ],
  1097. "time": "2022-01-02T09:53:40+00:00"
  1098. },
  1099. {
  1100. "name": "symfony/filesystem",
  1101. "version": "v5.4.13",
  1102. "source": {
  1103. "type": "git",
  1104. "url": "https://github.com/symfony/filesystem.git",
  1105. "reference": "ac09569844a9109a5966b9438fc29113ce77cf51"
  1106. },
  1107. "dist": {
  1108. "type": "zip",
  1109. "url": "https://api.github.com/repos/symfony/filesystem/zipball/ac09569844a9109a5966b9438fc29113ce77cf51",
  1110. "reference": "ac09569844a9109a5966b9438fc29113ce77cf51",
  1111. "shasum": ""
  1112. },
  1113. "require": {
  1114. "php": ">=7.2.5",
  1115. "symfony/polyfill-ctype": "~1.8",
  1116. "symfony/polyfill-mbstring": "~1.8",
  1117. "symfony/polyfill-php80": "^1.16"
  1118. },
  1119. "type": "library",
  1120. "autoload": {
  1121. "psr-4": {
  1122. "Symfony\\Component\\Filesystem\\": ""
  1123. },
  1124. "exclude-from-classmap": [
  1125. "/Tests/"
  1126. ]
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "license": [
  1130. "MIT"
  1131. ],
  1132. "authors": [
  1133. {
  1134. "name": "Fabien Potencier",
  1135. "email": "fabien@symfony.com"
  1136. },
  1137. {
  1138. "name": "Symfony Community",
  1139. "homepage": "https://symfony.com/contributors"
  1140. }
  1141. ],
  1142. "description": "Provides basic utilities for the filesystem",
  1143. "homepage": "https://symfony.com",
  1144. "support": {
  1145. "source": "https://github.com/symfony/filesystem/tree/v5.4.13"
  1146. },
  1147. "funding": [
  1148. {
  1149. "url": "https://symfony.com/sponsor",
  1150. "type": "custom"
  1151. },
  1152. {
  1153. "url": "https://github.com/fabpot",
  1154. "type": "github"
  1155. },
  1156. {
  1157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1158. "type": "tidelift"
  1159. }
  1160. ],
  1161. "time": "2022-09-21T19:53:16+00:00"
  1162. },
  1163. {
  1164. "name": "symfony/finder",
  1165. "version": "v5.4.11",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/symfony/finder.git",
  1169. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
  1174. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
  1175. "shasum": ""
  1176. },
  1177. "require": {
  1178. "php": ">=7.2.5",
  1179. "symfony/deprecation-contracts": "^2.1|^3",
  1180. "symfony/polyfill-php80": "^1.16"
  1181. },
  1182. "type": "library",
  1183. "autoload": {
  1184. "psr-4": {
  1185. "Symfony\\Component\\Finder\\": ""
  1186. },
  1187. "exclude-from-classmap": [
  1188. "/Tests/"
  1189. ]
  1190. },
  1191. "notification-url": "https://packagist.org/downloads/",
  1192. "license": [
  1193. "MIT"
  1194. ],
  1195. "authors": [
  1196. {
  1197. "name": "Fabien Potencier",
  1198. "email": "fabien@symfony.com"
  1199. },
  1200. {
  1201. "name": "Symfony Community",
  1202. "homepage": "https://symfony.com/contributors"
  1203. }
  1204. ],
  1205. "description": "Finds files and directories via an intuitive fluent interface",
  1206. "homepage": "https://symfony.com",
  1207. "support": {
  1208. "source": "https://github.com/symfony/finder/tree/v5.4.11"
  1209. },
  1210. "funding": [
  1211. {
  1212. "url": "https://symfony.com/sponsor",
  1213. "type": "custom"
  1214. },
  1215. {
  1216. "url": "https://github.com/fabpot",
  1217. "type": "github"
  1218. },
  1219. {
  1220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1221. "type": "tidelift"
  1222. }
  1223. ],
  1224. "time": "2022-07-29T07:37:50+00:00"
  1225. },
  1226. {
  1227. "name": "symfony/options-resolver",
  1228. "version": "v5.4.11",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/symfony/options-resolver.git",
  1232. "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/54f14e36aa73cb8f7261d7686691fd4d75ea2690",
  1237. "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690",
  1238. "shasum": ""
  1239. },
  1240. "require": {
  1241. "php": ">=7.2.5",
  1242. "symfony/deprecation-contracts": "^2.1|^3",
  1243. "symfony/polyfill-php73": "~1.0",
  1244. "symfony/polyfill-php80": "^1.16"
  1245. },
  1246. "type": "library",
  1247. "autoload": {
  1248. "psr-4": {
  1249. "Symfony\\Component\\OptionsResolver\\": ""
  1250. },
  1251. "exclude-from-classmap": [
  1252. "/Tests/"
  1253. ]
  1254. },
  1255. "notification-url": "https://packagist.org/downloads/",
  1256. "license": [
  1257. "MIT"
  1258. ],
  1259. "authors": [
  1260. {
  1261. "name": "Fabien Potencier",
  1262. "email": "fabien@symfony.com"
  1263. },
  1264. {
  1265. "name": "Symfony Community",
  1266. "homepage": "https://symfony.com/contributors"
  1267. }
  1268. ],
  1269. "description": "Provides an improved replacement for the array_replace PHP function",
  1270. "homepage": "https://symfony.com",
  1271. "keywords": [
  1272. "config",
  1273. "configuration",
  1274. "options"
  1275. ],
  1276. "support": {
  1277. "source": "https://github.com/symfony/options-resolver/tree/v5.4.11"
  1278. },
  1279. "funding": [
  1280. {
  1281. "url": "https://symfony.com/sponsor",
  1282. "type": "custom"
  1283. },
  1284. {
  1285. "url": "https://github.com/fabpot",
  1286. "type": "github"
  1287. },
  1288. {
  1289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1290. "type": "tidelift"
  1291. }
  1292. ],
  1293. "time": "2022-07-20T13:00:38+00:00"
  1294. },
  1295. {
  1296. "name": "symfony/polyfill-ctype",
  1297. "version": "v1.26.0",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/symfony/polyfill-ctype.git",
  1301. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  1306. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "php": ">=7.1"
  1311. },
  1312. "provide": {
  1313. "ext-ctype": "*"
  1314. },
  1315. "suggest": {
  1316. "ext-ctype": "For best performance"
  1317. },
  1318. "type": "library",
  1319. "extra": {
  1320. "branch-alias": {
  1321. "dev-main": "1.26-dev"
  1322. },
  1323. "thanks": {
  1324. "name": "symfony/polyfill",
  1325. "url": "https://github.com/symfony/polyfill"
  1326. }
  1327. },
  1328. "autoload": {
  1329. "files": [
  1330. "bootstrap.php"
  1331. ],
  1332. "psr-4": {
  1333. "Symfony\\Polyfill\\Ctype\\": ""
  1334. }
  1335. },
  1336. "notification-url": "https://packagist.org/downloads/",
  1337. "license": [
  1338. "MIT"
  1339. ],
  1340. "authors": [
  1341. {
  1342. "name": "Gert de Pagter",
  1343. "email": "BackEndTea@gmail.com"
  1344. },
  1345. {
  1346. "name": "Symfony Community",
  1347. "homepage": "https://symfony.com/contributors"
  1348. }
  1349. ],
  1350. "description": "Symfony polyfill for ctype functions",
  1351. "homepage": "https://symfony.com",
  1352. "keywords": [
  1353. "compatibility",
  1354. "ctype",
  1355. "polyfill",
  1356. "portable"
  1357. ],
  1358. "support": {
  1359. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  1360. },
  1361. "funding": [
  1362. {
  1363. "url": "https://symfony.com/sponsor",
  1364. "type": "custom"
  1365. },
  1366. {
  1367. "url": "https://github.com/fabpot",
  1368. "type": "github"
  1369. },
  1370. {
  1371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1372. "type": "tidelift"
  1373. }
  1374. ],
  1375. "time": "2022-05-24T11:49:31+00:00"
  1376. },
  1377. {
  1378. "name": "symfony/polyfill-intl-grapheme",
  1379. "version": "v1.26.0",
  1380. "source": {
  1381. "type": "git",
  1382. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  1383. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  1384. },
  1385. "dist": {
  1386. "type": "zip",
  1387. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  1388. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  1389. "shasum": ""
  1390. },
  1391. "require": {
  1392. "php": ">=7.1"
  1393. },
  1394. "suggest": {
  1395. "ext-intl": "For best performance"
  1396. },
  1397. "type": "library",
  1398. "extra": {
  1399. "branch-alias": {
  1400. "dev-main": "1.26-dev"
  1401. },
  1402. "thanks": {
  1403. "name": "symfony/polyfill",
  1404. "url": "https://github.com/symfony/polyfill"
  1405. }
  1406. },
  1407. "autoload": {
  1408. "files": [
  1409. "bootstrap.php"
  1410. ],
  1411. "psr-4": {
  1412. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  1413. }
  1414. },
  1415. "notification-url": "https://packagist.org/downloads/",
  1416. "license": [
  1417. "MIT"
  1418. ],
  1419. "authors": [
  1420. {
  1421. "name": "Nicolas Grekas",
  1422. "email": "p@tchwork.com"
  1423. },
  1424. {
  1425. "name": "Symfony Community",
  1426. "homepage": "https://symfony.com/contributors"
  1427. }
  1428. ],
  1429. "description": "Symfony polyfill for intl's grapheme_* functions",
  1430. "homepage": "https://symfony.com",
  1431. "keywords": [
  1432. "compatibility",
  1433. "grapheme",
  1434. "intl",
  1435. "polyfill",
  1436. "portable",
  1437. "shim"
  1438. ],
  1439. "support": {
  1440. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  1441. },
  1442. "funding": [
  1443. {
  1444. "url": "https://symfony.com/sponsor",
  1445. "type": "custom"
  1446. },
  1447. {
  1448. "url": "https://github.com/fabpot",
  1449. "type": "github"
  1450. },
  1451. {
  1452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1453. "type": "tidelift"
  1454. }
  1455. ],
  1456. "time": "2022-05-24T11:49:31+00:00"
  1457. },
  1458. {
  1459. "name": "symfony/polyfill-intl-normalizer",
  1460. "version": "v1.26.0",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1464. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  1469. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  1470. "shasum": ""
  1471. },
  1472. "require": {
  1473. "php": ">=7.1"
  1474. },
  1475. "suggest": {
  1476. "ext-intl": "For best performance"
  1477. },
  1478. "type": "library",
  1479. "extra": {
  1480. "branch-alias": {
  1481. "dev-main": "1.26-dev"
  1482. },
  1483. "thanks": {
  1484. "name": "symfony/polyfill",
  1485. "url": "https://github.com/symfony/polyfill"
  1486. }
  1487. },
  1488. "autoload": {
  1489. "files": [
  1490. "bootstrap.php"
  1491. ],
  1492. "psr-4": {
  1493. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1494. },
  1495. "classmap": [
  1496. "Resources/stubs"
  1497. ]
  1498. },
  1499. "notification-url": "https://packagist.org/downloads/",
  1500. "license": [
  1501. "MIT"
  1502. ],
  1503. "authors": [
  1504. {
  1505. "name": "Nicolas Grekas",
  1506. "email": "p@tchwork.com"
  1507. },
  1508. {
  1509. "name": "Symfony Community",
  1510. "homepage": "https://symfony.com/contributors"
  1511. }
  1512. ],
  1513. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1514. "homepage": "https://symfony.com",
  1515. "keywords": [
  1516. "compatibility",
  1517. "intl",
  1518. "normalizer",
  1519. "polyfill",
  1520. "portable",
  1521. "shim"
  1522. ],
  1523. "support": {
  1524. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  1525. },
  1526. "funding": [
  1527. {
  1528. "url": "https://symfony.com/sponsor",
  1529. "type": "custom"
  1530. },
  1531. {
  1532. "url": "https://github.com/fabpot",
  1533. "type": "github"
  1534. },
  1535. {
  1536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1537. "type": "tidelift"
  1538. }
  1539. ],
  1540. "time": "2022-05-24T11:49:31+00:00"
  1541. },
  1542. {
  1543. "name": "symfony/polyfill-mbstring",
  1544. "version": "v1.26.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1548. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  1553. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "php": ">=7.1"
  1558. },
  1559. "provide": {
  1560. "ext-mbstring": "*"
  1561. },
  1562. "suggest": {
  1563. "ext-mbstring": "For best performance"
  1564. },
  1565. "type": "library",
  1566. "extra": {
  1567. "branch-alias": {
  1568. "dev-main": "1.26-dev"
  1569. },
  1570. "thanks": {
  1571. "name": "symfony/polyfill",
  1572. "url": "https://github.com/symfony/polyfill"
  1573. }
  1574. },
  1575. "autoload": {
  1576. "files": [
  1577. "bootstrap.php"
  1578. ],
  1579. "psr-4": {
  1580. "Symfony\\Polyfill\\Mbstring\\": ""
  1581. }
  1582. },
  1583. "notification-url": "https://packagist.org/downloads/",
  1584. "license": [
  1585. "MIT"
  1586. ],
  1587. "authors": [
  1588. {
  1589. "name": "Nicolas Grekas",
  1590. "email": "p@tchwork.com"
  1591. },
  1592. {
  1593. "name": "Symfony Community",
  1594. "homepage": "https://symfony.com/contributors"
  1595. }
  1596. ],
  1597. "description": "Symfony polyfill for the Mbstring extension",
  1598. "homepage": "https://symfony.com",
  1599. "keywords": [
  1600. "compatibility",
  1601. "mbstring",
  1602. "polyfill",
  1603. "portable",
  1604. "shim"
  1605. ],
  1606. "support": {
  1607. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  1608. },
  1609. "funding": [
  1610. {
  1611. "url": "https://symfony.com/sponsor",
  1612. "type": "custom"
  1613. },
  1614. {
  1615. "url": "https://github.com/fabpot",
  1616. "type": "github"
  1617. },
  1618. {
  1619. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1620. "type": "tidelift"
  1621. }
  1622. ],
  1623. "time": "2022-05-24T11:49:31+00:00"
  1624. },
  1625. {
  1626. "name": "symfony/polyfill-php73",
  1627. "version": "v1.26.0",
  1628. "source": {
  1629. "type": "git",
  1630. "url": "https://github.com/symfony/polyfill-php73.git",
  1631. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  1632. },
  1633. "dist": {
  1634. "type": "zip",
  1635. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  1636. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  1637. "shasum": ""
  1638. },
  1639. "require": {
  1640. "php": ">=7.1"
  1641. },
  1642. "type": "library",
  1643. "extra": {
  1644. "branch-alias": {
  1645. "dev-main": "1.26-dev"
  1646. },
  1647. "thanks": {
  1648. "name": "symfony/polyfill",
  1649. "url": "https://github.com/symfony/polyfill"
  1650. }
  1651. },
  1652. "autoload": {
  1653. "files": [
  1654. "bootstrap.php"
  1655. ],
  1656. "psr-4": {
  1657. "Symfony\\Polyfill\\Php73\\": ""
  1658. },
  1659. "classmap": [
  1660. "Resources/stubs"
  1661. ]
  1662. },
  1663. "notification-url": "https://packagist.org/downloads/",
  1664. "license": [
  1665. "MIT"
  1666. ],
  1667. "authors": [
  1668. {
  1669. "name": "Nicolas Grekas",
  1670. "email": "p@tchwork.com"
  1671. },
  1672. {
  1673. "name": "Symfony Community",
  1674. "homepage": "https://symfony.com/contributors"
  1675. }
  1676. ],
  1677. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  1678. "homepage": "https://symfony.com",
  1679. "keywords": [
  1680. "compatibility",
  1681. "polyfill",
  1682. "portable",
  1683. "shim"
  1684. ],
  1685. "support": {
  1686. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  1687. },
  1688. "funding": [
  1689. {
  1690. "url": "https://symfony.com/sponsor",
  1691. "type": "custom"
  1692. },
  1693. {
  1694. "url": "https://github.com/fabpot",
  1695. "type": "github"
  1696. },
  1697. {
  1698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1699. "type": "tidelift"
  1700. }
  1701. ],
  1702. "time": "2022-05-24T11:49:31+00:00"
  1703. },
  1704. {
  1705. "name": "symfony/polyfill-php80",
  1706. "version": "v1.26.0",
  1707. "source": {
  1708. "type": "git",
  1709. "url": "https://github.com/symfony/polyfill-php80.git",
  1710. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  1711. },
  1712. "dist": {
  1713. "type": "zip",
  1714. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  1715. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  1716. "shasum": ""
  1717. },
  1718. "require": {
  1719. "php": ">=7.1"
  1720. },
  1721. "type": "library",
  1722. "extra": {
  1723. "branch-alias": {
  1724. "dev-main": "1.26-dev"
  1725. },
  1726. "thanks": {
  1727. "name": "symfony/polyfill",
  1728. "url": "https://github.com/symfony/polyfill"
  1729. }
  1730. },
  1731. "autoload": {
  1732. "files": [
  1733. "bootstrap.php"
  1734. ],
  1735. "psr-4": {
  1736. "Symfony\\Polyfill\\Php80\\": ""
  1737. },
  1738. "classmap": [
  1739. "Resources/stubs"
  1740. ]
  1741. },
  1742. "notification-url": "https://packagist.org/downloads/",
  1743. "license": [
  1744. "MIT"
  1745. ],
  1746. "authors": [
  1747. {
  1748. "name": "Ion Bazan",
  1749. "email": "ion.bazan@gmail.com"
  1750. },
  1751. {
  1752. "name": "Nicolas Grekas",
  1753. "email": "p@tchwork.com"
  1754. },
  1755. {
  1756. "name": "Symfony Community",
  1757. "homepage": "https://symfony.com/contributors"
  1758. }
  1759. ],
  1760. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1761. "homepage": "https://symfony.com",
  1762. "keywords": [
  1763. "compatibility",
  1764. "polyfill",
  1765. "portable",
  1766. "shim"
  1767. ],
  1768. "support": {
  1769. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  1770. },
  1771. "funding": [
  1772. {
  1773. "url": "https://symfony.com/sponsor",
  1774. "type": "custom"
  1775. },
  1776. {
  1777. "url": "https://github.com/fabpot",
  1778. "type": "github"
  1779. },
  1780. {
  1781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1782. "type": "tidelift"
  1783. }
  1784. ],
  1785. "time": "2022-05-10T07:21:04+00:00"
  1786. },
  1787. {
  1788. "name": "symfony/polyfill-php81",
  1789. "version": "v1.26.0",
  1790. "source": {
  1791. "type": "git",
  1792. "url": "https://github.com/symfony/polyfill-php81.git",
  1793. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  1794. },
  1795. "dist": {
  1796. "type": "zip",
  1797. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  1798. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  1799. "shasum": ""
  1800. },
  1801. "require": {
  1802. "php": ">=7.1"
  1803. },
  1804. "type": "library",
  1805. "extra": {
  1806. "branch-alias": {
  1807. "dev-main": "1.26-dev"
  1808. },
  1809. "thanks": {
  1810. "name": "symfony/polyfill",
  1811. "url": "https://github.com/symfony/polyfill"
  1812. }
  1813. },
  1814. "autoload": {
  1815. "files": [
  1816. "bootstrap.php"
  1817. ],
  1818. "psr-4": {
  1819. "Symfony\\Polyfill\\Php81\\": ""
  1820. },
  1821. "classmap": [
  1822. "Resources/stubs"
  1823. ]
  1824. },
  1825. "notification-url": "https://packagist.org/downloads/",
  1826. "license": [
  1827. "MIT"
  1828. ],
  1829. "authors": [
  1830. {
  1831. "name": "Nicolas Grekas",
  1832. "email": "p@tchwork.com"
  1833. },
  1834. {
  1835. "name": "Symfony Community",
  1836. "homepage": "https://symfony.com/contributors"
  1837. }
  1838. ],
  1839. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  1840. "homepage": "https://symfony.com",
  1841. "keywords": [
  1842. "compatibility",
  1843. "polyfill",
  1844. "portable",
  1845. "shim"
  1846. ],
  1847. "support": {
  1848. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  1849. },
  1850. "funding": [
  1851. {
  1852. "url": "https://symfony.com/sponsor",
  1853. "type": "custom"
  1854. },
  1855. {
  1856. "url": "https://github.com/fabpot",
  1857. "type": "github"
  1858. },
  1859. {
  1860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1861. "type": "tidelift"
  1862. }
  1863. ],
  1864. "time": "2022-05-24T11:49:31+00:00"
  1865. },
  1866. {
  1867. "name": "symfony/process",
  1868. "version": "v5.4.11",
  1869. "source": {
  1870. "type": "git",
  1871. "url": "https://github.com/symfony/process.git",
  1872. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1"
  1873. },
  1874. "dist": {
  1875. "type": "zip",
  1876. "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1",
  1877. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1",
  1878. "shasum": ""
  1879. },
  1880. "require": {
  1881. "php": ">=7.2.5",
  1882. "symfony/polyfill-php80": "^1.16"
  1883. },
  1884. "type": "library",
  1885. "autoload": {
  1886. "psr-4": {
  1887. "Symfony\\Component\\Process\\": ""
  1888. },
  1889. "exclude-from-classmap": [
  1890. "/Tests/"
  1891. ]
  1892. },
  1893. "notification-url": "https://packagist.org/downloads/",
  1894. "license": [
  1895. "MIT"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "Fabien Potencier",
  1900. "email": "fabien@symfony.com"
  1901. },
  1902. {
  1903. "name": "Symfony Community",
  1904. "homepage": "https://symfony.com/contributors"
  1905. }
  1906. ],
  1907. "description": "Executes commands in sub-processes",
  1908. "homepage": "https://symfony.com",
  1909. "support": {
  1910. "source": "https://github.com/symfony/process/tree/v5.4.11"
  1911. },
  1912. "funding": [
  1913. {
  1914. "url": "https://symfony.com/sponsor",
  1915. "type": "custom"
  1916. },
  1917. {
  1918. "url": "https://github.com/fabpot",
  1919. "type": "github"
  1920. },
  1921. {
  1922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1923. "type": "tidelift"
  1924. }
  1925. ],
  1926. "time": "2022-06-27T16:58:25+00:00"
  1927. },
  1928. {
  1929. "name": "symfony/service-contracts",
  1930. "version": "v2.5.2",
  1931. "source": {
  1932. "type": "git",
  1933. "url": "https://github.com/symfony/service-contracts.git",
  1934. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  1935. },
  1936. "dist": {
  1937. "type": "zip",
  1938. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  1939. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  1940. "shasum": ""
  1941. },
  1942. "require": {
  1943. "php": ">=7.2.5",
  1944. "psr/container": "^1.1",
  1945. "symfony/deprecation-contracts": "^2.1|^3"
  1946. },
  1947. "conflict": {
  1948. "ext-psr": "<1.1|>=2"
  1949. },
  1950. "suggest": {
  1951. "symfony/service-implementation": ""
  1952. },
  1953. "type": "library",
  1954. "extra": {
  1955. "branch-alias": {
  1956. "dev-main": "2.5-dev"
  1957. },
  1958. "thanks": {
  1959. "name": "symfony/contracts",
  1960. "url": "https://github.com/symfony/contracts"
  1961. }
  1962. },
  1963. "autoload": {
  1964. "psr-4": {
  1965. "Symfony\\Contracts\\Service\\": ""
  1966. }
  1967. },
  1968. "notification-url": "https://packagist.org/downloads/",
  1969. "license": [
  1970. "MIT"
  1971. ],
  1972. "authors": [
  1973. {
  1974. "name": "Nicolas Grekas",
  1975. "email": "p@tchwork.com"
  1976. },
  1977. {
  1978. "name": "Symfony Community",
  1979. "homepage": "https://symfony.com/contributors"
  1980. }
  1981. ],
  1982. "description": "Generic abstractions related to writing services",
  1983. "homepage": "https://symfony.com",
  1984. "keywords": [
  1985. "abstractions",
  1986. "contracts",
  1987. "decoupling",
  1988. "interfaces",
  1989. "interoperability",
  1990. "standards"
  1991. ],
  1992. "support": {
  1993. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  1994. },
  1995. "funding": [
  1996. {
  1997. "url": "https://symfony.com/sponsor",
  1998. "type": "custom"
  1999. },
  2000. {
  2001. "url": "https://github.com/fabpot",
  2002. "type": "github"
  2003. },
  2004. {
  2005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2006. "type": "tidelift"
  2007. }
  2008. ],
  2009. "time": "2022-05-30T19:17:29+00:00"
  2010. },
  2011. {
  2012. "name": "symfony/stopwatch",
  2013. "version": "v5.4.13",
  2014. "source": {
  2015. "type": "git",
  2016. "url": "https://github.com/symfony/stopwatch.git",
  2017. "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69"
  2018. },
  2019. "dist": {
  2020. "type": "zip",
  2021. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/6df7a3effde34d81717bbef4591e5ffe32226d69",
  2022. "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69",
  2023. "shasum": ""
  2024. },
  2025. "require": {
  2026. "php": ">=7.2.5",
  2027. "symfony/service-contracts": "^1|^2|^3"
  2028. },
  2029. "type": "library",
  2030. "autoload": {
  2031. "psr-4": {
  2032. "Symfony\\Component\\Stopwatch\\": ""
  2033. },
  2034. "exclude-from-classmap": [
  2035. "/Tests/"
  2036. ]
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "MIT"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "Fabien Potencier",
  2045. "email": "fabien@symfony.com"
  2046. },
  2047. {
  2048. "name": "Symfony Community",
  2049. "homepage": "https://symfony.com/contributors"
  2050. }
  2051. ],
  2052. "description": "Provides a way to profile code",
  2053. "homepage": "https://symfony.com",
  2054. "support": {
  2055. "source": "https://github.com/symfony/stopwatch/tree/v5.4.13"
  2056. },
  2057. "funding": [
  2058. {
  2059. "url": "https://symfony.com/sponsor",
  2060. "type": "custom"
  2061. },
  2062. {
  2063. "url": "https://github.com/fabpot",
  2064. "type": "github"
  2065. },
  2066. {
  2067. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2068. "type": "tidelift"
  2069. }
  2070. ],
  2071. "time": "2022-09-28T13:19:49+00:00"
  2072. },
  2073. {
  2074. "name": "symfony/string",
  2075. "version": "v5.4.15",
  2076. "source": {
  2077. "type": "git",
  2078. "url": "https://github.com/symfony/string.git",
  2079. "reference": "571334ce9f687e3e6af72db4d3b2a9431e4fd9ed"
  2080. },
  2081. "dist": {
  2082. "type": "zip",
  2083. "url": "https://api.github.com/repos/symfony/string/zipball/571334ce9f687e3e6af72db4d3b2a9431e4fd9ed",
  2084. "reference": "571334ce9f687e3e6af72db4d3b2a9431e4fd9ed",
  2085. "shasum": ""
  2086. },
  2087. "require": {
  2088. "php": ">=7.2.5",
  2089. "symfony/polyfill-ctype": "~1.8",
  2090. "symfony/polyfill-intl-grapheme": "~1.0",
  2091. "symfony/polyfill-intl-normalizer": "~1.0",
  2092. "symfony/polyfill-mbstring": "~1.0",
  2093. "symfony/polyfill-php80": "~1.15"
  2094. },
  2095. "conflict": {
  2096. "symfony/translation-contracts": ">=3.0"
  2097. },
  2098. "require-dev": {
  2099. "symfony/error-handler": "^4.4|^5.0|^6.0",
  2100. "symfony/http-client": "^4.4|^5.0|^6.0",
  2101. "symfony/translation-contracts": "^1.1|^2",
  2102. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2103. },
  2104. "type": "library",
  2105. "autoload": {
  2106. "files": [
  2107. "Resources/functions.php"
  2108. ],
  2109. "psr-4": {
  2110. "Symfony\\Component\\String\\": ""
  2111. },
  2112. "exclude-from-classmap": [
  2113. "/Tests/"
  2114. ]
  2115. },
  2116. "notification-url": "https://packagist.org/downloads/",
  2117. "license": [
  2118. "MIT"
  2119. ],
  2120. "authors": [
  2121. {
  2122. "name": "Nicolas Grekas",
  2123. "email": "p@tchwork.com"
  2124. },
  2125. {
  2126. "name": "Symfony Community",
  2127. "homepage": "https://symfony.com/contributors"
  2128. }
  2129. ],
  2130. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  2131. "homepage": "https://symfony.com",
  2132. "keywords": [
  2133. "grapheme",
  2134. "i18n",
  2135. "string",
  2136. "unicode",
  2137. "utf-8",
  2138. "utf8"
  2139. ],
  2140. "support": {
  2141. "source": "https://github.com/symfony/string/tree/v5.4.15"
  2142. },
  2143. "funding": [
  2144. {
  2145. "url": "https://symfony.com/sponsor",
  2146. "type": "custom"
  2147. },
  2148. {
  2149. "url": "https://github.com/fabpot",
  2150. "type": "github"
  2151. },
  2152. {
  2153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2154. "type": "tidelift"
  2155. }
  2156. ],
  2157. "time": "2022-10-05T15:16:54+00:00"
  2158. }
  2159. ],
  2160. "packages-dev": [],
  2161. "aliases": [],
  2162. "minimum-stability": "stable",
  2163. "stability-flags": [],
  2164. "prefer-stable": false,
  2165. "prefer-lowest": false,
  2166. "platform": [],
  2167. "platform-dev": [],
  2168. "platform-overrides": {
  2169. "php": "7.4"
  2170. },
  2171. "plugin-api-version": "2.3.0"
  2172. }