-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
92 lines (92 loc) · 2.52 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "pine3ree/pine3ree-db",
"description": "A tiny PDO database abstraction layer",
"type": "library",
"keywords": [
"database",
"pdo",
"pine3ree",
"db",
"p3"
],
"homepage": "https://github.com/pine3ree/pine3ree-db",
"readme": "README.md",
"license": "BSD-3-Clause",
"authors": [
{
"name": "pine3ree",
"homepage": "https://github.com/pine3ree",
"role": "Developer"
}
],
"support": {
"docs": "https://github.com/pine3ree/pine3ree-db/blob/9.x-dev/README.md",
"issues": "https://github.com/pine3ree/pine3ree-db/issues",
"source": "https://github.com/pine3ree/pine3ree-db"
},
"config": {
"sort-packages": false
},
"extra": {
"branch-alias": {
"dev-master": "0.9.x-dev"
}
},
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0",
"ext-pdo": "*",
"ext-pcre": "*",
"psr/container": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.0.2",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^8.5.23",
"phpspec/prophecy-phpunit": "^1.1 || ^2.0",
"squizlabs/php_codesniffer": "^3.7.2"
},
"autoload": {
"psr-4": {
"pine3ree\\Db\\": "src/"
},
"files": [
"src/Sql/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"pine3ree\\DbTest\\": "test/"
}
},
"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"
]
}
}