summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json60
1 files changed, 60 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..74f617b
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,60 @@
+{
+ "name": "zendframework/zend-mvc-plugin-prg",
+ "description": "Post/Redirect/Get plugin for zend-mvc controllers",
+ "license": "BSD-3-Clause",
+ "keywords": [
+ "zf",
+ "zendframework",
+ "mvc"
+ ],
+ "support": {
+ "docs": "https://docs.zendframework.com/zend-mvc-plugin-prg/",
+ "issues": "https://github.com/zendframework/zend-mvc-plugin-prg/issues",
+ "source": "https://github.com/zendframework/zend-mvc-plugin-prg",
+ "rss": "https://github.com/zendframework/zend-mvc-plugin-prg/releases.atom",
+ "chat": "https://zendframework-slack.herokuapp.com",
+ "forum": "https://discourse.zendframework.com/c/questions/components"
+ },
+ "require": {
+ "php": "^5.6 || ^7.0",
+ "zendframework/zend-mvc": "^3.0",
+ "zendframework/zend-session": "^2.8.5",
+ "zendframework/zend-stdlib": "^3.2.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
+ "zendframework/zend-coding-standard": "~1.0.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "Zend\\Mvc\\Plugin\\Prg\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "ZendTest\\Mvc\\Plugin\\Prg\\": "test/"
+ }
+ },
+ "config": {
+ "sort-packages": true
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.2.x-dev",
+ "dev-develop": "1.3.x-dev"
+ },
+ "zf": {
+ "component": "Zend\\Mvc\\Plugin\\Prg"
+ }
+ },
+ "scripts": {
+ "check": [
+ "@cs-check",
+ "@test"
+ ],
+ "cs-check": "phpcs",
+ "cs-fix": "phpcbf",
+ "test": "phpunit --colors=always",
+ "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
+ }
+}