summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: d95f87549235d7555e16a8dc28bdefccb5770953 (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
{
    "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.1 || ^8.0"
    },
    "require-dev": {
        "bamarni/composer-bin-plugin": "^1.4"
    },
    "authors": [
        {
            "name": "Jeremy Dorn",
            "email": "jeremy@jeremydorn.com",
            "homepage": "https://jeremydorn.com/"
        }
    ],
    "autoload": {
        "psr-4": {
            "Doctrine\\SqlFormatter\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Doctrine\\SqlFormatter\\Tests\\": "tests"
        }
    },
    "config": {
        "allow-plugins": {
            "bamarni/composer-bin-plugin": true
        },
        "sort-packages": true,
        "platform": {
            "php": "7.1.0"
        }
    },
    "bin": ["bin/sql-formatter"]
}