summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: f2594e25d5ab71ffe4400ed4e50e8e0681100db6 (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
{
    "name": "php-cs-fixer/accessible-object",
    "type": "application",
    "description": "A library to reveal object internals.",
    "license": "MIT",
    "authors": [
        {
            "name": "Fabien Potencier",
            "email": "fabien@symfony.com"
        },
        {
            "name": "Dariusz RumiƄski",
            "email": "dariusz.ruminski@gmail.com"
        }
    ],
    "require": {
        "php": "^5.3 || ^7.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^4.8.35 || ^5.4.3",
        "symfony/phpunit-bridge": "^3.2.2"
    },
    "conflict": {
        "hhvm": "*"
    },
    "config": {
        "optimize-autoloader": true,
        "sort-packages": true
    },
    "autoload": {
        "psr-4": { "PhpCsFixer\\AccessibleObject\\": "src/" }
    },
    "autoload-dev": {
        "psr-4": { "PhpCsFixer\\AccessibleObject\\Tests\\": "tests/" }
    }
}