-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.13 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.13 KB
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
49
50
{
"name": "dbdiff/dbdiff",
"type": "project",
"authors": [
{
"name": "Jasdeep Khalsa"
}
],
"license": "MIT",
"bin": [
"./dbdiff"
],
"autoload": {
"psr-4": {
"DBDiff\\": "src/"
},
"files": [
"src/Version.php"
]
},
"prefer-stable": true,
"config": {
"platform": {
"php": "8.1"
}
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"aura/cli": "2.*@dev",
"symfony/console": "^5.4|^6.0|^7.0",
"symfony/yaml": "^5.1|^6.0|^7.0",
"illuminate/database": "^8|^9|^10|^11",
"illuminate/view": "^8|^9|^10|^11",
"illuminate/container": "^8|^9|^10|^11",
"diff/diff": "~3.0"
},
"require-dev": {
"ext-pdo": "*",
"phpunit/phpunit": "^9.4.3|^10.0|^11.0"
},
"scripts": {
"post-install-cmd": "scripts/post-install.sh",
"post-update-cmd": "scripts/post-install.sh",
"build:phar": "vendor/bin/box compile"
},
"support": {
"email": "[email protected]"
}
}