From 50b8d9406e6c32bc939b8c885e69e975c5643824 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 7 Jan 2020 15:36:05 +0100 Subject: duplicate ZF --- composer.json | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..58dc8d2 --- /dev/null +++ b/composer.json @@ -0,0 +1,64 @@ +{ + "name": "zendframework/zend-crypt", + "description": "Strong cryptography tools and password hashing", + "license": "BSD-3-Clause", + "keywords": [ + "zf", + "zendframework", + "crypt" + ], + "support": { + "docs": "https://docs.zendframework.com/zend-crypt/", + "issues": "https://github.com/zendframework/zend-crypt/issues", + "source": "https://github.com/zendframework/zend-crypt", + "rss": "https://github.com/zendframework/zend-crypt/releases.atom", + "chat": "https://zendframework-slack.herokuapp.com", + "forum": "https://discourse.zendframework.com/c/questions/components" + }, + "require": { + "php": "^5.6 || ^7.0", + "ext-mbstring": "*", + "container-interop/container-interop": "^1.2", + "zendframework/zend-math": "^3.0", + "zendframework/zend-stdlib": "^2.7.7 || ^3.1" + }, + "require-dev": { + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2", + "zendframework/zend-coding-standard": "~1.0.0" + }, + "suggest": { + "ext-openssl": "Required for most features of Zend\\Crypt" + }, + "autoload": { + "psr-4": { + "Zend\\Crypt\\": "src/" + } + }, + "autoload-dev": { + "files": [ + "test/_autoload.php" + ], + "psr-4": { + "ZendTest\\Crypt\\": "test/" + } + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" + } + }, + "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