-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.06 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
{
"name": "netbrothers-gmbh/version-bundle",
"description": "Trigger based version tables with MariaDB/MySQL and Doctrine",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Stefan Wessel",
"email": "[email protected]"
},
{
"name": "Thilo Ratnaweera",
"email": "[email protected]"
}
],
"keywords": [
"bundle",
"database",
"versioning",
"doctrine",
"mysql",
"mariadb"
],
"require": {
"php": ">=8.2",
"symfony/console": ">=7 <8",
"doctrine/orm": "*",
"doctrine/dbal": "^3.8"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.0"
},
"autoload": {
"psr-4": {
"NetBrothers\\VersionBundle\\": "src/"
}
},
"bin": [
"bin/netbrothers-version"
],
"scripts": {
"static-analysis": "[ $COMPOSER_DEV_MODE -eq 0 ] || phpstan"
}
}