-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.01 KB
/
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
44
45
{
"name": "peehaa/migres",
"description": "Postgresql migration tool",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Pieter Hordijk",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.4",
"ext-ctype": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-readline": "*",
"league/climate": "^3.5"
},
"require-dev": {
"maglnet/composer-require-checker": "^2.0.0",
"phpstan/phpstan": "^0.11.12",
"phpunit/phpunit": "^8.2.5",
"slevomat/coding-standard": "^5.0.4",
"squizlabs/php_codesniffer": "^3.4.2"
},
"autoload": {
"psr-4": {
"PeeHaa\\Migres\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PeeHaa\\MigresTest\\": "tests/"
}
},
"bin": [
"bin/migres"
],
"config": {
"sort-packages": true
}
}