summaryrefslogtreecommitdiffstats
path: root/vendor/shardj/zf1-future/composer.json
blob: eab8bcded74d7d5564eb66720018ab5bab177cc2 (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
{
    "name": "shardj/zf1-future",
    "description": "Zend Framework 1. The aim is to keep ZF1 working with the latest PHP versions",
    "type": "library",
    "version": "1.23.5",
    "keywords": [
        "framework",
        "zf1"
    ],
    "homepage": "http://framework.zend.com/",
    "license": "BSD-3-Clause",
    "require": {
        "php": ">=7.1",
        "symfony/polyfill-php81": "^1.24",
        "symfony/polyfill-ctype": "^1.27",
        "symfony/polyfill-mbstring": "^1.26"
    },
    "suggest": {
        "ext-mbstring": "Multibyte strings handling"
    },
    "autoload": {
        "psr-0": {
            "Zend_": "library/"
        }
    },
    "include-path": [
        "library/"
    ],
    "config": {
        "bin-dir": "bin"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.12.x-dev"
        }
    },
    "require-dev": {
        "phpunit/phpunit": "^7|^8|^9",
        "php-parallel-lint/php-parallel-lint": "^1.3",
        "rector/rector": "^0.12.19",
        "yoast/phpunit-polyfills": "2.0"
    },
    "archive": {
        "exclude": ["/demos", "/documentation", "/tests"]
    },
    "replace": {
        "zendframework/zendframework1": ">=1.12.20"
    },
    "scripts": {
        "lint": "parallel-lint --exclude vendor --exclude tests/Zend/Loader/_files/ParseError.php .",
        "test": [
            "Composer\\Config::disableProcessTimeout",
            "phpunit --bootstrap tests/TestHelper.php tests/Zend/AllTests.php"
        ]
    },
    "autoload-dev": {
        "psr-0": {
            "Zend_": "tests/",
            "resources_": "tests/"
        }
    }
}