summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 496ee8e3c7f731546719aeeabb0e08070ef9b7ae (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
{
    "name": "doctrine/sql-formatter",
    "description": "a PHP SQL highlighting library",
    "homepage": "https://github.com/doctrine/sql-formatter/",
    "keywords": ["sql", "highlight"],
    "license": "MIT",
    "type": "library",
    "require": {
        "php": "^7.2"
    },
    "require-dev": {
        "doctrine/coding-standard": "^7.0",
        "phpstan/phpstan": "^0.12.18",
        "phpunit/phpunit": "^8.0",
        "psalm/plugin-phpunit": "^0.10.0",
        "vimeo/psalm": "^3.10"
    },
    "authors": [
        {
            "name": "Jeremy Dorn",
            "email": "jeremy@jeremydorn.com",
            "homepage": "http://jeremydorn.com/"
        }
    ],
    "autoload": {
        "psr-4": {
            "Doctrine\\SqlFormatter\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Doctrine\\SqlFormatter\\Tests\\": "tests"
        }
    },
    "config": {
        "sort-packages": true,
        "platform": {
            "php": "7.2.0"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.x-dev"
        }
    },
    "bin": ["bin/sql-formatter"]
}