summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 32f29efd62c4de90d0e9d8c12474e6370012daf8 (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
{
    "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.6 || ^7.0 || ^8.0"
    },
    "require-dev": {
        "symfony/phpunit-bridge": "^5.1"
    },
    "config": {
        "optimize-autoloader": true,
        "sort-packages": true
    },
    "autoload": {
        "psr-4": { "PhpCsFixer\\AccessibleObject\\": "src/" }
    },
    "autoload-dev": {
        "psr-4": { "PhpCsFixer\\AccessibleObject\\Tests\\": "tests/" }
    }
}