composer.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "getgrav/grav",
  3. "type": "project",
  4. "description": "Modern, Crazy Fast, Ridiculously Easy and Amazingly Powerful Flat-File CMS",
  5. "keywords": ["cms","flat-file cms","flat cms","flatfile cms","php"],
  6. "homepage": "https://getgrav.org",
  7. "license": "MIT",
  8. "require": {
  9. "php": ">=5.6.4",
  10. "twig/twig": "~1.24",
  11. "erusev/parsedown": "1.6.4",
  12. "erusev/parsedown-extra": "~0.7",
  13. "symfony/yaml": "~3.4",
  14. "symfony/console": "~3.4",
  15. "symfony/event-dispatcher": "~3.4",
  16. "symfony/var-dumper": "~3.4",
  17. "symfony/polyfill-iconv": "~1.0",
  18. "doctrine/cache": "^1.6",
  19. "doctrine/collections": "^1.4",
  20. "psr/simple-cache": "^1.0",
  21. "psr/http-message": "^1.0",
  22. "guzzlehttp/psr7": "^1.4",
  23. "filp/whoops": "~2.0",
  24. "matthiasmullie/minify": "^1.3",
  25. "monolog/monolog": "~1.0",
  26. "gregwar/image": "2.*",
  27. "donatj/phpuseragentparser": "~0.3",
  28. "pimple/pimple": "~3.2",
  29. "rockettheme/toolbox": "1.4.2",
  30. "maximebf/debugbar": "~1.10",
  31. "ext-mbstring": "*",
  32. "ext-openssl": "*",
  33. "ext-curl": "*",
  34. "ext-zip": "*",
  35. "ext-json": "*",
  36. "league/climate": "^3.2",
  37. "antoligy/dom-string-iterators": "^1.0",
  38. "miljar/php-exif": "^0.6.3",
  39. "composer/ca-bundle": "^1.0",
  40. "phive/twig-extensions-deferred": "^1.0"
  41. },
  42. "require-dev": {
  43. "codeception/codeception": "^2.1",
  44. "phpunit/php-code-coverage": "~2.0",
  45. "fzaninotto/faker": "^1.5",
  46. "victorjonsson/markdowndocs": "dev-master"
  47. },
  48. "config": {
  49. "platform": {
  50. "php": "5.6.4"
  51. }
  52. },
  53. "repositories": [
  54. {
  55. "type": "vcs",
  56. "url": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator"
  57. }
  58. ],
  59. "autoload": {
  60. "psr-4": {
  61. "Grav\\": "system/src/Grav"
  62. },
  63. "files": ["system/defines.php"]
  64. },
  65. "archive": {
  66. "exclude": ["VERSION"]
  67. },
  68. "scripts": {
  69. "post-create-project-cmd": "bin/grav install",
  70. "test": "vendor/bin/codecept run unit",
  71. "test-windows": "vendor\\bin\\codecept run unit"
  72. },
  73. "extra": {
  74. "branch-alias": {
  75. "dev-develop": "1.x-dev"
  76. }
  77. }
  78. }