From 97ec7e323f0966ae247d4ef09a0cd7f4691730ed Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 8 Apr 2016 08:30:50 +0200 Subject: php-zendframework-zend-math: composer.json (2.6.0) --- composer.json | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..53106c5 --- /dev/null +++ b/composer.json @@ -0,0 +1,41 @@ +{ + "name": "zendframework/zend-math", + "description": " ", + "license": "BSD-3-Clause", + "keywords": [ + "zf2", + "math" + ], + "homepage": "https://github.com/zendframework/zend-math", + "autoload": { + "psr-4": { + "Zend\\Math\\": "src/" + } + }, + "require": { + "php": "^5.5 || ^7.0" + }, + "suggest": { + "ext-bcmath": "If using the bcmath functionality", + "ext-gmp": "If using the gmp functionality", + "ircmaxell/random-lib": "Fallback random byte generator for Zend\\Math\\Rand if OpenSSL/Mcrypt extensions are unavailable" + }, + "minimum-stability": "dev", + "prefer-stable": true, + "extra": { + "branch-alias": { + "dev-master": "2.6-dev", + "dev-develop": "2.7-dev" + } + }, + "autoload-dev": { + "psr-4": { + "ZendTest\\Math\\": "test/" + } + }, + "require-dev": { + "fabpot/php-cs-fixer": "1.7.*", + "ircmaxell/random-lib": "~1.1", + "phpunit/PHPUnit": "~4.0" + } +} -- cgit