forked from facile-it/doctrine-mysql-come-back
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.08 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
{
"name": "facile-it/doctrine-mysql-come-back",
"description": "Auto reconnect on Doctrine MySql has gone away exceptions on doctrine/dbal",
"keywords": ["mysql","doctrine","reconnect","refresh","connection","has gone away","exception"],
"license": "Apache-2.0",
"authors": [
{
"name": "Luca Bo",
"email": "luca.boeri@facile.it"
}
],
"require": {
"php" : "^5.6 || ^7.0",
"kdyby/doctrine": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^5.4.3 || ^6.0",
"friendsofphp/php-cs-fixer": "^2.3"
},
"autoload": {
"psr-4": { "Facile\\DoctrineMySQLComeBack\\Doctrine\\DBAL\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Facile\\DoctrineMySQLComeBack\\Doctrine\\DBAL\\": "tests/unit/" }
},
"config": {
"preferred-install": "dist",
"bin-dir": "bin"
},
"minimum-stability": "stable",
"scripts": {
"phpcs": "php-cs-fixer fix --level=psr2 -v --diff --dry-run src/",
"phpcs-fix": "php-cs-fixer fix --level=psr2 -v --diff src/"
}
}