-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 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
{
"name": "fabiang/doctrine-migrations-liquibase-laminas",
"description": "Laminas module for creating changesets for Liquibase with Doctrine",
"type": "library",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Fabian Grutschus",
"email": "f.grutschus@lubyte.de"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"doctrine/doctrine-module": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"doctrine/orm": "^2.5",
"fabiang/doctrine-migrations-liquibase": "^2.0",
"laminas/laminas-modulemanager": "^2.8",
"laminas/laminas-servicemanager": "^3.0",
"symfony/console": "^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Fabiang\\DoctrineMigrationsLiquibase\\": "src/"
}
},
"extra": {
"laminas": {
"module": "Fabiang\\DoctrineMigrationsLiquibase"
}
},
"replace": {
"fabiang/doctrine-migrations-liquibase-zf": "self.version"
},
"require-dev": {
"phpunit/phpunit": "^9.5 || ^10.0",
"phpspec/prophecy-phpunit": "^2.0"
},
"config": {
"sort-packages": true
}
}