forked from facile-it/doctrine-mysql-come-back
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.23 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
{
"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": "[email protected]"
}
],
"require": {
"php" : "^7.3",
"doctrine/dbal": "^2.11"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"friendsofphp/php-cs-fixer": "^2.12.17",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": { "Facile\\DoctrineMySQLComeBack\\Doctrine\\DBAL\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"Facile\\DoctrineMySQLComeBack\\Doctrine\\DBAL\\FunctionalTest\\": "tests/functional/",
"Facile\\DoctrineMySQLComeBack\\Doctrine\\DBAL\\": "tests/unit/"
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable",
"scripts": {
"test": "phpunit",
"phpcs": "php-cs-fixer fix --level=psr2 -v --diff --dry-run src/",
"phpcs-fix": "php-cs-fixer fix --level=psr2 -v --diff src/"
}
}