Skip to content

Commit 09ed016

Browse files
committed
drop 7.4 testing
1 parent 34c5896 commit 09ed016

File tree

17 files changed

+1
-59
lines changed

17 files changed

+1
-59
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3']
20+
php-version: ['8.0', '8.1', '8.2', '8.3']
2121
# Sorted alphabetically to ease finding the desired run in the GitHub Workflow UI.
2222
project: [
2323
'Aws',
@@ -55,34 +55,6 @@ jobs:
5555
'Symfony',
5656
]
5757
exclude:
58-
- project: 'Instrumentation/Guzzle'
59-
php-version: 7.4
60-
- project: 'Instrumentation/HttpAsyncClient'
61-
php-version: 7.4
62-
- project: 'Instrumentation/Slim'
63-
php-version: 7.4
64-
- project: 'Instrumentation/Psr3'
65-
php-version: 7.4
66-
- project: 'Instrumentation/Psr6'
67-
php-version: 7.4
68-
- project: 'Instrumentation/Psr14'
69-
php-version: 7.4
70-
- project: 'Instrumentation/Psr15'
71-
php-version: 7.4
72-
- project: 'Instrumentation/Psr16'
73-
php-version: 7.4
74-
- project: 'Instrumentation/Psr18'
75-
php-version: 7.4
76-
- project: 'Instrumentation/IO'
77-
php-version: 7.4
78-
- project: 'Instrumentation/Symfony'
79-
php-version: 7.4
80-
- project: 'Instrumentation/Laravel'
81-
php-version: 7.4
82-
- project: 'Instrumentation/CodeIgniter'
83-
php-version: 7.4
84-
- project: 'Instrumentation/Yii'
85-
php-version: 7.4
8658
- project: 'Instrumentation/IO'
8759
php-version: 8.0
8860
- project: 'Instrumentation/IO'
@@ -105,8 +77,6 @@ jobs:
10577
php-version: 8.0
10678
- project: 'Instrumentation/PDO'
10779
php-version: 8.1
108-
- project: 'Instrumentation/ExtAmqp'
109-
php-version: 7.4
11080
- project: 'Instrumentation/ExtAmqp'
11181
php-version: 8.0
11282
- project: 'Instrumentation/ExtAmqp'
@@ -117,22 +87,10 @@ jobs:
11787
php-version: 8.0
11888
- project: 'Instrumentation/ExtRdKafka'
11989
php-version: 8.1
120-
- project: 'Instrumentation/OpenAIPHP'
121-
php-version: 7.4
12290
- project: 'Instrumentation/OpenAIPHP'
12391
php-version: 8.0
124-
- project: 'Instrumentation/CakePHP'
125-
php-version: 7.4
126-
- project: 'Propagation/ServerTiming'
127-
php-version: 7.4
128-
- project: 'ResourceDetectors/Container'
129-
php-version: 7.4
130-
- project: 'Sampler/RuleBased'
131-
php-version: 7.4
13292
- project: 'Sampler/RuleBased'
13393
php-version: 8.0
134-
- project: 'Symfony'
135-
php-version: 7.4
13694
- project: 'Symfony'
13795
php-version: 8.0
13896
steps:

src/Instrumentation/CakePHP/src/CakePHPInstrumentation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
use OpenTelemetry\Contrib\Instrumentation\CakePHP\Hooks\Cake\Command\Command;
99
use OpenTelemetry\Contrib\Instrumentation\CakePHP\Hooks\Cake\Controller\Controller;
1010
use OpenTelemetry\Contrib\Instrumentation\CakePHP\Hooks\Cake\Http\Server;
11-
use OpenTelemetry\SemConv\Version;
1211

1312
class CakePHPInstrumentation
1413
{

src/Instrumentation/CodeIgniter/src/CodeIgniterInstrumentation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
use OpenTelemetry\Context\Context;
1717
use function OpenTelemetry\Instrumentation\hook;
1818
use OpenTelemetry\SemConv\TraceAttributes;
19-
use OpenTelemetry\SemConv\Version;
2019

2120
class CodeIgniterInstrumentation
2221
{

src/Instrumentation/Guzzle/src/GuzzleInstrumentation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
use OpenTelemetry\Context\Context;
1616
use function OpenTelemetry\Instrumentation\hook;
1717
use OpenTelemetry\SemConv\TraceAttributes;
18-
use OpenTelemetry\SemConv\Version;
1918
use Psr\Http\Message\RequestInterface;
2019
use Psr\Http\Message\ResponseInterface;
2120
use function sprintf;

src/Instrumentation/HttpAsyncClient/src/HttpAsyncClientInstrumentation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
use OpenTelemetry\Context\Context;
1515
use function OpenTelemetry\Instrumentation\hook;
1616
use OpenTelemetry\SemConv\TraceAttributes;
17-
use OpenTelemetry\SemConv\Version;
1817
use Psr\Http\Message\RequestInterface;
1918
use Psr\Http\Message\ResponseInterface;
2019
use Throwable;

src/Instrumentation/Laravel/src/LaravelInstrumentation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
use OpenTelemetry\API\Instrumentation\CachedInstrumentation;
88
use OpenTelemetry\SDK\Common\Configuration\Configuration;
9-
use OpenTelemetry\SemConv\Version;
109

1110
class LaravelInstrumentation
1211
{

src/Instrumentation/MongoDB/src/MongoDBInstrumentation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
use function MongoDB\Driver\Monitoring\addSubscriber;
88
use OpenTelemetry\API\Instrumentation\CachedInstrumentation;
9-
use OpenTelemetry\SemConv\Version;
109

1110
final class MongoDBInstrumentation
1211
{

src/Instrumentation/Psr14/src/Psr14Instrumentation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use OpenTelemetry\Context\Context;
1212
use function OpenTelemetry\Instrumentation\hook;
1313
use OpenTelemetry\SemConv\TraceAttributes;
14-
use OpenTelemetry\SemConv\Version;
1514
use Psr\EventDispatcher\EventDispatcherInterface;
1615

1716
use Throwable;

src/Instrumentation/Psr15/src/Psr15Instrumentation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
use OpenTelemetry\Context\Context;
1414
use function OpenTelemetry\Instrumentation\hook;
1515
use OpenTelemetry\SemConv\TraceAttributes;
16-
use OpenTelemetry\SemConv\Version;
1716
use Psr\Http\Message\ResponseInterface;
1817
use Psr\Http\Message\ServerRequestInterface;
1918
use Psr\Http\Server\MiddlewareInterface;

src/Instrumentation/Psr16/src/Psr16Instrumentation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
use OpenTelemetry\Context\Context;
1414
use function OpenTelemetry\Instrumentation\hook;
1515
use OpenTelemetry\SemConv\TraceAttributes;
16-
use OpenTelemetry\SemConv\Version;
1716
use Psr\SimpleCache\CacheInterface;
1817
use Throwable;
1918

0 commit comments

Comments
 (0)