composer.lock 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193
  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": "d3ce1c59e84bd5558195f2de16546945",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "consolidation/annotated-command",
  12. "version": "2.12.1",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/consolidation/annotated-command.git",
  16. "reference": "0ee361762df2274f360c085e3239784a53f850b5"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/0ee361762df2274f360c085e3239784a53f850b5",
  21. "reference": "0ee361762df2274f360c085e3239784a53f850b5",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "consolidation/output-formatters": "^3.5.1",
  26. "php": ">=5.4.5",
  27. "psr/log": "^1",
  28. "symfony/console": "^2.8|^3|^4",
  29. "symfony/event-dispatcher": "^2.5|^3|^4",
  30. "symfony/finder": "^2.5|^3|^4|^5"
  31. },
  32. "require-dev": {
  33. "g1a/composer-test-scenarios": "^3",
  34. "php-coveralls/php-coveralls": "^1",
  35. "phpunit/phpunit": "^6",
  36. "squizlabs/php_codesniffer": "^2.7"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "scenarios": {
  41. "finder5": {
  42. "require": {
  43. "symfony/finder": "^5"
  44. },
  45. "config": {
  46. "platform": {
  47. "php": "7.2.5"
  48. }
  49. }
  50. },
  51. "symfony4": {
  52. "require": {
  53. "symfony/console": "^4.0"
  54. },
  55. "config": {
  56. "platform": {
  57. "php": "7.1.3"
  58. }
  59. }
  60. },
  61. "symfony2": {
  62. "require": {
  63. "symfony/console": "^2.8"
  64. },
  65. "require-dev": {
  66. "phpunit/phpunit": "^4.8.36"
  67. },
  68. "remove": [
  69. "php-coveralls/php-coveralls"
  70. ],
  71. "config": {
  72. "platform": {
  73. "php": "5.4.8"
  74. }
  75. },
  76. "scenario-options": {
  77. "create-lockfile": "false"
  78. }
  79. },
  80. "phpunit4": {
  81. "require-dev": {
  82. "phpunit/phpunit": "^4.8.36"
  83. },
  84. "remove": [
  85. "php-coveralls/php-coveralls"
  86. ],
  87. "config": {
  88. "platform": {
  89. "php": "5.4.8"
  90. }
  91. }
  92. }
  93. },
  94. "branch-alias": {
  95. "dev-master": "2.x-dev"
  96. }
  97. },
  98. "autoload": {
  99. "psr-4": {
  100. "Consolidation\\AnnotatedCommand\\": "src"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "authors": [
  108. {
  109. "name": "Greg Anderson",
  110. "email": "greg.1.anderson@greenknowe.org"
  111. }
  112. ],
  113. "description": "Initialize Symfony Console commands from annotated command class methods.",
  114. "support": {
  115. "issues": "https://github.com/consolidation/annotated-command/issues",
  116. "source": "https://github.com/consolidation/annotated-command/tree/2.12.1"
  117. },
  118. "time": "2020-10-11T04:30:03+00:00"
  119. },
  120. {
  121. "name": "consolidation/config",
  122. "version": "1.2.1",
  123. "source": {
  124. "type": "git",
  125. "url": "https://github.com/consolidation/config.git",
  126. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  127. },
  128. "dist": {
  129. "type": "zip",
  130. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  131. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  132. "shasum": ""
  133. },
  134. "require": {
  135. "dflydev/dot-access-data": "^1.1.0",
  136. "grasmash/expander": "^1",
  137. "php": ">=5.4.0"
  138. },
  139. "require-dev": {
  140. "g1a/composer-test-scenarios": "^3",
  141. "php-coveralls/php-coveralls": "^1",
  142. "phpunit/phpunit": "^5",
  143. "squizlabs/php_codesniffer": "2.*",
  144. "symfony/console": "^2.5|^3|^4",
  145. "symfony/yaml": "^2.8.11|^3|^4"
  146. },
  147. "suggest": {
  148. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  149. },
  150. "type": "library",
  151. "extra": {
  152. "scenarios": {
  153. "symfony4": {
  154. "require-dev": {
  155. "symfony/console": "^4.0"
  156. },
  157. "config": {
  158. "platform": {
  159. "php": "7.1.3"
  160. }
  161. }
  162. },
  163. "symfony2": {
  164. "require-dev": {
  165. "symfony/console": "^2.8",
  166. "symfony/event-dispatcher": "^2.8",
  167. "phpunit/phpunit": "^4.8.36"
  168. },
  169. "remove": [
  170. "php-coveralls/php-coveralls"
  171. ],
  172. "config": {
  173. "platform": {
  174. "php": "5.4.8"
  175. }
  176. }
  177. }
  178. },
  179. "branch-alias": {
  180. "dev-master": "1.x-dev"
  181. }
  182. },
  183. "autoload": {
  184. "psr-4": {
  185. "Consolidation\\Config\\": "src"
  186. }
  187. },
  188. "notification-url": "https://packagist.org/downloads/",
  189. "license": [
  190. "MIT"
  191. ],
  192. "authors": [
  193. {
  194. "name": "Greg Anderson",
  195. "email": "greg.1.anderson@greenknowe.org"
  196. }
  197. ],
  198. "description": "Provide configuration services for a commandline tool.",
  199. "support": {
  200. "issues": "https://github.com/consolidation/config/issues",
  201. "source": "https://github.com/consolidation/config/tree/master"
  202. },
  203. "time": "2019-03-03T19:37:04+00:00"
  204. },
  205. {
  206. "name": "consolidation/log",
  207. "version": "1.1.1",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/consolidation/log.git",
  211. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  216. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  217. "shasum": ""
  218. },
  219. "require": {
  220. "php": ">=5.4.5",
  221. "psr/log": "^1.0",
  222. "symfony/console": "^2.8|^3|^4"
  223. },
  224. "require-dev": {
  225. "g1a/composer-test-scenarios": "^3",
  226. "php-coveralls/php-coveralls": "^1",
  227. "phpunit/phpunit": "^6",
  228. "squizlabs/php_codesniffer": "^2"
  229. },
  230. "type": "library",
  231. "extra": {
  232. "scenarios": {
  233. "symfony4": {
  234. "require": {
  235. "symfony/console": "^4.0"
  236. },
  237. "config": {
  238. "platform": {
  239. "php": "7.1.3"
  240. }
  241. }
  242. },
  243. "symfony2": {
  244. "require": {
  245. "symfony/console": "^2.8"
  246. },
  247. "require-dev": {
  248. "phpunit/phpunit": "^4.8.36"
  249. },
  250. "remove": [
  251. "php-coveralls/php-coveralls"
  252. ],
  253. "config": {
  254. "platform": {
  255. "php": "5.4.8"
  256. }
  257. }
  258. },
  259. "phpunit4": {
  260. "require-dev": {
  261. "phpunit/phpunit": "^4.8.36"
  262. },
  263. "remove": [
  264. "php-coveralls/php-coveralls"
  265. ],
  266. "config": {
  267. "platform": {
  268. "php": "5.4.8"
  269. }
  270. }
  271. }
  272. },
  273. "branch-alias": {
  274. "dev-master": "1.x-dev"
  275. }
  276. },
  277. "autoload": {
  278. "psr-4": {
  279. "Consolidation\\Log\\": "src"
  280. }
  281. },
  282. "notification-url": "https://packagist.org/downloads/",
  283. "license": [
  284. "MIT"
  285. ],
  286. "authors": [
  287. {
  288. "name": "Greg Anderson",
  289. "email": "greg.1.anderson@greenknowe.org"
  290. }
  291. ],
  292. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  293. "support": {
  294. "issues": "https://github.com/consolidation/log/issues",
  295. "source": "https://github.com/consolidation/log/tree/master"
  296. },
  297. "time": "2019-01-01T17:30:51+00:00"
  298. },
  299. {
  300. "name": "consolidation/output-formatters",
  301. "version": "3.5.1",
  302. "source": {
  303. "type": "git",
  304. "url": "https://github.com/consolidation/output-formatters.git",
  305. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196"
  306. },
  307. "dist": {
  308. "type": "zip",
  309. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0d38f13051ef05c223a2bb8e962d668e24785196",
  310. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196",
  311. "shasum": ""
  312. },
  313. "require": {
  314. "dflydev/dot-access-data": "^1.1.0",
  315. "php": ">=5.4.0",
  316. "symfony/console": "^2.8|^3|^4",
  317. "symfony/finder": "^2.5|^3|^4|^5"
  318. },
  319. "require-dev": {
  320. "g1a/composer-test-scenarios": "^3",
  321. "php-coveralls/php-coveralls": "^1",
  322. "phpunit/phpunit": "^5.7.27",
  323. "squizlabs/php_codesniffer": "^2.7",
  324. "symfony/var-dumper": "^2.8|^3|^4",
  325. "victorjonsson/markdowndocs": "^1.3"
  326. },
  327. "suggest": {
  328. "symfony/var-dumper": "For using the var_dump formatter"
  329. },
  330. "type": "library",
  331. "extra": {
  332. "scenarios": {
  333. "finder5": {
  334. "require": {
  335. "symfony/finder": "^5"
  336. },
  337. "config": {
  338. "platform": {
  339. "php": "7.2.5"
  340. }
  341. }
  342. },
  343. "symfony4": {
  344. "require": {
  345. "symfony/console": "^4.0"
  346. },
  347. "require-dev": {
  348. "phpunit/phpunit": "^6"
  349. },
  350. "config": {
  351. "platform": {
  352. "php": "7.1.3"
  353. }
  354. }
  355. },
  356. "symfony3": {
  357. "require": {
  358. "symfony/console": "^3.4",
  359. "symfony/finder": "^3.4",
  360. "symfony/var-dumper": "^3.4"
  361. },
  362. "config": {
  363. "platform": {
  364. "php": "5.6.32"
  365. }
  366. }
  367. },
  368. "symfony2": {
  369. "require": {
  370. "symfony/console": "^2.8"
  371. },
  372. "require-dev": {
  373. "phpunit/phpunit": "^4.8.36"
  374. },
  375. "remove": [
  376. "php-coveralls/php-coveralls"
  377. ],
  378. "config": {
  379. "platform": {
  380. "php": "5.4.8"
  381. }
  382. },
  383. "scenario-options": {
  384. "create-lockfile": "false"
  385. }
  386. }
  387. },
  388. "branch-alias": {
  389. "dev-master": "3.x-dev"
  390. }
  391. },
  392. "autoload": {
  393. "psr-4": {
  394. "Consolidation\\OutputFormatters\\": "src"
  395. }
  396. },
  397. "notification-url": "https://packagist.org/downloads/",
  398. "license": [
  399. "MIT"
  400. ],
  401. "authors": [
  402. {
  403. "name": "Greg Anderson",
  404. "email": "greg.1.anderson@greenknowe.org"
  405. }
  406. ],
  407. "description": "Format text by applying transformations provided by plug-in formatters.",
  408. "support": {
  409. "issues": "https://github.com/consolidation/output-formatters/issues",
  410. "source": "https://github.com/consolidation/output-formatters/tree/3.5.1"
  411. },
  412. "time": "2020-10-11T04:15:32+00:00"
  413. },
  414. {
  415. "name": "consolidation/robo",
  416. "version": "1.4.13",
  417. "source": {
  418. "type": "git",
  419. "url": "https://github.com/consolidation/Robo.git",
  420. "reference": "fd28dcca1b935950ece26e63541fbdeeb09f7343"
  421. },
  422. "dist": {
  423. "type": "zip",
  424. "url": "https://api.github.com/repos/consolidation/Robo/zipball/fd28dcca1b935950ece26e63541fbdeeb09f7343",
  425. "reference": "fd28dcca1b935950ece26e63541fbdeeb09f7343",
  426. "shasum": ""
  427. },
  428. "require": {
  429. "consolidation/annotated-command": "^2.12.1|^4.1",
  430. "consolidation/config": "^1.2.1",
  431. "consolidation/log": "^1.1.1|^2",
  432. "consolidation/output-formatters": "^3.5.1|^4.1",
  433. "consolidation/self-update": "^1.1.5",
  434. "grasmash/yaml-expander": "^1.4",
  435. "league/container": "^2.4.1",
  436. "php": ">=5.5.0",
  437. "symfony/console": "^2.8|^3|^4",
  438. "symfony/event-dispatcher": "^2.5|^3|^4",
  439. "symfony/filesystem": "^2.5|^3|^4",
  440. "symfony/finder": "^2.5|^3|^4|^5",
  441. "symfony/process": "^2.5|^3|^4"
  442. },
  443. "replace": {
  444. "codegyre/robo": "< 1.0"
  445. },
  446. "require-dev": {
  447. "g1a/composer-test-scenarios": "^3",
  448. "natxet/cssmin": "3.0.4",
  449. "patchwork/jsqueeze": "^2",
  450. "pear/archive_tar": "^1.4.4",
  451. "php-coveralls/php-coveralls": "^1",
  452. "phpunit/phpunit": "^5.7.27",
  453. "squizlabs/php_codesniffer": "^3"
  454. },
  455. "suggest": {
  456. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  457. "natxet/CssMin": "For minifying CSS files in taskMinify",
  458. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  459. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  460. },
  461. "bin": [
  462. "robo"
  463. ],
  464. "type": "library",
  465. "extra": {
  466. "scenarios": {
  467. "finder5": {
  468. "require": {
  469. "symfony/finder": "^5"
  470. },
  471. "config": {
  472. "platform": {
  473. "php": "7.2.5"
  474. }
  475. }
  476. },
  477. "symfony4": {
  478. "require": {
  479. "symfony/console": "^4"
  480. },
  481. "config": {
  482. "platform": {
  483. "php": "7.1.3"
  484. }
  485. }
  486. },
  487. "symfony2": {
  488. "require": {
  489. "symfony/console": "^2.8"
  490. },
  491. "require-dev": {
  492. "phpunit/phpunit": "^4.8.36"
  493. },
  494. "remove": [
  495. "php-coveralls/php-coveralls"
  496. ],
  497. "config": {
  498. "platform": {
  499. "php": "5.5.9"
  500. }
  501. },
  502. "scenario-options": {
  503. "create-lockfile": "false"
  504. }
  505. }
  506. },
  507. "branch-alias": {
  508. "dev-master": "1.x-dev"
  509. }
  510. },
  511. "autoload": {
  512. "psr-4": {
  513. "Robo\\": "src"
  514. }
  515. },
  516. "notification-url": "https://packagist.org/downloads/",
  517. "license": [
  518. "MIT"
  519. ],
  520. "authors": [
  521. {
  522. "name": "Davert",
  523. "email": "davert.php@resend.cc"
  524. }
  525. ],
  526. "description": "Modern task runner",
  527. "support": {
  528. "issues": "https://github.com/consolidation/Robo/issues",
  529. "source": "https://github.com/consolidation/Robo/tree/1.4.13"
  530. },
  531. "time": "2020-10-11T04:51:34+00:00"
  532. },
  533. {
  534. "name": "consolidation/self-update",
  535. "version": "1.2.0",
  536. "source": {
  537. "type": "git",
  538. "url": "https://github.com/consolidation/self-update.git",
  539. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  540. },
  541. "dist": {
  542. "type": "zip",
  543. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  544. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  545. "shasum": ""
  546. },
  547. "require": {
  548. "php": ">=5.5.0",
  549. "symfony/console": "^2.8|^3|^4|^5",
  550. "symfony/filesystem": "^2.5|^3|^4|^5"
  551. },
  552. "bin": [
  553. "scripts/release"
  554. ],
  555. "type": "library",
  556. "extra": {
  557. "branch-alias": {
  558. "dev-master": "1.x-dev"
  559. }
  560. },
  561. "autoload": {
  562. "psr-4": {
  563. "SelfUpdate\\": "src"
  564. }
  565. },
  566. "notification-url": "https://packagist.org/downloads/",
  567. "license": [
  568. "MIT"
  569. ],
  570. "authors": [
  571. {
  572. "name": "Alexander Menk",
  573. "email": "menk@mestrona.net"
  574. },
  575. {
  576. "name": "Greg Anderson",
  577. "email": "greg.1.anderson@greenknowe.org"
  578. }
  579. ],
  580. "description": "Provides a self:update command for Symfony Console applications.",
  581. "support": {
  582. "issues": "https://github.com/consolidation/self-update/issues",
  583. "source": "https://github.com/consolidation/self-update/tree/1.2.0"
  584. },
  585. "time": "2020-04-13T02:49:20+00:00"
  586. },
  587. {
  588. "name": "container-interop/container-interop",
  589. "version": "1.2.0",
  590. "source": {
  591. "type": "git",
  592. "url": "https://github.com/container-interop/container-interop.git",
  593. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  594. },
  595. "dist": {
  596. "type": "zip",
  597. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  598. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  599. "shasum": ""
  600. },
  601. "require": {
  602. "psr/container": "^1.0"
  603. },
  604. "type": "library",
  605. "autoload": {
  606. "psr-4": {
  607. "Interop\\Container\\": "src/Interop/Container/"
  608. }
  609. },
  610. "notification-url": "https://packagist.org/downloads/",
  611. "license": [
  612. "MIT"
  613. ],
  614. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  615. "homepage": "https://github.com/container-interop/container-interop",
  616. "support": {
  617. "issues": "https://github.com/container-interop/container-interop/issues",
  618. "source": "https://github.com/container-interop/container-interop/tree/master"
  619. },
  620. "abandoned": "psr/container",
  621. "time": "2017-02-14T19:40:03+00:00"
  622. },
  623. {
  624. "name": "dealerdirect/phpcodesniffer-composer-installer",
  625. "version": "v0.7.1",
  626. "source": {
  627. "type": "git",
  628. "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
  629. "reference": "fe390591e0241955f22eb9ba327d137e501c771c"
  630. },
  631. "dist": {
  632. "type": "zip",
  633. "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/fe390591e0241955f22eb9ba327d137e501c771c",
  634. "reference": "fe390591e0241955f22eb9ba327d137e501c771c",
  635. "shasum": ""
  636. },
  637. "require": {
  638. "composer-plugin-api": "^1.0 || ^2.0",
  639. "php": ">=5.3",
  640. "squizlabs/php_codesniffer": "^2.0 || ^3.0 || ^4.0"
  641. },
  642. "require-dev": {
  643. "composer/composer": "*",
  644. "phpcompatibility/php-compatibility": "^9.0",
  645. "sensiolabs/security-checker": "^4.1.0"
  646. },
  647. "type": "composer-plugin",
  648. "extra": {
  649. "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  650. },
  651. "autoload": {
  652. "psr-4": {
  653. "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  654. }
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Franck Nijhof",
  663. "email": "franck.nijhof@dealerdirect.com",
  664. "homepage": "http://www.frenck.nl",
  665. "role": "Developer / IT Manager"
  666. }
  667. ],
  668. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  669. "homepage": "http://www.dealerdirect.com",
  670. "keywords": [
  671. "PHPCodeSniffer",
  672. "PHP_CodeSniffer",
  673. "code quality",
  674. "codesniffer",
  675. "composer",
  676. "installer",
  677. "phpcs",
  678. "plugin",
  679. "qa",
  680. "quality",
  681. "standard",
  682. "standards",
  683. "style guide",
  684. "stylecheck",
  685. "tests"
  686. ],
  687. "support": {
  688. "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",
  689. "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"
  690. },
  691. "time": "2020-12-07T18:04:37+00:00"
  692. },
  693. {
  694. "name": "dflydev/dot-access-data",
  695. "version": "v1.1.0",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  699. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  704. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  705. "shasum": ""
  706. },
  707. "require": {
  708. "php": ">=5.3.2"
  709. },
  710. "type": "library",
  711. "extra": {
  712. "branch-alias": {
  713. "dev-master": "1.0-dev"
  714. }
  715. },
  716. "autoload": {
  717. "psr-0": {
  718. "Dflydev\\DotAccessData": "src"
  719. }
  720. },
  721. "notification-url": "https://packagist.org/downloads/",
  722. "license": [
  723. "MIT"
  724. ],
  725. "authors": [
  726. {
  727. "name": "Dragonfly Development Inc.",
  728. "email": "info@dflydev.com",
  729. "homepage": "http://dflydev.com"
  730. },
  731. {
  732. "name": "Beau Simensen",
  733. "email": "beau@dflydev.com",
  734. "homepage": "http://beausimensen.com"
  735. },
  736. {
  737. "name": "Carlos Frutos",
  738. "email": "carlos@kiwing.it",
  739. "homepage": "https://github.com/cfrutos"
  740. }
  741. ],
  742. "description": "Given a deep data structure, access data by dot notation.",
  743. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  744. "keywords": [
  745. "access",
  746. "data",
  747. "dot",
  748. "notation"
  749. ],
  750. "support": {
  751. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  752. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
  753. },
  754. "time": "2017-01-20T21:14:22+00:00"
  755. },
  756. {
  757. "name": "glpi-project/coding-standard",
  758. "version": "0.8",
  759. "source": {
  760. "type": "git",
  761. "url": "https://github.com/glpi-project/coding-standard.git",
  762. "reference": "a34ec2abf52e720ef700f59a91a4dde963b9f33e"
  763. },
  764. "dist": {
  765. "type": "zip",
  766. "url": "https://api.github.com/repos/glpi-project/coding-standard/zipball/a34ec2abf52e720ef700f59a91a4dde963b9f33e",
  767. "reference": "a34ec2abf52e720ef700f59a91a4dde963b9f33e",
  768. "shasum": ""
  769. },
  770. "require": {
  771. "slevomat/coding-standard": "^6.3",
  772. "squizlabs/php_codesniffer": "^3.5.5"
  773. },
  774. "type": "library",
  775. "notification-url": "https://packagist.org/downloads/",
  776. "license": [
  777. "GPL-2.0-or-later"
  778. ],
  779. "authors": [
  780. {
  781. "name": "Teclib'",
  782. "email": "glpi@teclib.com",
  783. "homepage": "https://teclib.com"
  784. }
  785. ],
  786. "description": "GLPI PHP CodeSniffer Coding Standard",
  787. "keywords": [
  788. "codesniffer",
  789. "glpi",
  790. "phpcs"
  791. ],
  792. "support": {
  793. "issues": "https://github.com/glpi-project/coding-standard/issues",
  794. "source": "https://github.com/glpi-project/coding-standard"
  795. },
  796. "time": "2020-06-03T08:54:27+00:00"
  797. },
  798. {
  799. "name": "grasmash/expander",
  800. "version": "1.0.0",
  801. "source": {
  802. "type": "git",
  803. "url": "https://github.com/grasmash/expander.git",
  804. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  805. },
  806. "dist": {
  807. "type": "zip",
  808. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  809. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  810. "shasum": ""
  811. },
  812. "require": {
  813. "dflydev/dot-access-data": "^1.1.0",
  814. "php": ">=5.4"
  815. },
  816. "require-dev": {
  817. "greg-1-anderson/composer-test-scenarios": "^1",
  818. "phpunit/phpunit": "^4|^5.5.4",
  819. "satooshi/php-coveralls": "^1.0.2|dev-master",
  820. "squizlabs/php_codesniffer": "^2.7"
  821. },
  822. "type": "library",
  823. "extra": {
  824. "branch-alias": {
  825. "dev-master": "1.x-dev"
  826. }
  827. },
  828. "autoload": {
  829. "psr-4": {
  830. "Grasmash\\Expander\\": "src/"
  831. }
  832. },
  833. "notification-url": "https://packagist.org/downloads/",
  834. "license": [
  835. "MIT"
  836. ],
  837. "authors": [
  838. {
  839. "name": "Matthew Grasmick"
  840. }
  841. ],
  842. "description": "Expands internal property references in PHP arrays file.",
  843. "support": {
  844. "issues": "https://github.com/grasmash/expander/issues",
  845. "source": "https://github.com/grasmash/expander/tree/master"
  846. },
  847. "time": "2017-12-21T22:14:55+00:00"
  848. },
  849. {
  850. "name": "grasmash/yaml-expander",
  851. "version": "1.4.0",
  852. "source": {
  853. "type": "git",
  854. "url": "https://github.com/grasmash/yaml-expander.git",
  855. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  856. },
  857. "dist": {
  858. "type": "zip",
  859. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  860. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  861. "shasum": ""
  862. },
  863. "require": {
  864. "dflydev/dot-access-data": "^1.1.0",
  865. "php": ">=5.4",
  866. "symfony/yaml": "^2.8.11|^3|^4"
  867. },
  868. "require-dev": {
  869. "greg-1-anderson/composer-test-scenarios": "^1",
  870. "phpunit/phpunit": "^4.8|^5.5.4",
  871. "satooshi/php-coveralls": "^1.0.2|dev-master",
  872. "squizlabs/php_codesniffer": "^2.7"
  873. },
  874. "type": "library",
  875. "extra": {
  876. "branch-alias": {
  877. "dev-master": "1.x-dev"
  878. }
  879. },
  880. "autoload": {
  881. "psr-4": {
  882. "Grasmash\\YamlExpander\\": "src/"
  883. }
  884. },
  885. "notification-url": "https://packagist.org/downloads/",
  886. "license": [
  887. "MIT"
  888. ],
  889. "authors": [
  890. {
  891. "name": "Matthew Grasmick"
  892. }
  893. ],
  894. "description": "Expands internal property references in a yaml file.",
  895. "support": {
  896. "issues": "https://github.com/grasmash/yaml-expander/issues",
  897. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  898. },
  899. "time": "2017-12-16T16:06:03+00:00"
  900. },
  901. {
  902. "name": "league/container",
  903. "version": "2.4.1",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/thephpleague/container.git",
  907. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  912. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "container-interop/container-interop": "^1.2",
  917. "php": "^5.4.0 || ^7.0"
  918. },
  919. "provide": {
  920. "container-interop/container-interop-implementation": "^1.2",
  921. "psr/container-implementation": "^1.0"
  922. },
  923. "replace": {
  924. "orno/di": "~2.0"
  925. },
  926. "require-dev": {
  927. "phpunit/phpunit": "4.*"
  928. },
  929. "type": "library",
  930. "extra": {
  931. "branch-alias": {
  932. "dev-2.x": "2.x-dev",
  933. "dev-1.x": "1.x-dev"
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "League\\Container\\": "src"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "Phil Bennett",
  948. "email": "philipobenito@gmail.com",
  949. "homepage": "http://www.philipobenito.com",
  950. "role": "Developer"
  951. }
  952. ],
  953. "description": "A fast and intuitive dependency injection container.",
  954. "homepage": "https://github.com/thephpleague/container",
  955. "keywords": [
  956. "container",
  957. "dependency",
  958. "di",
  959. "injection",
  960. "league",
  961. "provider",
  962. "service"
  963. ],
  964. "support": {
  965. "issues": "https://github.com/thephpleague/container/issues",
  966. "source": "https://github.com/thephpleague/container/tree/2.x"
  967. },
  968. "time": "2017-05-10T09:20:27+00:00"
  969. },
  970. {
  971. "name": "pear/archive_tar",
  972. "version": "1.4.14",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/pear/Archive_Tar.git",
  976. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  981. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "pear/pear-core-minimal": "^1.10.0alpha2",
  986. "php": ">=5.2.0"
  987. },
  988. "require-dev": {
  989. "phpunit/phpunit": "*"
  990. },
  991. "suggest": {
  992. "ext-bz2": "Bz2 compression support.",
  993. "ext-xz": "Lzma2 compression support.",
  994. "ext-zlib": "Gzip compression support."
  995. },
  996. "type": "library",
  997. "extra": {
  998. "branch-alias": {
  999. "dev-master": "1.4.x-dev"
  1000. }
  1001. },
  1002. "autoload": {
  1003. "psr-0": {
  1004. "Archive_Tar": ""
  1005. }
  1006. },
  1007. "notification-url": "https://packagist.org/downloads/",
  1008. "include-path": [
  1009. "./"
  1010. ],
  1011. "license": [
  1012. "BSD-3-Clause"
  1013. ],
  1014. "authors": [
  1015. {
  1016. "name": "Vincent Blavet",
  1017. "email": "vincent@phpconcept.net"
  1018. },
  1019. {
  1020. "name": "Greg Beaver",
  1021. "email": "greg@chiaraquartet.net"
  1022. },
  1023. {
  1024. "name": "Michiel Rook",
  1025. "email": "mrook@php.net"
  1026. }
  1027. ],
  1028. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  1029. "homepage": "https://github.com/pear/Archive_Tar",
  1030. "keywords": [
  1031. "archive",
  1032. "tar"
  1033. ],
  1034. "support": {
  1035. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  1036. "source": "https://github.com/pear/Archive_Tar"
  1037. },
  1038. "funding": [
  1039. {
  1040. "url": "https://github.com/mrook",
  1041. "type": "github"
  1042. },
  1043. {
  1044. "url": "https://www.patreon.com/michielrook",
  1045. "type": "patreon"
  1046. }
  1047. ],
  1048. "time": "2021-07-20T13:53:39+00:00"
  1049. },
  1050. {
  1051. "name": "pear/console_getopt",
  1052. "version": "v1.4.3",
  1053. "source": {
  1054. "type": "git",
  1055. "url": "https://github.com/pear/Console_Getopt.git",
  1056. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  1057. },
  1058. "dist": {
  1059. "type": "zip",
  1060. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  1061. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  1062. "shasum": ""
  1063. },
  1064. "type": "library",
  1065. "autoload": {
  1066. "psr-0": {
  1067. "Console": "./"
  1068. }
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "include-path": [
  1072. "./"
  1073. ],
  1074. "license": [
  1075. "BSD-2-Clause"
  1076. ],
  1077. "authors": [
  1078. {
  1079. "name": "Andrei Zmievski",
  1080. "email": "andrei@php.net",
  1081. "role": "Lead"
  1082. },
  1083. {
  1084. "name": "Stig Bakken",
  1085. "email": "stig@php.net",
  1086. "role": "Developer"
  1087. },
  1088. {
  1089. "name": "Greg Beaver",
  1090. "email": "cellog@php.net",
  1091. "role": "Helper"
  1092. }
  1093. ],
  1094. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  1095. "support": {
  1096. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  1097. "source": "https://github.com/pear/Console_Getopt"
  1098. },
  1099. "time": "2019-11-20T18:27:48+00:00"
  1100. },
  1101. {
  1102. "name": "pear/pear-core-minimal",
  1103. "version": "v1.10.10",
  1104. "source": {
  1105. "type": "git",
  1106. "url": "https://github.com/pear/pear-core-minimal.git",
  1107. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  1108. },
  1109. "dist": {
  1110. "type": "zip",
  1111. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  1112. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  1113. "shasum": ""
  1114. },
  1115. "require": {
  1116. "pear/console_getopt": "~1.4",
  1117. "pear/pear_exception": "~1.0"
  1118. },
  1119. "replace": {
  1120. "rsky/pear-core-min": "self.version"
  1121. },
  1122. "type": "library",
  1123. "autoload": {
  1124. "psr-0": {
  1125. "": "src/"
  1126. }
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "include-path": [
  1130. "src/"
  1131. ],
  1132. "license": [
  1133. "BSD-3-Clause"
  1134. ],
  1135. "authors": [
  1136. {
  1137. "name": "Christian Weiske",
  1138. "email": "cweiske@php.net",
  1139. "role": "Lead"
  1140. }
  1141. ],
  1142. "description": "Minimal set of PEAR core files to be used as composer dependency",
  1143. "support": {
  1144. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  1145. "source": "https://github.com/pear/pear-core-minimal"
  1146. },
  1147. "time": "2019-11-19T19:00:24+00:00"
  1148. },
  1149. {
  1150. "name": "pear/pear_exception",
  1151. "version": "v1.0.2",
  1152. "source": {
  1153. "type": "git",
  1154. "url": "https://github.com/pear/PEAR_Exception.git",
  1155. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  1156. },
  1157. "dist": {
  1158. "type": "zip",
  1159. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  1160. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  1161. "shasum": ""
  1162. },
  1163. "require": {
  1164. "php": ">=5.2.0"
  1165. },
  1166. "require-dev": {
  1167. "phpunit/phpunit": "<9"
  1168. },
  1169. "type": "class",
  1170. "extra": {
  1171. "branch-alias": {
  1172. "dev-master": "1.0.x-dev"
  1173. }
  1174. },
  1175. "autoload": {
  1176. "classmap": [
  1177. "PEAR/"
  1178. ]
  1179. },
  1180. "notification-url": "https://packagist.org/downloads/",
  1181. "include-path": [
  1182. "."
  1183. ],
  1184. "license": [
  1185. "BSD-2-Clause"
  1186. ],
  1187. "authors": [
  1188. {
  1189. "name": "Helgi Thormar",
  1190. "email": "dufuz@php.net"
  1191. },
  1192. {
  1193. "name": "Greg Beaver",
  1194. "email": "cellog@php.net"
  1195. }
  1196. ],
  1197. "description": "The PEAR Exception base class.",
  1198. "homepage": "https://github.com/pear/PEAR_Exception",
  1199. "keywords": [
  1200. "exception"
  1201. ],
  1202. "support": {
  1203. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  1204. "source": "https://github.com/pear/PEAR_Exception"
  1205. },
  1206. "time": "2021-03-21T15:43:46+00:00"
  1207. },
  1208. {
  1209. "name": "phpcompatibility/php-compatibility",
  1210. "version": "9.3.5",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/PHPCompatibility/PHPCompatibility.git",
  1214. "reference": "9fb324479acf6f39452e0655d2429cc0d3914243"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/9fb324479acf6f39452e0655d2429cc0d3914243",
  1219. "reference": "9fb324479acf6f39452e0655d2429cc0d3914243",
  1220. "shasum": ""
  1221. },
  1222. "require": {
  1223. "php": ">=5.3",
  1224. "squizlabs/php_codesniffer": "^2.3 || ^3.0.2"
  1225. },
  1226. "conflict": {
  1227. "squizlabs/php_codesniffer": "2.6.2"
  1228. },
  1229. "require-dev": {
  1230. "phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0"
  1231. },
  1232. "suggest": {
  1233. "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.",
  1234. "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
  1235. },
  1236. "type": "phpcodesniffer-standard",
  1237. "notification-url": "https://packagist.org/downloads/",
  1238. "license": [
  1239. "LGPL-3.0-or-later"
  1240. ],
  1241. "authors": [
  1242. {
  1243. "name": "Wim Godden",
  1244. "homepage": "https://github.com/wimg",
  1245. "role": "lead"
  1246. },
  1247. {
  1248. "name": "Juliette Reinders Folmer",
  1249. "homepage": "https://github.com/jrfnl",
  1250. "role": "lead"
  1251. },
  1252. {
  1253. "name": "Contributors",
  1254. "homepage": "https://github.com/PHPCompatibility/PHPCompatibility/graphs/contributors"
  1255. }
  1256. ],
  1257. "description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.",
  1258. "homepage": "http://techblog.wimgodden.be/tag/codesniffer/",
  1259. "keywords": [
  1260. "compatibility",
  1261. "phpcs",
  1262. "standards"
  1263. ],
  1264. "time": "2019-12-27T09:44:58+00:00"
  1265. },
  1266. {
  1267. "name": "phpstan/phpdoc-parser",
  1268. "version": "0.4.9",
  1269. "source": {
  1270. "type": "git",
  1271. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1272. "reference": "98a088b17966bdf6ee25c8a4b634df313d8aa531"
  1273. },
  1274. "dist": {
  1275. "type": "zip",
  1276. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/98a088b17966bdf6ee25c8a4b634df313d8aa531",
  1277. "reference": "98a088b17966bdf6ee25c8a4b634df313d8aa531",
  1278. "shasum": ""
  1279. },
  1280. "require": {
  1281. "php": "^7.1 || ^8.0"
  1282. },
  1283. "require-dev": {
  1284. "consistence/coding-standard": "^3.5",
  1285. "ergebnis/composer-normalize": "^2.0.2",
  1286. "jakub-onderka/php-parallel-lint": "^0.9.2",
  1287. "phing/phing": "^2.16.0",
  1288. "phpstan/extension-installer": "^1.0",
  1289. "phpstan/phpstan": "^0.12.26",
  1290. "phpstan/phpstan-strict-rules": "^0.12",
  1291. "phpunit/phpunit": "^6.3",
  1292. "slevomat/coding-standard": "^4.7.2",
  1293. "symfony/process": "^4.0"
  1294. },
  1295. "type": "library",
  1296. "extra": {
  1297. "branch-alias": {
  1298. "dev-master": "0.4-dev"
  1299. }
  1300. },
  1301. "autoload": {
  1302. "psr-4": {
  1303. "PHPStan\\PhpDocParser\\": [
  1304. "src/"
  1305. ]
  1306. }
  1307. },
  1308. "notification-url": "https://packagist.org/downloads/",
  1309. "license": [
  1310. "MIT"
  1311. ],
  1312. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1313. "support": {
  1314. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1315. "source": "https://github.com/phpstan/phpdoc-parser/tree/master"
  1316. },
  1317. "time": "2020-08-03T20:32:43+00:00"
  1318. },
  1319. {
  1320. "name": "psr/container",
  1321. "version": "1.0.0",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/php-fig/container.git",
  1325. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1330. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1331. "shasum": ""
  1332. },
  1333. "require": {
  1334. "php": ">=5.3.0"
  1335. },
  1336. "type": "library",
  1337. "extra": {
  1338. "branch-alias": {
  1339. "dev-master": "1.0.x-dev"
  1340. }
  1341. },
  1342. "autoload": {
  1343. "psr-4": {
  1344. "Psr\\Container\\": "src/"
  1345. }
  1346. },
  1347. "notification-url": "https://packagist.org/downloads/",
  1348. "license": [
  1349. "MIT"
  1350. ],
  1351. "authors": [
  1352. {
  1353. "name": "PHP-FIG",
  1354. "homepage": "http://www.php-fig.org/"
  1355. }
  1356. ],
  1357. "description": "Common Container Interface (PHP FIG PSR-11)",
  1358. "homepage": "https://github.com/php-fig/container",
  1359. "keywords": [
  1360. "PSR-11",
  1361. "container",
  1362. "container-interface",
  1363. "container-interop",
  1364. "psr"
  1365. ],
  1366. "support": {
  1367. "issues": "https://github.com/php-fig/container/issues",
  1368. "source": "https://github.com/php-fig/container/tree/master"
  1369. },
  1370. "time": "2017-02-14T16:28:37+00:00"
  1371. },
  1372. {
  1373. "name": "psr/log",
  1374. "version": "1.1.3",
  1375. "source": {
  1376. "type": "git",
  1377. "url": "https://github.com/php-fig/log.git",
  1378. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  1379. },
  1380. "dist": {
  1381. "type": "zip",
  1382. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  1383. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  1384. "shasum": ""
  1385. },
  1386. "require": {
  1387. "php": ">=5.3.0"
  1388. },
  1389. "type": "library",
  1390. "extra": {
  1391. "branch-alias": {
  1392. "dev-master": "1.1.x-dev"
  1393. }
  1394. },
  1395. "autoload": {
  1396. "psr-4": {
  1397. "Psr\\Log\\": "Psr/Log/"
  1398. }
  1399. },
  1400. "notification-url": "https://packagist.org/downloads/",
  1401. "license": [
  1402. "MIT"
  1403. ],
  1404. "authors": [
  1405. {
  1406. "name": "PHP-FIG",
  1407. "homepage": "http://www.php-fig.org/"
  1408. }
  1409. ],
  1410. "description": "Common interface for logging libraries",
  1411. "homepage": "https://github.com/php-fig/log",
  1412. "keywords": [
  1413. "log",
  1414. "psr",
  1415. "psr-3"
  1416. ],
  1417. "support": {
  1418. "source": "https://github.com/php-fig/log/tree/1.1.3"
  1419. },
  1420. "time": "2020-03-23T09:12:05+00:00"
  1421. },
  1422. {
  1423. "name": "slevomat/coding-standard",
  1424. "version": "6.4.1",
  1425. "source": {
  1426. "type": "git",
  1427. "url": "https://github.com/slevomat/coding-standard.git",
  1428. "reference": "696dcca217d0c9da2c40d02731526c1e25b65346"
  1429. },
  1430. "dist": {
  1431. "type": "zip",
  1432. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/696dcca217d0c9da2c40d02731526c1e25b65346",
  1433. "reference": "696dcca217d0c9da2c40d02731526c1e25b65346",
  1434. "shasum": ""
  1435. },
  1436. "require": {
  1437. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7",
  1438. "php": "^7.1 || ^8.0",
  1439. "phpstan/phpdoc-parser": "0.4.5 - 0.4.9",
  1440. "squizlabs/php_codesniffer": "^3.5.6"
  1441. },
  1442. "require-dev": {
  1443. "phing/phing": "2.16.3",
  1444. "php-parallel-lint/php-parallel-lint": "1.2.0",
  1445. "phpstan/phpstan": "0.12.48",
  1446. "phpstan/phpstan-deprecation-rules": "0.12.5",
  1447. "phpstan/phpstan-phpunit": "0.12.16",
  1448. "phpstan/phpstan-strict-rules": "0.12.5",
  1449. "phpunit/phpunit": "7.5.20|8.5.5|9.4.0"
  1450. },
  1451. "type": "phpcodesniffer-standard",
  1452. "extra": {
  1453. "branch-alias": {
  1454. "dev-master": "6.x-dev"
  1455. }
  1456. },
  1457. "autoload": {
  1458. "psr-4": {
  1459. "SlevomatCodingStandard\\": "SlevomatCodingStandard"
  1460. }
  1461. },
  1462. "notification-url": "https://packagist.org/downloads/",
  1463. "license": [
  1464. "MIT"
  1465. ],
  1466. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  1467. "support": {
  1468. "issues": "https://github.com/slevomat/coding-standard/issues",
  1469. "source": "https://github.com/slevomat/coding-standard/tree/6.4.1"
  1470. },
  1471. "funding": [
  1472. {
  1473. "url": "https://github.com/kukulich",
  1474. "type": "github"
  1475. },
  1476. {
  1477. "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
  1478. "type": "tidelift"
  1479. }
  1480. ],
  1481. "time": "2020-10-05T12:39:37+00:00"
  1482. },
  1483. {
  1484. "name": "squizlabs/php_codesniffer",
  1485. "version": "3.5.8",
  1486. "source": {
  1487. "type": "git",
  1488. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  1489. "reference": "9d583721a7157ee997f235f327de038e7ea6dac4"
  1490. },
  1491. "dist": {
  1492. "type": "zip",
  1493. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/9d583721a7157ee997f235f327de038e7ea6dac4",
  1494. "reference": "9d583721a7157ee997f235f327de038e7ea6dac4",
  1495. "shasum": ""
  1496. },
  1497. "require": {
  1498. "ext-simplexml": "*",
  1499. "ext-tokenizer": "*",
  1500. "ext-xmlwriter": "*",
  1501. "php": ">=5.4.0"
  1502. },
  1503. "require-dev": {
  1504. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1505. },
  1506. "bin": [
  1507. "bin/phpcs",
  1508. "bin/phpcbf"
  1509. ],
  1510. "type": "library",
  1511. "extra": {
  1512. "branch-alias": {
  1513. "dev-master": "3.x-dev"
  1514. }
  1515. },
  1516. "notification-url": "https://packagist.org/downloads/",
  1517. "license": [
  1518. "BSD-3-Clause"
  1519. ],
  1520. "authors": [
  1521. {
  1522. "name": "Greg Sherwood",
  1523. "role": "lead"
  1524. }
  1525. ],
  1526. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  1527. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  1528. "keywords": [
  1529. "phpcs",
  1530. "standards"
  1531. ],
  1532. "support": {
  1533. "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
  1534. "source": "https://github.com/squizlabs/PHP_CodeSniffer",
  1535. "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
  1536. },
  1537. "time": "2020-10-23T02:01:07+00:00"
  1538. },
  1539. {
  1540. "name": "symfony/console",
  1541. "version": "v3.4.47",
  1542. "source": {
  1543. "type": "git",
  1544. "url": "https://github.com/symfony/console.git",
  1545. "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81"
  1546. },
  1547. "dist": {
  1548. "type": "zip",
  1549. "url": "https://api.github.com/repos/symfony/console/zipball/a10b1da6fc93080c180bba7219b5ff5b7518fe81",
  1550. "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81",
  1551. "shasum": ""
  1552. },
  1553. "require": {
  1554. "php": "^5.5.9|>=7.0.8",
  1555. "symfony/debug": "~2.8|~3.0|~4.0",
  1556. "symfony/polyfill-mbstring": "~1.0"
  1557. },
  1558. "conflict": {
  1559. "symfony/dependency-injection": "<3.4",
  1560. "symfony/process": "<3.3"
  1561. },
  1562. "provide": {
  1563. "psr/log-implementation": "1.0"
  1564. },
  1565. "require-dev": {
  1566. "psr/log": "~1.0",
  1567. "symfony/config": "~3.3|~4.0",
  1568. "symfony/dependency-injection": "~3.4|~4.0",
  1569. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  1570. "symfony/lock": "~3.4|~4.0",
  1571. "symfony/process": "~3.3|~4.0"
  1572. },
  1573. "suggest": {
  1574. "psr/log": "For using the console logger",
  1575. "symfony/event-dispatcher": "",
  1576. "symfony/lock": "",
  1577. "symfony/process": ""
  1578. },
  1579. "type": "library",
  1580. "autoload": {
  1581. "psr-4": {
  1582. "Symfony\\Component\\Console\\": ""
  1583. },
  1584. "exclude-from-classmap": [
  1585. "/Tests/"
  1586. ]
  1587. },
  1588. "notification-url": "https://packagist.org/downloads/",
  1589. "license": [
  1590. "MIT"
  1591. ],
  1592. "authors": [
  1593. {
  1594. "name": "Fabien Potencier",
  1595. "email": "fabien@symfony.com"
  1596. },
  1597. {
  1598. "name": "Symfony Community",
  1599. "homepage": "https://symfony.com/contributors"
  1600. }
  1601. ],
  1602. "description": "Symfony Console Component",
  1603. "homepage": "https://symfony.com",
  1604. "support": {
  1605. "source": "https://github.com/symfony/console/tree/v3.4.47"
  1606. },
  1607. "funding": [
  1608. {
  1609. "url": "https://symfony.com/sponsor",
  1610. "type": "custom"
  1611. },
  1612. {
  1613. "url": "https://github.com/fabpot",
  1614. "type": "github"
  1615. },
  1616. {
  1617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1618. "type": "tidelift"
  1619. }
  1620. ],
  1621. "time": "2020-10-24T10:57:07+00:00"
  1622. },
  1623. {
  1624. "name": "symfony/debug",
  1625. "version": "v3.4.47",
  1626. "source": {
  1627. "type": "git",
  1628. "url": "https://github.com/symfony/debug.git",
  1629. "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae"
  1630. },
  1631. "dist": {
  1632. "type": "zip",
  1633. "url": "https://api.github.com/repos/symfony/debug/zipball/ab42889de57fdfcfcc0759ab102e2fd4ea72dcae",
  1634. "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae",
  1635. "shasum": ""
  1636. },
  1637. "require": {
  1638. "php": "^5.5.9|>=7.0.8",
  1639. "psr/log": "~1.0"
  1640. },
  1641. "conflict": {
  1642. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1643. },
  1644. "require-dev": {
  1645. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  1646. },
  1647. "type": "library",
  1648. "autoload": {
  1649. "psr-4": {
  1650. "Symfony\\Component\\Debug\\": ""
  1651. },
  1652. "exclude-from-classmap": [
  1653. "/Tests/"
  1654. ]
  1655. },
  1656. "notification-url": "https://packagist.org/downloads/",
  1657. "license": [
  1658. "MIT"
  1659. ],
  1660. "authors": [
  1661. {
  1662. "name": "Fabien Potencier",
  1663. "email": "fabien@symfony.com"
  1664. },
  1665. {
  1666. "name": "Symfony Community",
  1667. "homepage": "https://symfony.com/contributors"
  1668. }
  1669. ],
  1670. "description": "Symfony Debug Component",
  1671. "homepage": "https://symfony.com",
  1672. "support": {
  1673. "source": "https://github.com/symfony/debug/tree/v3.4.47"
  1674. },
  1675. "funding": [
  1676. {
  1677. "url": "https://symfony.com/sponsor",
  1678. "type": "custom"
  1679. },
  1680. {
  1681. "url": "https://github.com/fabpot",
  1682. "type": "github"
  1683. },
  1684. {
  1685. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1686. "type": "tidelift"
  1687. }
  1688. ],
  1689. "time": "2020-10-24T10:57:07+00:00"
  1690. },
  1691. {
  1692. "name": "symfony/event-dispatcher",
  1693. "version": "v3.4.47",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/symfony/event-dispatcher.git",
  1697. "reference": "31fde73757b6bad247c54597beef974919ec6860"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/31fde73757b6bad247c54597beef974919ec6860",
  1702. "reference": "31fde73757b6bad247c54597beef974919ec6860",
  1703. "shasum": ""
  1704. },
  1705. "require": {
  1706. "php": "^5.5.9|>=7.0.8"
  1707. },
  1708. "conflict": {
  1709. "symfony/dependency-injection": "<3.3"
  1710. },
  1711. "require-dev": {
  1712. "psr/log": "~1.0",
  1713. "symfony/config": "~2.8|~3.0|~4.0",
  1714. "symfony/debug": "~3.4|~4.4",
  1715. "symfony/dependency-injection": "~3.3|~4.0",
  1716. "symfony/expression-language": "~2.8|~3.0|~4.0",
  1717. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  1718. },
  1719. "suggest": {
  1720. "symfony/dependency-injection": "",
  1721. "symfony/http-kernel": ""
  1722. },
  1723. "type": "library",
  1724. "autoload": {
  1725. "psr-4": {
  1726. "Symfony\\Component\\EventDispatcher\\": ""
  1727. },
  1728. "exclude-from-classmap": [
  1729. "/Tests/"
  1730. ]
  1731. },
  1732. "notification-url": "https://packagist.org/downloads/",
  1733. "license": [
  1734. "MIT"
  1735. ],
  1736. "authors": [
  1737. {
  1738. "name": "Fabien Potencier",
  1739. "email": "fabien@symfony.com"
  1740. },
  1741. {
  1742. "name": "Symfony Community",
  1743. "homepage": "https://symfony.com/contributors"
  1744. }
  1745. ],
  1746. "description": "Symfony EventDispatcher Component",
  1747. "homepage": "https://symfony.com",
  1748. "support": {
  1749. "source": "https://github.com/symfony/event-dispatcher/tree/v3.4.47"
  1750. },
  1751. "funding": [
  1752. {
  1753. "url": "https://symfony.com/sponsor",
  1754. "type": "custom"
  1755. },
  1756. {
  1757. "url": "https://github.com/fabpot",
  1758. "type": "github"
  1759. },
  1760. {
  1761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1762. "type": "tidelift"
  1763. }
  1764. ],
  1765. "time": "2020-10-24T10:57:07+00:00"
  1766. },
  1767. {
  1768. "name": "symfony/filesystem",
  1769. "version": "v3.4.47",
  1770. "source": {
  1771. "type": "git",
  1772. "url": "https://github.com/symfony/filesystem.git",
  1773. "reference": "e58d7841cddfed6e846829040dca2cca0ebbbbb3"
  1774. },
  1775. "dist": {
  1776. "type": "zip",
  1777. "url": "https://api.github.com/repos/symfony/filesystem/zipball/e58d7841cddfed6e846829040dca2cca0ebbbbb3",
  1778. "reference": "e58d7841cddfed6e846829040dca2cca0ebbbbb3",
  1779. "shasum": ""
  1780. },
  1781. "require": {
  1782. "php": "^5.5.9|>=7.0.8",
  1783. "symfony/polyfill-ctype": "~1.8"
  1784. },
  1785. "type": "library",
  1786. "autoload": {
  1787. "psr-4": {
  1788. "Symfony\\Component\\Filesystem\\": ""
  1789. },
  1790. "exclude-from-classmap": [
  1791. "/Tests/"
  1792. ]
  1793. },
  1794. "notification-url": "https://packagist.org/downloads/",
  1795. "license": [
  1796. "MIT"
  1797. ],
  1798. "authors": [
  1799. {
  1800. "name": "Fabien Potencier",
  1801. "email": "fabien@symfony.com"
  1802. },
  1803. {
  1804. "name": "Symfony Community",
  1805. "homepage": "https://symfony.com/contributors"
  1806. }
  1807. ],
  1808. "description": "Symfony Filesystem Component",
  1809. "homepage": "https://symfony.com",
  1810. "support": {
  1811. "source": "https://github.com/symfony/filesystem/tree/v3.4.47"
  1812. },
  1813. "funding": [
  1814. {
  1815. "url": "https://symfony.com/sponsor",
  1816. "type": "custom"
  1817. },
  1818. {
  1819. "url": "https://github.com/fabpot",
  1820. "type": "github"
  1821. },
  1822. {
  1823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1824. "type": "tidelift"
  1825. }
  1826. ],
  1827. "time": "2020-10-24T10:57:07+00:00"
  1828. },
  1829. {
  1830. "name": "symfony/finder",
  1831. "version": "v3.4.47",
  1832. "source": {
  1833. "type": "git",
  1834. "url": "https://github.com/symfony/finder.git",
  1835. "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e"
  1836. },
  1837. "dist": {
  1838. "type": "zip",
  1839. "url": "https://api.github.com/repos/symfony/finder/zipball/b6b6ad3db3edb1b4b1c1896b1975fb684994de6e",
  1840. "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e",
  1841. "shasum": ""
  1842. },
  1843. "require": {
  1844. "php": "^5.5.9|>=7.0.8"
  1845. },
  1846. "type": "library",
  1847. "autoload": {
  1848. "psr-4": {
  1849. "Symfony\\Component\\Finder\\": ""
  1850. },
  1851. "exclude-from-classmap": [
  1852. "/Tests/"
  1853. ]
  1854. },
  1855. "notification-url": "https://packagist.org/downloads/",
  1856. "license": [
  1857. "MIT"
  1858. ],
  1859. "authors": [
  1860. {
  1861. "name": "Fabien Potencier",
  1862. "email": "fabien@symfony.com"
  1863. },
  1864. {
  1865. "name": "Symfony Community",
  1866. "homepage": "https://symfony.com/contributors"
  1867. }
  1868. ],
  1869. "description": "Symfony Finder Component",
  1870. "homepage": "https://symfony.com",
  1871. "support": {
  1872. "source": "https://github.com/symfony/finder/tree/v3.4.47"
  1873. },
  1874. "funding": [
  1875. {
  1876. "url": "https://symfony.com/sponsor",
  1877. "type": "custom"
  1878. },
  1879. {
  1880. "url": "https://github.com/fabpot",
  1881. "type": "github"
  1882. },
  1883. {
  1884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1885. "type": "tidelift"
  1886. }
  1887. ],
  1888. "time": "2020-11-16T17:02:08+00:00"
  1889. },
  1890. {
  1891. "name": "symfony/polyfill-ctype",
  1892. "version": "v1.22.0",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "https://github.com/symfony/polyfill-ctype.git",
  1896. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  1897. },
  1898. "dist": {
  1899. "type": "zip",
  1900. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  1901. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  1902. "shasum": ""
  1903. },
  1904. "require": {
  1905. "php": ">=7.1"
  1906. },
  1907. "suggest": {
  1908. "ext-ctype": "For best performance"
  1909. },
  1910. "type": "library",
  1911. "extra": {
  1912. "branch-alias": {
  1913. "dev-main": "1.22-dev"
  1914. },
  1915. "thanks": {
  1916. "name": "symfony/polyfill",
  1917. "url": "https://github.com/symfony/polyfill"
  1918. }
  1919. },
  1920. "autoload": {
  1921. "psr-4": {
  1922. "Symfony\\Polyfill\\Ctype\\": ""
  1923. },
  1924. "files": [
  1925. "bootstrap.php"
  1926. ]
  1927. },
  1928. "notification-url": "https://packagist.org/downloads/",
  1929. "license": [
  1930. "MIT"
  1931. ],
  1932. "authors": [
  1933. {
  1934. "name": "Gert de Pagter",
  1935. "email": "BackEndTea@gmail.com"
  1936. },
  1937. {
  1938. "name": "Symfony Community",
  1939. "homepage": "https://symfony.com/contributors"
  1940. }
  1941. ],
  1942. "description": "Symfony polyfill for ctype functions",
  1943. "homepage": "https://symfony.com",
  1944. "keywords": [
  1945. "compatibility",
  1946. "ctype",
  1947. "polyfill",
  1948. "portable"
  1949. ],
  1950. "support": {
  1951. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.0"
  1952. },
  1953. "funding": [
  1954. {
  1955. "url": "https://symfony.com/sponsor",
  1956. "type": "custom"
  1957. },
  1958. {
  1959. "url": "https://github.com/fabpot",
  1960. "type": "github"
  1961. },
  1962. {
  1963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1964. "type": "tidelift"
  1965. }
  1966. ],
  1967. "time": "2021-01-07T16:49:33+00:00"
  1968. },
  1969. {
  1970. "name": "symfony/polyfill-mbstring",
  1971. "version": "v1.22.0",
  1972. "source": {
  1973. "type": "git",
  1974. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1975. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13"
  1976. },
  1977. "dist": {
  1978. "type": "zip",
  1979. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  1980. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  1981. "shasum": ""
  1982. },
  1983. "require": {
  1984. "php": ">=7.1"
  1985. },
  1986. "suggest": {
  1987. "ext-mbstring": "For best performance"
  1988. },
  1989. "type": "library",
  1990. "extra": {
  1991. "branch-alias": {
  1992. "dev-main": "1.22-dev"
  1993. },
  1994. "thanks": {
  1995. "name": "symfony/polyfill",
  1996. "url": "https://github.com/symfony/polyfill"
  1997. }
  1998. },
  1999. "autoload": {
  2000. "psr-4": {
  2001. "Symfony\\Polyfill\\Mbstring\\": ""
  2002. },
  2003. "files": [
  2004. "bootstrap.php"
  2005. ]
  2006. },
  2007. "notification-url": "https://packagist.org/downloads/",
  2008. "license": [
  2009. "MIT"
  2010. ],
  2011. "authors": [
  2012. {
  2013. "name": "Nicolas Grekas",
  2014. "email": "p@tchwork.com"
  2015. },
  2016. {
  2017. "name": "Symfony Community",
  2018. "homepage": "https://symfony.com/contributors"
  2019. }
  2020. ],
  2021. "description": "Symfony polyfill for the Mbstring extension",
  2022. "homepage": "https://symfony.com",
  2023. "keywords": [
  2024. "compatibility",
  2025. "mbstring",
  2026. "polyfill",
  2027. "portable",
  2028. "shim"
  2029. ],
  2030. "support": {
  2031. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0"
  2032. },
  2033. "funding": [
  2034. {
  2035. "url": "https://symfony.com/sponsor",
  2036. "type": "custom"
  2037. },
  2038. {
  2039. "url": "https://github.com/fabpot",
  2040. "type": "github"
  2041. },
  2042. {
  2043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2044. "type": "tidelift"
  2045. }
  2046. ],
  2047. "time": "2021-01-07T16:49:33+00:00"
  2048. },
  2049. {
  2050. "name": "symfony/process",
  2051. "version": "v3.4.47",
  2052. "source": {
  2053. "type": "git",
  2054. "url": "https://github.com/symfony/process.git",
  2055. "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca"
  2056. },
  2057. "dist": {
  2058. "type": "zip",
  2059. "url": "https://api.github.com/repos/symfony/process/zipball/b8648cf1d5af12a44a51d07ef9bf980921f15fca",
  2060. "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca",
  2061. "shasum": ""
  2062. },
  2063. "require": {
  2064. "php": "^5.5.9|>=7.0.8"
  2065. },
  2066. "type": "library",
  2067. "autoload": {
  2068. "psr-4": {
  2069. "Symfony\\Component\\Process\\": ""
  2070. },
  2071. "exclude-from-classmap": [
  2072. "/Tests/"
  2073. ]
  2074. },
  2075. "notification-url": "https://packagist.org/downloads/",
  2076. "license": [
  2077. "MIT"
  2078. ],
  2079. "authors": [
  2080. {
  2081. "name": "Fabien Potencier",
  2082. "email": "fabien@symfony.com"
  2083. },
  2084. {
  2085. "name": "Symfony Community",
  2086. "homepage": "https://symfony.com/contributors"
  2087. }
  2088. ],
  2089. "description": "Symfony Process Component",
  2090. "homepage": "https://symfony.com",
  2091. "support": {
  2092. "source": "https://github.com/symfony/process/tree/v3.4.47"
  2093. },
  2094. "funding": [
  2095. {
  2096. "url": "https://symfony.com/sponsor",
  2097. "type": "custom"
  2098. },
  2099. {
  2100. "url": "https://github.com/fabpot",
  2101. "type": "github"
  2102. },
  2103. {
  2104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2105. "type": "tidelift"
  2106. }
  2107. ],
  2108. "time": "2020-10-24T10:57:07+00:00"
  2109. },
  2110. {
  2111. "name": "symfony/yaml",
  2112. "version": "v3.4.47",
  2113. "source": {
  2114. "type": "git",
  2115. "url": "https://github.com/symfony/yaml.git",
  2116. "reference": "88289caa3c166321883f67fe5130188ebbb47094"
  2117. },
  2118. "dist": {
  2119. "type": "zip",
  2120. "url": "https://api.github.com/repos/symfony/yaml/zipball/88289caa3c166321883f67fe5130188ebbb47094",
  2121. "reference": "88289caa3c166321883f67fe5130188ebbb47094",
  2122. "shasum": ""
  2123. },
  2124. "require": {
  2125. "php": "^5.5.9|>=7.0.8",
  2126. "symfony/polyfill-ctype": "~1.8"
  2127. },
  2128. "conflict": {
  2129. "symfony/console": "<3.4"
  2130. },
  2131. "require-dev": {
  2132. "symfony/console": "~3.4|~4.0"
  2133. },
  2134. "suggest": {
  2135. "symfony/console": "For validating YAML files using the lint command"
  2136. },
  2137. "type": "library",
  2138. "autoload": {
  2139. "psr-4": {
  2140. "Symfony\\Component\\Yaml\\": ""
  2141. },
  2142. "exclude-from-classmap": [
  2143. "/Tests/"
  2144. ]
  2145. },
  2146. "notification-url": "https://packagist.org/downloads/",
  2147. "license": [
  2148. "MIT"
  2149. ],
  2150. "authors": [
  2151. {
  2152. "name": "Fabien Potencier",
  2153. "email": "fabien@symfony.com"
  2154. },
  2155. {
  2156. "name": "Symfony Community",
  2157. "homepage": "https://symfony.com/contributors"
  2158. }
  2159. ],
  2160. "description": "Symfony Yaml Component",
  2161. "homepage": "https://symfony.com",
  2162. "support": {
  2163. "source": "https://github.com/symfony/yaml/tree/v3.4.47"
  2164. },
  2165. "funding": [
  2166. {
  2167. "url": "https://symfony.com/sponsor",
  2168. "type": "custom"
  2169. },
  2170. {
  2171. "url": "https://github.com/fabpot",
  2172. "type": "github"
  2173. },
  2174. {
  2175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2176. "type": "tidelift"
  2177. }
  2178. ],
  2179. "time": "2020-10-24T10:57:07+00:00"
  2180. }
  2181. ],
  2182. "aliases": [],
  2183. "minimum-stability": "stable",
  2184. "stability-flags": [],
  2185. "prefer-stable": false,
  2186. "prefer-lowest": false,
  2187. "platform": [],
  2188. "platform-dev": [],
  2189. "platform-overrides": {
  2190. "php": "7.1.2"
  2191. },
  2192. "plugin-api-version": "2.1.0"
  2193. }