-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.65 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "stule-ru/modernpdo",
"type": "library",
"description": "The source code of the simple PDO library.",
"keywords": [
"php",
"modern-php",
"php-database",
"php-mysql",
"php-mariadb",
"pdo"
],
"license": "MIT",
"authors": [
{
"name": "StulE",
"homepage": "https://github.com/StulE-ru"
},
{
"name": "Deff",
"homepage": "https://github.com/deff-dev"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"vimeo/psalm": "^5.13",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.15"
},
"scripts": {
"tests": "phpunit",
"i-tests": "phpunit --testsuite Integration",
"u-tests": "phpunit --testsuite Unit",
"ca-tests": "phpunit --coverage-text",
"ica-tests": "phpunit --testsuite Integration --coverage-text",
"uca-tests": "phpunit --testsuite Unit --coverage-text",
"stan": "phpstan analyse --error-format=checkstyle -c phpstan.neon > phpstan-report.xml",
"stan-bl": "phpstan analyse -c phpstan.neon -b --allow-empty-baseline",
"salm": "psalm --output-format=checkstyle > psalm-report.xml",
"salm-bl": "psalm --set-baseline=psalm-baseline.xml",
"csfix": "php-cs-fixer fix --using-cache no"
},
"autoload": {
"psr-4": {
"ModernPDO\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ModernPDO\\Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true
}
}