-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (57 loc) · 1.29 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (57 loc) · 1.29 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
51
52
53
54
55
56
57
58
{
"name": "graze/morphism",
"type": "library",
"description": "MySQL Database Migration",
"keywords": [
"mysql",
"database",
"migration",
"migrate"
],
"homepage": "https://github.com/graze/morphism",
"license": "MIT",
"config": {
"platform": {
"php": "7.4"
}
},
"authors": [
{
"name": "Burhan Ali",
"email": "burhan@graze.com",
"role": "Developer"
},
{
"name": "Graze Developers",
"email": "developers@graze.com",
"homepage": "http://www.graze.com",
"role": "Development Team"
}
],
"require": {
"php": "^7.4 || ^8.0",
"doctrine/dbal": "^2.5",
"symfony/console": "^5",
"symfony/yaml": "^5"
},
"require-dev": {
"graze/standards": "^3.0",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^4.0",
"symfony/var-dumper": "^4.2 || ^5.0"
},
"autoload": {
"psr-4": {
"Graze\\Morphism\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Graze\\Morphism\\Test\\" : "tests/"
}
},
"bin": [
"./bin/morphism"
]
}