-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
38 lines (38 loc) · 1016 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
{
"name": "mx/module-phinx-migrations",
"description": "Magento 2 module that integrates phinx DB migrations as a replacement for the default setup upgrade, therefore enabling zero downtime deployments.",
"version": "1.1.1",
"type": "magento2-module",
"license": "proprietary",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": ">=7.0",
"magento/module-eav": "^101.0|^102.0",
"magento/framework": "^101.0|^102.0",
"robmorgan/phinx": "^0.9.2",
"zendframework/zend-http": "^2.0"
},
"autoload": {
"files": [
"registration.php",
"etc/db-config.php"
],
"psr-4": {
"MX\\PhinxMigrations\\": "src"
}
},
"authors": [
{
"name": "James Halsall",
"email": "james.halsall@inviqa.com"
}
],
"config": {
"bin-dir": "bin/"
}
}