Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ updates:
- "/src/Instrumentation/Psr18"
- "/src/Instrumentation/Psr3"
- "/src/Instrumentation/Psr6"
- "/src/Instrumentation/ReactHttp"
- "/src/Instrumentation/Slim"
- "/src/Instrumentation/Symfony"
- "/src/Instrumentation/Wordpress"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
'Instrumentation/Psr15',
'Instrumentation/Psr16',
'Instrumentation/Psr18',
'Instrumentation/ReactHttp',
'Instrumentation/Slim',
'Instrumentation/Symfony',
'Instrumentation/Yii',
Expand Down
2 changes: 2 additions & 0 deletions .gitsplit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ splits:
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-psr16.git"
- prefix: "src/Instrumentation/Psr18"
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-psr18.git"
- prefix: "src/Instrumentation/ReactHttp"
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-react-http.git"
- prefix: "src/Instrumentation/Slim"
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-slim.git"
- prefix: "src/Instrumentation/Symfony"
Expand Down
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"OpenTelemetry\\Contrib\\Instrumentation\\Psr3\\": "src/Instrumentation/Psr3/src",
"OpenTelemetry\\Contrib\\Instrumentation\\Psr15\\": "src/Instrumentation/Psr15/src",
"OpenTelemetry\\Contrib\\Instrumentation\\Psr18\\": "src/Instrumentation/Psr18/src",
"OpenTelemetry\\Contrib\\Instrumentation\\ReactHttp\\": "src/Instrumentation/ReactHttp/src",
"OpenTelemetry\\Contrib\\Instrumentation\\Slim\\": "src/Instrumentation/Slim/src",
"OpenTelemetry\\Contrib\\Instrumentation\\Symfony\\": "src/Instrumentation/Symfony/src",
"OpenTelemetry\\Contrib\\Instrumentation\\Wordpress\\": "src/Instrumentation/Wordpress/src",
Expand All @@ -53,6 +54,7 @@
"src/Instrumentation/Psr3/_register.php",
"src/Instrumentation/Psr15/_register.php",
"src/Instrumentation/Psr18/_register.php",
"src/Instrumentation/ReactHttp/_register.php",
"src/Instrumentation/Slim/_register.php",
"src/Instrumentation/Symfony/_register.php",
"src/Instrumentation/Wordpress/_register.php",
Expand All @@ -79,6 +81,7 @@
"open-telemetry/opentelemetry-auto-psr3": "self.version",
"open-telemetry/opentelemetry-auto-psr15": "self.version",
"open-telemetry/opentelemetry-auto-psr18": "self.version",
"open-telemetry/opentelemetry-auto-react-http": "self.version",
"open-telemetry/opentelemetry-auto-slim": "self.version",
"open-telemetry/opentelemetry-auto-symfony": "self.version",
"open-telemetry/opentelemetry-auto-wordpress": "self.version",
Expand Down
14 changes: 14 additions & 0 deletions src/Instrumentation/ReactHttp/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
* text=auto

*.md diff=markdown
*.php diff=php

/.gitattributes export-ignore
/.gitignore export-ignore
/.phan export-ignore
/.php-cs-fixer.php export-ignore
/examples export-ignore
/phpstan.neon.dist export-ignore
/phpunit.xml.dist export-ignore
/psalm.xml.dist export-ignore
/tests export-ignore
1 change: 1 addition & 0 deletions src/Instrumentation/ReactHttp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/vendor/
Loading
Loading