composer.json 1.02 KB
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 Mcrypt extensions is unavailable"
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "extra": {
        "branch-alias": {
            "dev-master": "2.7-dev",
            "dev-develop": "2.8-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"
    }
}