-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.61 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.61 KB
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
52
53
54
55
56
57
58
59
{
"name": "aymdev/fregata",
"description": "Database migration framework allowing data migration between different DBMS or database structures.",
"type": "framework",
"keywords": [
"database",
"doctrine",
"migration",
"migration-framework",
"migration-tool",
"sql"
],
"license": "MIT",
"authors": [
{
"name": "AymDev",
"email": "aymericmayeux@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"doctrine/dbal": "^2.10",
"symfony/console": "^4.4||^5.0||^6.0",
"symfony/yaml": "^4.4||^5.0||^6.0",
"symfony/config": "^4.4||^5.0||^6.0",
"symfony/dependency-injection": "^4.4||^5.0||^6.0",
"hanneskod/classtools": "^1.2",
"marcj/topsort": "^2.0",
"symfony/string": "^5.0||^6.0"
},
"autoload": {
"psr-4": {
"Fregata\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fregata\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"mikey179/vfsstream": "^1.6",
"squizlabs/php_codesniffer": "^3.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.1",
"sebastian/phpcpd": "^6.0"
},
"bin": ["bin/fregata"],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}