-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
48 lines (48 loc) · 1.23 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
46
47
48
{
"name": "antonkomarev/php-db-migration-validator",
"description": "Validate PHP database migration files",
"type": "library",
"license": "MIT",
"keywords": [
"database",
"db",
"migration",
"validation"
],
"authors": [
{
"name": "Anton Komarev",
"email": "[email protected]",
"homepage": "https://komarev.com",
"role": "Developer"
}
],
"homepage": "https://komarev.com/sources/php-db-migration-validator",
"support": {
"email": "[email protected]",
"issues": "https://github.com/antonkomarev/php-db-migration-validator/issues",
"source": "https://github.com/cybercog/php-db-migration-validator",
"docs": "https://github.com/cybercog/php-db-migration-validator"
},
"require": {
"php": "^7.1|^8.0",
"nikic/php-parser": "^4.13"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"AK\\DbMigrationValidator\\": "src/"
}
},
"autoload-dev": {
},
"bin": [
"bin/php-db-migration-validator"
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable" : true
}