From c4ec32be532d006abbde58512d2590e0b029354d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 16 Jan 2020 11:02:37 +0100 Subject: duplicate ZF --- composer.json | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..664333b --- /dev/null +++ b/composer.json @@ -0,0 +1,67 @@ +{ + "name": "zendframework/zend-mvc-plugin-fileprg", + "description": "Post/Redirect/Get plugin with file upload handling for zend-mvc controllers", + "license": "BSD-3-Clause", + "keywords": [ + "zf", + "zendframework", + "mvc" + ], + "support": { + "docs": "https://docs.zendframework.com/zend-mvc-plugin-fileprg/", + "issues": "https://github.com/zendframework/zend-mvc-plugin-fileprg/issues", + "source": "https://github.com/zendframework/zend-mvc-plugin-fileprg", + "rss": "https://github.com/zendframework/zend-mvc-plugin-fileprg/releases.atom", + "chat": "https://zendframework-slack.herokuapp.com", + "forum": "https://discourse.zendframework.com/c/questions/components" + }, + "require": { + "php": "^5.6 || ^7.0", + "zendframework/zend-filter": "^2.6.1", + "zendframework/zend-form": "^2.7", + "zendframework/zend-inputfilter": "^2.8.1", + "zendframework/zend-mvc": "^3.0", + "zendframework/zend-session": "^2.8.5", + "zendframework/zend-stdlib": "^2.7 || ^3.0", + "zendframework/zend-validator": "^2.6" + }, + "require-dev": { + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5", + "zendframework/zend-coding-standard": "~1.0.0" + }, + "conflict": { + "zendframework/zend-mvc": "<3.0.0" + }, + "autoload": { + "psr-4": { + "Zend\\Mvc\\Plugin\\FilePrg\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "ZendTest\\Mvc\\Plugin\\FilePrg\\": "test/" + } + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev", + "dev-develop": "1.2.x-dev" + }, + "zf": { + "component": "Zend\\Mvc\\Plugin\\FilePrg" + } + }, + "scripts": { + "check": [ + "@cs-check", + "@test" + ], + "cs-check": "phpcs", + "cs-fix": "phpcbf", + "test": "phpunit --colors=always", + "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + } +} -- cgit