-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.12 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "google/sqlcommenter-laravel",
"description": "SQLCommenter implementation for Laravel. 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, route and opentelemetry traceparent.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Google Developers",
"email": "sqlcommenter@googlegroups.com",
"role": "Developer"
}],
"require": {
"open-telemetry/opentelemetry": "~1.0.0",
"php-http/guzzle7-adapter": "^1.0",
"php-http/message-factory": "^1.1"
},
"autoload": {
"psr-4": {
"Google\\GoogleSqlCommenterLaravel\\": "src"
},
"classmap": [
"src/"
]
},
"extra": {
"laravel": {
"providers": [
"Google\\GoogleSqlCommenterLaravel\\GoogleSqlCommenterServiceProvider"
]
}
},
"scripts": {
"format": "phpcbf --standard=psr2 src/"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}