grav/composer.json

107 lines
3.7 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"],
2019-01-08 05:28:56 +01:00
"homepage": "https://getgrav.org",
2014-08-02 21:11:33 +02:00
"license": "MIT",
"require": {
"php": ">=7.1.3",
2018-08-17 23:32:55 +02:00
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-curl": "*",
"ext-zip": "*",
2019-04-06 01:38:45 +02:00
"ext-dom": "*",
2018-08-17 23:32:55 +02:00
"symfony/polyfill-iconv": "^1.9",
"symfony/polyfill-php72": "^1.9",
"symfony/polyfill-php73": "^1.9",
"psr/simple-cache": "^1.0",
"psr/http-message": "^1.0",
2018-10-17 13:57:45 +02:00
"psr/http-server-middleware": "^1.0",
"kodus/psr7-server": "*",
2018-10-17 13:57:45 +02:00
"nyholm/psr7": "^1.0",
2018-08-17 23:32:55 +02:00
2019-05-03 07:52:53 +02:00
"twig/twig": "~1.40",
2018-08-17 23:32:55 +02:00
"erusev/parsedown": "1.6.4",
"erusev/parsedown-extra": "~0.7",
2019-08-21 01:06:19 +02:00
"symfony/yaml": "~4.2.0",
"symfony/console": "~4.2.0",
"symfony/event-dispatcher": "~4.2.0",
"symfony/var-dumper": "~4.2.0",
"symfony/process": "~4.2.0",
2018-09-04 08:24:50 +02:00
"doctrine/cache": "^1.8",
2018-08-17 23:32:55 +02:00
"doctrine/collections": "^1.5",
"guzzlehttp/psr7": "^1.4",
2018-08-17 23:32:55 +02:00
"filp/whoops": "~2.2",
"matthiasmullie/minify": "^1.3",
2015-04-07 17:10:42 +02:00
"monolog/monolog": "~1.0",
"gregwar/image": "2.*",
2018-08-17 23:32:55 +02:00
"donatj/phpuseragentparser": "~0.10",
2018-03-20 17:33:26 +01:00
"pimple/pimple": "~3.2",
"rockettheme/toolbox": "~1.4",
2018-08-17 23:32:55 +02:00
"maximebf/debugbar": "~1.15",
"league/climate": "^3.4",
"antoligy/dom-string-iterators": "^1.0",
2018-08-17 23:32:55 +02:00
"miljar/php-exif": "^0.6.4",
"composer/ca-bundle": "^1.0",
2018-09-20 20:53:43 +02:00
"dragonmantank/cron-expression": "^1.2",
2018-11-12 02:27:12 +01:00
"phive/twig-extensions-deferred": "^1.0",
"willdurand/negotiation": "^2.3"
},
2016-01-05 19:39:00 +01:00
"require-dev": {
2018-08-17 23:32:55 +02:00
"codeception/codeception": "^2.4",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-deprecation-rules": "^0.11.0",
2018-08-17 23:32:55 +02:00
"phpunit/php-code-coverage": "~6.0",
"fzaninotto/faker": "^1.8",
"victorjonsson/markdowndocs": "dev-master"
},
2019-03-13 08:49:08 +01:00
"suggest": {
2019-03-13 14:21:09 +01:00
"ext-zend-opcache": "Recommended for better performance",
2019-03-13 08:49:08 +01:00
"ext-intl": "Recommended for multi-language sites",
"ext-memcache": "Needed to support Memcache servers",
"ext-memcached": "Needed to support Memcached servers",
"ext-redis": "Needed to support Redis servers"
},
"config": {
2018-10-16 12:02:32 +02:00
"apcu-autoloader": true,
"platform": {
"php": "7.1.3"
}
},
"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": {
"api-16": "vendor/bin/phpdoc-md generate system/src > user/pages/14.api/default.16.md",
"api-15": "vendor/bin/phpdoc-md generate system/src > user/pages/14.api/default.md",
2016-01-21 12:41:32 +01:00
"post-create-project-cmd": "bin/grav install",
"phpstan": "vendor/bin/phpstan analyse -l 2 -c ./tests/phpstan/phpstan.neon system/src --memory-limit=256M",
"phpstan-framework": "vendor/bin/phpstan analyse -l 5 -c ./tests/phpstan/phpstan.neon system/src/Grav/Framework --memory-limit=256M",
"test-plugins": "vendor/bin/phpstan analyse -l 0 -c ./tests/phpstan/plugins.neon user/plugins --memory-limit=256M",
"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
}
}