-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.23 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
{
"name": "shopsys/migrations",
"type": "library",
"description": "Symfony bundle providing commands for transactional Doctrine database migrations",
"keywords": ["database", "migrations", "migrate", "schema", "ORM", "Doctrine"],
"license": "MIT",
"authors": [
{
"name": "Shopsys",
"homepage": "https://www.shopsys.com/"
}
],
"autoload": {
"psr-4": {
"Shopsys\\MigrationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\MigrationBundle\\": "tests/"
}
},
"require": {
"php": "^8.3",
"doctrine/dbal": "^3.8.5",
"doctrine/doctrine-migrations-bundle": "^3.2.2",
"doctrine/migrations": "^3.4.1",
"doctrine/orm": "^2.5",
"jdorn/sql-formatter": "^1.2",
"psr/log": "^2.0",
"symfony/config": "^6.4",
"symfony/console": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/filesystem": "^6.4",
"symfony/framework-bundle": "^6.4",
"symfony/http-kernel": "^6.4",
"symfony/templating": "^6.4",
"symfony/yaml": "^6.4"
},
"require-dev": {
"phpunit/phpunit": "^11.2.1"
}
}