Skip to content

Commit 9392573

Browse files
authored
ReactPHP HTTP Browser auto-instrumentation (#368)
1 parent da5f909 commit 9392573

22 files changed

+1498
-0
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ updates:
8282
- "/src/Instrumentation/Psr18"
8383
- "/src/Instrumentation/Psr3"
8484
- "/src/Instrumentation/Psr6"
85+
- "/src/Instrumentation/ReactPHP"
8586
- "/src/Instrumentation/Slim"
8687
- "/src/Instrumentation/Symfony"
8788
- "/src/Instrumentation/Wordpress"

.github/workflows/php.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
'Instrumentation/Psr15',
4444
'Instrumentation/Psr16',
4545
'Instrumentation/Psr18',
46+
'Instrumentation/ReactPHP',
4647
'Instrumentation/Slim',
4748
'Instrumentation/Symfony',
4849
'Instrumentation/Yii',

.gitsplit.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ splits:
4848
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-psr16.git"
4949
- prefix: "src/Instrumentation/Psr18"
5050
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-psr18.git"
51+
- prefix: "src/Instrumentation/ReactPHP"
52+
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-reactphp.git"
5153
- prefix: "src/Instrumentation/Slim"
5254
target: "https://${GH_TOKEN}@github.com/opentelemetry-php/contrib-auto-slim.git"
5355
- prefix: "src/Instrumentation/Symfony"

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"OpenTelemetry\\Contrib\\Instrumentation\\Psr3\\": "src/Instrumentation/Psr3/src",
3030
"OpenTelemetry\\Contrib\\Instrumentation\\Psr15\\": "src/Instrumentation/Psr15/src",
3131
"OpenTelemetry\\Contrib\\Instrumentation\\Psr18\\": "src/Instrumentation/Psr18/src",
32+
"OpenTelemetry\\Contrib\\Instrumentation\\ReactPHP\\": "src/Instrumentation/ReactPHP/src",
3233
"OpenTelemetry\\Contrib\\Instrumentation\\Slim\\": "src/Instrumentation/Slim/src",
3334
"OpenTelemetry\\Contrib\\Instrumentation\\Symfony\\": "src/Instrumentation/Symfony/src",
3435
"OpenTelemetry\\Contrib\\Instrumentation\\Wordpress\\": "src/Instrumentation/Wordpress/src",
@@ -54,6 +55,7 @@
5455
"src/Instrumentation/Psr3/_register.php",
5556
"src/Instrumentation/Psr15/_register.php",
5657
"src/Instrumentation/Psr18/_register.php",
58+
"src/Instrumentation/ReactPHP/_register.php",
5759
"src/Instrumentation/Slim/_register.php",
5860
"src/Instrumentation/Symfony/_register.php",
5961
"src/Instrumentation/Wordpress/_register.php",
@@ -80,6 +82,7 @@
8082
"open-telemetry/opentelemetry-auto-psr3": "self.version",
8183
"open-telemetry/opentelemetry-auto-psr15": "self.version",
8284
"open-telemetry/opentelemetry-auto-psr18": "self.version",
85+
"open-telemetry/opentelemetry-auto-reactphp": "self.version",
8386
"open-telemetry/opentelemetry-auto-slim": "self.version",
8487
"open-telemetry/opentelemetry-auto-symfony": "self.version",
8588
"open-telemetry/opentelemetry-auto-wordpress": "self.version",
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
* text=auto
2+
3+
*.md diff=markdown
4+
*.php diff=php
5+
6+
/.gitattributes export-ignore
7+
/.gitignore export-ignore
8+
/.phan export-ignore
9+
/.php-cs-fixer.php export-ignore
10+
/examples export-ignore
11+
/phpstan.neon.dist export-ignore
12+
/phpunit.xml.dist export-ignore
13+
/psalm.xml.dist export-ignore
14+
/tests export-ignore
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

0 commit comments

Comments
 (0)