summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 63a24cef2d6a1f332774cad1e7a3f2d33f7263fa (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
{
    "name": "zendframework/zend-authentication",
    "description": "provides an API for authentication and includes concrete authentication adapters for common use case scenarios",
    "license": "BSD-3-Clause",
    "keywords": [
        "zf2",
        "authentication"
    ],
    "homepage": "https://github.com/zendframework/zend-authentication",
    "autoload": {
        "psr-4": {
            "Zend\\Authentication\\": "src/"
        }
    },
    "require": {
        "php": "^5.5 || ^7.0",
        "zendframework/zend-stdlib": "^2.7 || ^3.0"
    },
    "require-dev": {
        "zendframework/zend-db": "^2.7",
        "zendframework/zend-crypt": "^2.6",
        "zendframework/zend-http": "^2.5.4",
        "zendframework/zend-ldap": "^2.6",
        "zendframework/zend-session": "^2.6.2",
        "zendframework/zend-validator": "^2.6",
        "zendframework/zend-uri": "^2.5",
        "fabpot/php-cs-fixer": "1.7.*",
        "phpunit/PHPUnit": "~4.0"
    },
    "suggest": {
        "zendframework/zend-db": "Zend\\Db component",
        "zendframework/zend-crypt": "Zend\\Crypt component",
        "zendframework/zend-http": "Zend\\Http component",
        "zendframework/zend-ldap": "Zend\\Ldap component",
        "zendframework/zend-session": "Zend\\Session component",
        "zendframework/zend-uri": "Zend\\Uri component",
        "zendframework/zend-validator": "Zend\\Validator component"
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "extra": {
        "branch-alias": {
            "dev-master": "2.5-dev",
            "dev-develop": "2.6-dev"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "ZendTest\\Authentication\\": "test/"
        }
    }
}