summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 46f6af007847559b8325ce4d32caf475546d2f5c (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
{
    "name": "zendframework/zend-stdlib",
    "description": " ",
    "license": "BSD-3-Clause",
    "keywords": [
        "zf2",
        "stdlib"
    ],
    "homepage": "https://github.com/zendframework/zend-stdlib",
    "autoload": {
        "psr-4": {
            "Zend\\Stdlib\\": "src/"
        }
    },
    "require": {
        "php": "^5.5 || ^7.0"
    },
    "require-dev": {
        "fabpot/php-cs-fixer": "1.7.*",
        "phpunit/PHPUnit": "~4.0",
        "athletic/athletic": "~0.1"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "3.0-dev",
            "dev-develop": "3.1-dev"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "ZendTest\\Stdlib\\": "test/",
            "ZendBench\\Stdlib\\": "benchmark/"
        }
    }
}