forked from Toilal/doctrine-migrations-liquibase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.55 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
49
50
51
52
53
54
{
"name": "fabiang/doctrine-migrations-liquibase",
"description": "Generate Liquibase ChangeLog from Doctrine Entities",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Rémi Alvergnat",
"email": "toilal.dev@gmail.com"
},
{
"name": "Fabian Grutschus",
"email": "github@lubyte.de"
}
],
"autoload": {
"psr-4": {
"Fabiang\\Doctrine\\Migrations\\Liquibase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Fabiang\\Doctrine\\Migrations\\Liquibase\\": "tests/integration/"
}
},
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"doctrine/orm": "^2.11",
"doctrine/dbal": "^3.1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5 || ^10.0",
"thomasweinert/phpunit-xpath-assertions": "^3.0",
"phpspec/prophecy-phpunit": "^2.0",
"vimeo/psalm": "^4.23",
"doctrine/cache": "^2.1",
"phpspec/prophecy": "^1.14",
"laminas/laminas-coding-standard": "^2.3",
"doctrine/annotations": "^1.13 || ^2.0"
},
"replace": {
"toilal/doctrine-migrations-liquibase": "self.version"
},
"scripts": {
"lint": "psalm --no-cache",
"test": "phpunit --testsuite=unit --verbose",
"integration": "phpunit --testsuite=integration --verbose"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}