forked from doctrine/sql-formatter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 995 Bytes
/
composer.json
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
{
"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": "[email protected]",
"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.1.0"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"bin": ["bin/sql-formatter"]
}