summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 5481614c45ee5284af333d34ba781847cad62f35 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
{
    "name": "zendframework/zend-crypt",
    "description": " ",
    "license": "BSD-3-Clause",
    "keywords": [
        "zf2",
        "crypt"
    ],
    "homepage": "https://github.com/zendframework/zend-crypt",
    "minimum-stability": "dev",
    "prefer-stable": true,
    "require": {
        "php": "^5.6 || ^7.0",
        "ext-mbstring": "*",
        "zendframework/zend-math": "^3.0",
        "zendframework/zend-stdlib": "^2.7 || ^3.0",
        "container-interop/container-interop": "~1.0"
    },
    "require-dev": {
        "squizlabs/php_codesniffer": "^2.3.1",
        "phpunit/PHPUnit": "^5.6.7"
    },
    "suggest": {
        "ext-openssl": "Required for most features of Zend\\Crypt"
    },
    "autoload": {
        "psr-4": {
            "Zend\\Crypt\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "ZendTest\\Crypt\\": "test/"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "3.1-dev",
            "dev-develop": "3.2-dev"
        }
    },
    "scripts": {
        "check": [
            "@cs-check",
            "@test"
        ],
        "upload-coverage": "coveralls -v",
        "cs-check": "phpcs",
        "cs-fix": "phpcbf",
        "test": "phpunit --colors=always",
        "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
    }
}