-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.88 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.88 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
60
{
"name": "aymdev/fregata-bundle",
"description": "Symfony bundle for the Fregata migration framework.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "AymDev",
"email": "aymericmayeux@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"aymdev/fregata": "^1.1.0",
"symfony/http-kernel": "^4.4||^5.0",
"symfony/dependency-injection": "^4.4||^5.0",
"symfony/config": "^4.4||^5.0",
"symfony/framework-bundle": "^4.4||^5.0",
"doctrine/doctrine-bundle": "^2.4",
"doctrine/orm": "^2.11",
"symfony/messenger": "^4.4||^5.0",
"symfony/asset": "^4.4||^5.0",
"symfony/form": "^4.4||^5.0",
"symfony/validator": "^4.4||^5.0",
"symfony/security-csrf": "^4.4||^5.0"
},
"autoload": {
"psr-4": {
"Fregata\\FregataBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Fregata\\FregataBundle\\": "tests/",
"App\\": "tests/Fixtures/src/"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4||^5.0",
"dama/doctrine-test-bundle": "^6.7",
"symfony/browser-kit": "^5.4",
"symfony/twig-bundle": "^5.4",
"symfony/css-selector": "^5.4",
"squizlabs/php_codesniffer": "^3.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.6",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-strict-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.1"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"symfony/flex": true
}
}
}