-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
42 lines (42 loc) · 1.14 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": "sylius-labs/doctrine-migrations-extra-bundle",
"type": "bundle",
"license": "MIT",
"authors": [
{
"name": "Kamil Kokot",
"email": "[email protected]",
"homepage": "https://kamilkokot.com"
}
],
"require": {
"php": "^8.1",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/migrations": "^3.0",
"marcj/topsort": "^1.1",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"infection/infection": "^0.28",
"matthiasnoback/symfony-config-test": "^5.1",
"matthiasnoback/symfony-dependency-injection-test": "^5.1",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"infection/extension-installer": true
}
},
"autoload": {
"psr-4": {
"SyliusLabs\\DoctrineMigrationsExtraBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\SyliusLabs\\DoctrineMigrationsExtraBundle\\": "tests/"
}
}
}