This repository has been archived by the owner on Dec 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
72 lines (72 loc) · 2.1 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "tilleuls/migration-bundle",
"type": "symfony-bundle",
"description": "Provides features for continuous migration.",
"keywords": [
"Migration",
"Loaders",
"Transformer"
],
"license": "MIT",
"homepage": "https://les-tilleuls.coop",
"authors": [
{
"name": "Vincent Chalamon",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"doctrine/annotations": "^1.2",
"doctrine/dbal": "^2.5",
"doctrine/doctrine-bundle": "^1.7.2 || ^2.0",
"doctrine/orm": "^2.6.3 || ^2.8-dev",
"psr/log": "^1.1",
"symfony/config": "^4.4 || ^5.0",
"symfony/console": "^4.4 || ^5.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/doctrine-bridge": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.1.5",
"symfony/stopwatch": "^4.4 || ^5.0"
},
"require-dev": {
"behat/behat": "^3.1",
"doctrine/data-fixtures": "^1.2",
"friends-of-behat/symfony-extension": "^2.1.0 || ^2.2-dev",
"ocramius/proxy-manager": "^2.0.4",
"phpspec/prophecy": "^1.10",
"phpstan/phpstan": "^0.12.17",
"symfony/browser-kit": "^4.4 || ^5.0",
"symfony/framework-bundle": "^4.4 || ^5.0",
"symfony/phpunit-bridge": "^5.0",
"zendframework/zend-code": "^3.4"
},
"autoload": {
"psr-4": {
"CoopTilleuls\\MigrationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CoopTilleuls\\MigrationBundle\\E2e\\": "features/app",
"CoopTilleuls\\MigrationBundle\\Tests\\": "tests",
"PHPUnit\\": "vendor/bin/.phpunit/phpunit-8.3-0/src"
}
},
"scripts": {
"post-install-cmd": [
"vendor/bin/simple-phpunit --version"
],
"post-update-cmd": [
"vendor/bin/simple-phpunit --version"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
},
"config": {
"sort-packages": true
}
}