-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 2.04 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 2.04 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "reinanhs/sqlcommenter-hyperf",
"description": "SQLCommenter implementation for Hyperf. SQLCommenter is a set of tools that augments SQL Statements with comments containing information about the code that caused its execution. These information can be action, controller, framework, db_driver and opentelemetry traceparent.",
"type": "library",
"license": "Apache-2.0",
"keywords": [
"php",
"hyperf",
"sqlcommenter"
],
"homepage": "https://github.com/reinanhs/sqlcommenter-hyperf",
"support": {
"issues": "https://github.com/reinanhs/sqlcommenter-hyperf",
"source": "https://github.com/reinanhs/sqlcommenter-hyperf",
"rss": "https://github.com/reinanhs/sqlcommenter-hyperf/releases.atom",
"security": "https://github.com/reinanhs/sqlcommenter-hyperf/security/advisories"
},
"authors": [
{
"name": "Reinan Souza",
"email": "[email protected]",
"role": "Author"
}
],
"require": {
"php": ">=8.1",
"hyperf/config": "~3.1.0",
"hyperf/database": "~3.1.0",
"hyperf/db-connection": "~3.1.0",
"hyperf/di": "~3.1.0",
"hyperf/http-server": "~3.1.0",
"hyperf/tracer": "~3.1.0"
},
"autoload": {
"psr-4": {
"ReinanHS\\SqlCommenterHyperf\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ReinanHS\\Test\\": "tests/"
}
},
"extra": {
"hyperf": {
"config": "ReinanHS\\SqlCommenterHyperf\\ConfigProvider"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpunit": "vendor/bin/phpunit tests --do-not-cache-result --colors=always",
"phpunit:coverage": [
"XDEBUG_MODE=coverage vendor/bin/phpunit tests --coverage-text --coverage-clover=coverage.xml"
],
"phpunit:coverage-html": [
"XDEBUG_MODE=coverage vendor/bin/phpunit tests --coverage-html reports/"
],
"psalm": "tools/psalm --no-cache",
"cs-fixer:check": "tools/php-cs-fixer check",
"cs-fixer:fix": "tools/php-cs-fixer fix"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.5"
}
}