-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.26 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
{
"name": "janalis/doctrineviz",
"description": "Render a graphical representation of a Doctrine2 mapped database",
"type": "symfony-bundle",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Pierre Hennequart",
"email": "pierre@janalis.com"
}
],
"autoload": {
"psr-4": {
"Janalis\\Doctrineviz\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Janalis\\Doctrineviz\\Test\\": "test"
}
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"symfony/symfony": "^3.4",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"symfony/monolog-bundle": "^3.1.0",
"symfony/phpunit-bridge": "^3.0",
"phpunit/phpunit": "^6.2",
"satooshi/php-coveralls": "^1.0",
"incenteev/composer-parameter-handler": "^2.1"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "env/config/parameters.yml"
}
}
}