Skip to content

Commit 635357f

Browse files
authored
Merge pull request #20 from whitecube/fix-deprecation-warnings
Fix PHP deprecation warnings
2 parents 4431c8a + 19da3ae commit 635357f

13 files changed

Lines changed: 1637 additions & 613 deletions

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [8.2, 8.1]
12+
php: [8.4, 8.3, 8.2]
1313
dependency-version: [prefer-stable]
1414

1515
name: P${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
@@ -39,4 +39,4 @@ jobs:
3939
run: locale -a
4040

4141
- name: Execute tests
42-
run: ./vendor/bin/pest
42+
run: ./vendor/bin/pest --color=always

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/vendor/
2-
.phpunit.result.cache
2+
.phpunit.result.cache
3+
.phpunit.cache/test-results

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"minimum-stability": "dev",
66
"prefer-stable": true,
77
"require": {
8-
"php": "^8.1",
8+
"php": "^8.2",
99
"brick/money": "0.10.*"
1010
},
1111
"require-dev": {
12-
"pestphp/pest": "^1.0"
12+
"pestphp/pest": "^3.0|^4.0"
1313
},
1414
"license": "MIT",
1515
"autoload": {

0 commit comments

Comments
 (0)