summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 004d8bdefefdc2f08d300e483af61c80412af2bd (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
    "name": "friendsofphp/php-cs-fixer",
    "type": "application",
    "description": "A tool to automatically fix PHP code style",
    "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",
        "ext-json": "*",
        "ext-tokenizer": "*",
        "composer/semver": "^1.4",
        "composer/xdebug-handler": "^1.2",
        "doctrine/annotations": "^1.2",
        "php-cs-fixer/diff": "^1.3",
        "symfony/console": "^3.4.17 || ^4.1.6",
        "symfony/event-dispatcher": "^3.0 || ^4.0",
        "symfony/filesystem": "^3.0 || ^4.0",
        "symfony/finder": "^3.0 || ^4.0",
        "symfony/options-resolver": "^3.0 || ^4.0",
        "symfony/polyfill-php70": "^1.0",
        "symfony/polyfill-php72": "^1.4",
        "symfony/process": "^3.0 || ^4.0",
        "symfony/stopwatch": "^3.0 || ^4.0"
    },
    "conflict": {
        "hhvm": "*"
    },
    "require-dev": {
        "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
        "justinrainbow/json-schema": "^5.0",
        "keradus/cli-executor": "^1.2",
        "mikey179/vfsStream": "^1.6",
        "php-coveralls/php-coveralls": "^2.1",
        "php-cs-fixer/accessible-object": "^1.0",
        "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.0.1",
        "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.0.1",
        "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1",
        "phpunitgoodpractices/traits": "^1.5.1",
        "symfony/phpunit-bridge": "^4.0"
    },
    "suggest": {
        "ext-mbstring": "For handling non-UTF8 characters in cache signature.",
        "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
        "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
        "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
    },
    "config": {
        "sort-packages": true
    },
    "autoload": {
        "psr-4": {
            "PhpCsFixer\\": "src/"
        },
        "classmap": [
            "tests/Test/AbstractFixerTestCase.php",
            "tests/Test/AbstractIntegrationCaseFactory.php",
            "tests/Test/AbstractIntegrationTestCase.php",
            "tests/Test/Assert/AssertTokensTrait.php",
            "tests/Test/IntegrationCase.php",
            "tests/Test/IntegrationCaseFactory.php",
            "tests/Test/IntegrationCaseFactoryInterface.php",
            "tests/Test/InternalIntegrationCaseFactory.php",
            "tests/TestCase.php"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "PhpCsFixer\\Tests\\": "tests/"
        }
    },
    "bin": [
        "php-cs-fixer"
    ]
}