-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.18 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
{
"name": "marein/symfony-lock-doctrine-migrations-bundle",
"description": "Perform concurrent doctrine migrations safely.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Markus Reinhold",
"email": "markusreinhold@icloud.com"
}
],
"autoload": {
"psr-4": {
"Marein\\LockDoctrineMigrationsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Marein\\LockDoctrineMigrationsBundle\\Tests\\": "tests"
}
},
"require": {
"php": "^8.0",
"doctrine/dbal": "^2.12 || ^3.0 || ^4.0",
"doctrine/doctrine-bundle": "^2.2",
"doctrine/doctrine-migrations-bundle": "^3.0",
"symfony/config": "^5.2 || ^6.0 || ^7.0",
"symfony/console": "^5.2 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.2 || ^6.0 || ^7.0",
"symfony/http-foundation": "^5.2 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.2 || ^6.0 || ^7.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.6.1",
"phpstan/phpstan": "1.10.50",
"phpunit/phpunit": "^9.5",
"symfony/framework-bundle": "^5.2 || ^6.0 || ^7.0"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}