-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.32 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
{
"name": "elao/command-migration",
"description": "PHP lib to run commands, for example on deployment.",
"license": "MIT",
"keywords": [],
"authors": [
{
"name": "Elao",
"homepage": "https://www.elao.com"
},
{
"name": "Nicolas Dievart",
"homepage": "https://github.com/NicolasDievart"
},
{
"name": "Cindy Liwenge",
"homepage": "https://github.com/Kinedie"
},
{
"name": "Richard Hanna",
"homepage": "https://github.com/supertanuki"
},
{
"name": "Mathieu Marchois",
"homepage": "https://github.com/mmarchois"
}
],
"autoload": {
"psr-4": {
"Elao\\CommandMigration\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Elao\\CommandMigration\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.2.0",
"doctrine/dbal": "^2.6.0",
"symfony/console": "~3.4|~4.1",
"symfony/event-dispatcher": "~3.4|~4.1",
"symfony/process": "~3.4|~4.1",
"symfony/yaml": "~3.4|~4.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"friendsofphp/php-cs-fixer": "^2.13"
},
"bin": ["bin/elao-command-migration"]
}