summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 983bfa5e3724d7dd209c462c34cfe63075d51d42 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
    "name": "zendframework/zend-mvc",
    "description": " ",
    "license": "BSD-3-Clause",
    "keywords": [
        "zf2",
        "mvc"
    ],
    "homepage": "https://github.com/zendframework/zend-mvc",
    "autoload": {
        "psr-4": {
            "Zend\\Mvc\\": "src/"
        }
    },
    "require": {
        "container-interop/container-interop": "^1.1",
        "php": "^5.6 || ^7.0",
        "zendframework/zend-eventmanager": "^3.0",
        "zendframework/zend-http": "^2.5.4",
        "zendframework/zend-modulemanager": "^2.7.1",
        "zendframework/zend-router": "^3.0.1",
        "zendframework/zend-servicemanager": "^3.0.3",
        "zendframework/zend-stdlib": "^3.0",
        "zendframework/zend-view": "^2.6.7"
    },
    "require-dev": {
        "phpunit/phpunit": "^6.0.7 || ^5.7.14",
        "zendframework/zend-coding-standard": "~1.0.0",
        "zendframework/zend-json": "^2.6.1 || ^3.0",
        "zendframework/zend-psr7bridge": "^0.2",
        "zendframework/zend-stratigility": "^2.0.1"
    },
    "suggest": {
        "zendframework/zend-json": "(^2.6.1 || ^3.0) To auto-deserialize JSON body content in AbstractRestfulController extensions, when json_decode is unavailable",
        "zendframework/zend-log": "^2.9.1  To provide log functionality via LogFilterManager, LogFormatterManager, and LogProcessorManager",
        "zendframework/zend-mvc-console": "zend-mvc-console provides the ability to expose zend-mvc as a console application",
        "zendframework/zend-mvc-i18n": "zend-mvc-i18n provides integration with zend-i18n, including a translation bridge and translatable route segments",
        "zendframework/zend-mvc-plugin-fileprg": "To provide Post/Redirect/Get functionality around forms that container file uploads",
        "zendframework/zend-mvc-plugin-flashmessenger": "To provide flash messaging capabilities between requests",
        "zendframework/zend-mvc-plugin-identity": "To access the authenticated identity (per zend-authentication) in controllers",
        "zendframework/zend-mvc-plugin-prg": "To provide Post/Redirect/Get functionality within controllers",
        "zendframework/zend-paginator": "^2.7 To provide pagination functionality via PaginatorPluginManager",
        "zendframework/zend-psr7bridge": "(^0.2) To consume PSR-7 middleware within the MVC workflow",
        "zendframework/zend-servicemanager-di": "zend-servicemanager-di provides utilities for integrating zend-di and zend-servicemanager in your zend-mvc application",
        "zendframework/zend-stratigility": "zend-stratigility is required to use middleware pipes in the MiddlewareListener"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "branch-alias": {
            "dev-master": "3.1-dev",
            "dev-develop": "3.2-dev"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "ZendTest\\Mvc\\": "test/"
        },
        "files": [
            "test/_autoload.php"
        ]
    },
    "scripts": {
        "check": [
            "@cs-check",
            "@test"
        ],
        "cs-check": "phpcs",
        "cs-fix": "phpcbf",
        "test": "phpunit --colors=always",
        "test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
        "upload-coverage": "coveralls -v"
    }
}