-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.47 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
{
"name": "ibexa/doctrine-schema",
"description": "Abstraction layer, on top of Doctrine, for cross-DBMS schema import",
"type": "ibexa-bundle",
"license": "GPL-2.0-only",
"replace": {
"ezsystems/doctrine-dbal-schema": "*"
},
"require": {
"php": " >=8.3",
"doctrine/dbal": "^2.13",
"symfony/config": "^5.3",
"symfony/console": "^5.3",
"symfony/dependency-injection": "^5.3",
"symfony/http-kernel": "^5.3",
"symfony/yaml": "^5.3"
},
"require-dev": {
"ibexa/code-style": "~2.0.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Ibexa\\DoctrineSchema\\": "src/lib/",
"Ibexa\\Bundle\\DoctrineSchema\\": "src/bundle/",
"Ibexa\\Contracts\\DoctrineSchema\\": "src/contracts/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\DoctrineSchema\\": "tests/lib/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"check-cs": "@fix-cs --diff --dry-run",
"test": "phpunit -vc phpunit.xml",
"phpstan": "phpstan analyse -c phpstan.neon"
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
},
"config": {
"sort-packages": true
}
}