summaryrefslogtreecommitdiffstats
path: root/composer-dev.json
blob: 48e7d4697f31134e02fb8be30ac525fff49af166 (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
{
    "name":              "ocramius/proxy-manager",
    "description":       "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
    "type":              "library",
    "license":           "MIT",
    "homepage":          "https://github.com/Ocramius/ProxyManager",
    "keywords":          [
        "proxy",
        "proxy pattern",
        "service proxies",
        "lazy loading",
        "aop"
    ],
    "authors": [
        {
            "name":     "Marco Pivetta",
            "email":    "ocramius@gmail.com",
            "homepage": "http://ocramius.github.io/"
        }
    ],
    "require": {
        "php":                       "7.0.0 - 7.0.5 || ^7.0.7",
        "zendframework/zend-code":   "3.0.0 - 3.0.2 || ^3.0.4",
        "ocramius/package-versions": "^1.0"
    },
    "require-dev": {
        "ext-phar":                    "*",
        "phpunit/phpunit":             "^5.4.6",
        "squizlabs/php_codesniffer":   "^2.6.0",
        "couscous/couscous":           "^1.4.0",
        "phpbench/phpbench":            "^0.11.2"
    },
    "suggest": {
        "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
        "zendframework/zend-xmlrpc":   "To have the XmlRpc adapter (Remote Object feature)",
        "zendframework/zend-json":     "To have the JsonRpc adapter (Remote Object feature)",
        "zendframework/zend-soap":     "To have the Soap adapter (Remote Object feature)"
    },
    "autoload": {
        "psr-0": {
            "ProxyManager\\": "src"
        }
    },
    "autoload-dev": {
        "psr-0": {
            "ProxyManagerBench\\": "tests",
            "ProxyManagerTest\\": "tests",
            "ProxyManagerTestAsset\\": "tests"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "3.0.x-dev"
        }
    }
}