composer.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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": "http://getgrav.org",
  7. "license": "MIT",
  8. "require": {
  9. "php": ">=5.5.9",
  10. "twig/twig": "~1.24",
  11. "erusev/parsedown": "~1.6",
  12. "erusev/parsedown-extra": "~0.7",
  13. "symfony/yaml": "~2.8",
  14. "symfony/console": "~2.8",
  15. "symfony/event-dispatcher": "~2.8",
  16. "symfony/var-dumper": "~2.8",
  17. "symfony/polyfill-iconv": "~1.0",
  18. "doctrine/cache": "1.6.*",
  19. "doctrine/collections": "1.3",
  20. "filp/whoops": "~2.0",
  21. "matthiasmullie/minify": "^1.3",
  22. "monolog/monolog": "~1.0",
  23. "gregwar/image": "2.*",
  24. "donatj/phpuseragentparser": "~0.3",
  25. "pimple/pimple": "~3.0",
  26. "rockettheme/toolbox": "~1.0",
  27. "maximebf/debugbar": "~1.10",
  28. "ext-mbstring": "*",
  29. "ext-openssl": "*",
  30. "ext-curl": "*",
  31. "ext-zip": "*",
  32. "league/climate": "^3.2",
  33. "antoligy/dom-string-iterators": "^1.0",
  34. "miljar/php-exif": "^0.6.3",
  35. "composer/ca-bundle": "^1.0"
  36. },
  37. "require-dev": {
  38. "codeception/codeception": "^2.1",
  39. "phpunit/php-code-coverage": "~2.0",
  40. "fzaninotto/faker": "^1.5",
  41. "victorjonsson/markdowndocs": "dev-master"
  42. },
  43. "repositories": [
  44. {
  45. "type": "vcs",
  46. "url": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator"
  47. }
  48. ],
  49. "autoload": {
  50. "psr-4": {
  51. "Grav\\": "system/src/Grav"
  52. },
  53. "files": ["system/defines.php"]
  54. },
  55. "archive": {
  56. "exclude": ["VERSION"]
  57. },
  58. "scripts": {
  59. "post-create-project-cmd": "bin/grav install",
  60. "test": "vendor/bin/codecept run unit",
  61. "test-windows": "vendor\\bin\\codecept run unit"
  62. },
  63. "extra": {
  64. "branch-alias": {
  65. "dev-develop": "1.x-dev"
  66. }
  67. }
  68. }