summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: f3d8e7602c7c9c5dd79e8276cf9d0a77bb06457b (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
{
    "name": "friendsofphp/php-cs-fixer",
    "description": "A tool to automatically fix PHP code style",
    "license": "MIT",
    "type": "application",
    "authors": [
        {
            "name": "Fabien Potencier",
            "email": "fabien@symfony.com"
        },
        {
            "name": "Dariusz RumiƄski",
            "email": "dariusz.ruminski@gmail.com"
        }
    ],
    "require": {
        "php": "^7.4 || ^8.0",
        "ext-json": "*",
        "ext-tokenizer": "*",
        "composer/semver": "^3.2",
        "composer/xdebug-handler": "^3.0",
        "doctrine/annotations": "^1.13",
        "php-cs-fixer/diff": "^2.0",
        "symfony/console": "^5.4 || ^6.0",
        "symfony/event-dispatcher": "^5.4 || ^6.0",
        "symfony/filesystem": "^5.4 || ^6.0",
        "symfony/finder": "^5.4 || ^6.0",
        "symfony/options-resolver": "^5.4 || ^6.0",
        "symfony/polyfill-mbstring": "^1.23",
        "symfony/polyfill-php80": "^1.23",
        "symfony/polyfill-php81": "^1.23",
        "symfony/process": "^5.4 || ^6.0",
        "symfony/stopwatch": "^5.4 || ^6.0"
    },
    "require-dev": {
        "justinrainbow/json-schema": "^5.2",
        "keradus/cli-executor": "^1.5",
        "mikey179/vfsstream": "^1.6.10",
        "php-coveralls/php-coveralls": "^2.5.2",
        "php-cs-fixer/accessible-object": "^1.1",
        "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
        "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
        "phpspec/prophecy": "^1.15",
        "phpspec/prophecy-phpunit": "^2.0",
        "phpunit/phpunit": "^9.5",
        "phpunitgoodpractices/polyfill": "^1.5",
        "phpunitgoodpractices/traits": "^1.9.1",
        "symfony/phpunit-bridge": "^6.0",
        "symfony/yaml": "^5.4 || ^6.0"
    },
    "suggest": {
        "ext-dom": "For handling output formats in XML",
        "ext-mbstring": "For handling non-UTF8 characters."
    },
    "autoload": {
        "psr-4": {
            "PhpCsFixer\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "PhpCsFixer\\Tests\\": "tests/"
        }
    },
    "bin": [
        "php-cs-fixer"
    ],
    "config": {
        "sort-packages": true
    }
}