grav/composer.json

78 lines
2.3 KiB
JSON
Raw Normal View History

2014-08-02 21:11:33 +02:00
{
2014-08-20 21:57:16 +02:00
"name": "getgrav/grav",
"type": "project",
2014-08-20 21:57:16 +02:00
"description": "Modern, Crazy Fast, Ridiculously Easy and Amazingly Powerful Flat-File CMS",
"keywords": ["cms","flat-file cms","flat cms","flatfile cms","php"],
2014-08-02 21:11:33 +02:00
"homepage": "http://getgrav.org",
"license": "MIT",
"require": {
"php": ">=5.6.4",
"twig/twig": "~1.24",
"erusev/parsedown": "1.6.4",
2015-01-26 06:12:46 +01:00
"erusev/parsedown-extra": "~0.7",
"symfony/yaml": "~3.4",
"symfony/console": "~3.4",
"symfony/event-dispatcher": "~3.4",
"symfony/var-dumper": "~3.4",
2015-12-08 00:46:28 +01:00
"symfony/polyfill-iconv": "~1.0",
"doctrine/cache": "^1.6",
"doctrine/collections": "^1.4",
"psr/simple-cache": "^1.0",
"psr/http-message": "^1.0",
"guzzlehttp/psr7": "^1.4",
2016-01-19 20:46:30 +01:00
"filp/whoops": "~2.0",
"matthiasmullie/minify": "^1.3",
2015-04-07 17:10:42 +02:00
"monolog/monolog": "~1.0",
"gregwar/image": "2.*",
"donatj/phpuseragentparser": "~0.3",
2018-03-20 17:33:26 +01:00
"pimple/pimple": "~3.2",
"rockettheme/toolbox": "~1.4",
2016-01-12 11:19:20 +01:00
"maximebf/debugbar": "~1.10",
"ext-mbstring": "*",
"ext-openssl": "*",
2016-07-01 13:51:35 +02:00
"ext-curl": "*",
"ext-zip": "*",
2018-09-19 21:56:09 +02:00
"ext-json": "*",
"league/climate": "^3.2",
"antoligy/dom-string-iterators": "^1.0",
"miljar/php-exif": "^0.6.3",
"composer/ca-bundle": "^1.0"
},
2016-01-05 19:39:00 +01:00
"require-dev": {
"codeception/codeception": "^2.1",
"phpunit/php-code-coverage": "~2.0",
"fzaninotto/faker": "^1.5",
"victorjonsson/markdowndocs": "dev-master"
},
"config": {
"platform": {
"php": "5.6.4"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator"
}
],
"autoload": {
"psr-4": {
2014-09-03 08:07:29 +02:00
"Grav\\": "system/src/Grav"
},
"files": ["system/defines.php"]
},
"archive": {
"exclude": ["VERSION"]
},
"scripts": {
2016-01-21 12:41:32 +01:00
"post-create-project-cmd": "bin/grav install",
"test": "vendor/bin/codecept run unit",
"test-windows": "vendor\\bin\\codecept run unit"
2016-01-05 01:20:26 +01:00
},
"extra": {
"branch-alias": {
"dev-develop": "1.x-dev"
}
2014-08-02 21:11:33 +02:00
}
}