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 72KB

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