-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "pine3ree/pine3ree-pdo",
"description": "A tiny PDO wrapper for lazy instantiation and query profiling",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"lazy-pdo",
"pdo",
"database",
"pine3ree"
],
"homepage": "https://github.com/pine3ree/pine3ree-pdo",
"support": {
"docs": "https://github.com/pine3ree/pine3ree-pdo/blob/3.0.x/README.md",
"license": "https://github.com/pine3ree/pine3ree-pdo/blob/3.0.x/LICENSE.md",
"issues": "https://github.com/pine3ree/pine3ree-pdo/issues",
"source": "https://github.com/pine3ree/pine3ree-pdo"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ocramius/package-versions": true
}
},
"conflict": {
"pine3ree/p3-pdo": "*"
},
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"ext-pdo": "*"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^9.6.13",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"files": [
],
"psr-4": {
"pine3ree\\": "src/"
}
},
"scripts": {
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"cs": "@phpcs",
"cbf": "@phpcbf",
"check-cs": "@phpcs",
"fix-cs": "@phpcbf",
"cs-check": "@phpcs",
"cs-fix": "@phpcbf",
"phpstan": "phpstan analyze -c phpstan.neon",
"stan": "@phpstan",
"static-analysis": [
"@phpstan"
],
"phpunit": "phpunit --colors=always",
"test": "@phpunit",
"check": [
"@phpcs",
"@static-analysis",
"@test"
],
"test-coverage": "@test-coverage-clover",
"test-coverage-clover": "phpunit --colors=always --coverage-clover clover.xml",
"test-coverage-html": "phpunit --colors=always --coverage-html coverage/html",
"test-coverage-xml": "phpunit --colors=always --coverage-xml coverage/xml",
"test-coverage-all": [
"@test-coverage-html",
"@test-coverage-xml",
"@test-coverage-clover"
]
}
}