-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.53 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.53 KB
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
52
53
54
55
56
{
"name": "abacaphiliac/doctrine-psr-sql-logger",
"description": "PSR-3 Compliant Doctrine SQL Logger",
"minimum-stability": "stable",
"type": "library",
"keywords": [
"dbal",
"doctrine",
"log",
"psr",
"sql"
],
"license": "MIT",
"autoload": {
"psr-4": {
"Abacaphiliac\\Doctrine\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AbacaphiliacTest\\Doctrine\\": "test"
}
},
"config": {
"sort-packages": true
},
"require" : {
"php": "^7.2 || ^8.0",
"doctrine/dbal": "^2.5.14",
"psr/log": "^1.1"
},
"require-dev" : {
"infection/infection": "^0.8 || ^0.18.2",
"php-parallel-lint/php-parallel-lint": "^1.3",
"johnkary/phpunit-speedtrap": "^4.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^6.5 || ^8.5.16",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.4"
},
"scripts": {
"build": [
"composer lint:syntax",
"composer lint:style",
"composer test:units",
"composer test:phpstan",
"composer test:mutants"
],
"lint:beautify": "vendor/bin/phpcbf --standard=PSR2 --extensions=php --severity=1 src/ test/ -v",
"lint:style": "vendor/bin/phpcs --standard=PSR2 --extensions=php --severity=1 src/ test/ -v",
"lint:syntax": "vendor/bin/parallel-lint src/ test/",
"test:mutants": "XDEBUG_MODE=coverage vendor/bin/infection",
"test:phpstan": "vendor/bin/phpstan analyse --level=5 src/ test/",
"test:units": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text"
}
}