summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 0c5d2062278dac54cd474579cb51bb053aaff55b (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
{
    "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.com/"
        }
    ],
    "require": {
        "php":                     ">=5.3.3",
        "zendframework/zend-code": ">2.2.5,<3.0"
    },
    "require-dev": {
        "ext-phar":                    "*",
        "phpunit/phpunit":             "~4.0",
        "squizlabs/php_codesniffer":   "1.5.*"
    },
    "suggest": {
        "zendframework/zend-stdlib":   "To use the hydrator proxy",
        "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": {
            "ProxyManagerTest\\": "tests",
            "ProxyManagerTestAsset\\": "tests"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "2.0.x-dev"
        }
    }
}