-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.18 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
{
"name": "dmlogic/pdo-retry-wrapper",
"description": "PDO wrapper to gracefully handle dropped connections",
"autoload": {
"psr-4": {
"Dmlogic\\PdoRetryWrapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"authors": [
{
"name": "Darren Miller",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/database": "^8.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12.99",
"symfony/var-dumper": "^5.3",
"friendsofphp/php-cs-fixer": "^3.1"
},
"scripts": {
"phpunit": "./vendor/bin/phpunit --testdox",
"phpstan": "phpstan analyse src --level=0 --ansi",
"phpcs": "php-cs-fixer fix -v --diff --allow-risky=yes --verbose --format=txt --dry-run",
"phpcs-fix": "php-cs-fixer fix -v --diff --allow-risky=yes --verbose --format=txt",
"coverage": "./vendor/bin/phpunit --testdox --coverage-html coverage",
"test": [
"@phpstan",
"@phpcs",
"@phpunit"
]
}
}