summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 989a60dc83ad9818a2a014fca9cc2dae10df7820 (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
{
    "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.2.0",
        "zendframework/zend-code":   "^3.3.0",
        "ocramius/package-versions": "^1.1.3"
    },
    "require-dev": {
        "ext-phar":                     "*",
        "phpunit/phpunit":              "^6.4.3",
        "squizlabs/php_codesniffer":    "^2.9.1",
        "couscous/couscous":            "^1.6.1",
        "phpbench/phpbench":            "^0.12.2",
        "phpstan/phpstan":              "dev-master#856eb10a81c1d27c701a83f167dc870fd8f4236a as 0.9.999",
        "phpstan/phpstan-phpunit":      "dev-master#5629c0a1f4a9c417cb1077cf6693ad9753895761",
        "nikic/php-parser":             "^3.1.1",
        "humbug/humbug":                "1.0.0-RC.0@RC",
        "padraic/phpunit-accelerator":  "dev-master@DEV"
    },
    "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"
        }
    }
}