Skip to content

Commit ab05166

Browse files
committed
Initial commit for 2.0 development
1 parent 5bafd17 commit ab05166

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
operating-system: ['ubuntu-latest']
12-
php-versions: ['8.2', '8.3', '8.4']
12+
php-versions: ['8.3', '8.4']
1313

1414
steps:
1515
- uses: actions/checkout@v3

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
operating-system: ['ubuntu-latest']
12-
php-versions: ['8.2', '8.3', '8.4']
12+
php-versions: ['8.3', '8.4']
1313

1414
steps:
1515
- name: Setup PHP

.github/workflows/psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
operating-system: ['ubuntu-latest']
12-
php-versions: ['8.2', '8.3', '8.4']
12+
php-versions: ['8.3', '8.4']
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: php-actions/composer@v6 # or alternative dependency management

.idea/php.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "project",
55
"license": "MIT",
66
"require": {
7-
"php": ">=8.2",
7+
"php": ">=8.3",
88
"ext-curl": "*",
99

1010
"psr/http-client": "^1.0",

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
class Client implements ClientInterface
2525
{
26-
private const DEFAULT_USER_AGENT = 'PSR-18 Shark Client';
26+
private const string DEFAULT_USER_AGENT = 'PSR-18 Shark Client';
2727

2828
/**
2929
* @var CurlHandle

0 commit comments

Comments
 (0)