Skip to content

Commit 35ee109

Browse files
committed
PHP >= 8.3 support
1 parent 7680a44 commit 35ee109

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
strategy:
6363
fail-fast: false
6464
matrix:
65-
php-versions: ['8.5']
65+
php-versions: ['8.3', '8.4', '8.5']
6666
steps:
6767
- name: checkout
6868
uses: actions/checkout@v4

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
Wallet Kit helps you build the **JSON payloads** wallet platforms expect. It focuses on **modeling and normalization** (via Symfony Serializer): it does **not** sign Apple passes, bundle `.pkpass` files, or call Google Wallet APIs.
1717

18-
- **PHP** 8.5+
19-
- **symfony/serializer** ^8.0
18+
- **PHP** 8.3+
19+
- **symfony/serializer** ^7.4 || ^8.0
2020

2121
## 🛠️ Builder
2222

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
}
2121
],
2222
"require": {
23-
"php": ">=8.5",
24-
"symfony/serializer": "^8.0"
23+
"php": ">=8.3",
24+
"symfony/serializer": "^7.4 || ^8.0"
2525
},
2626
"require-dev": {
27-
"phpunit/phpunit": "^13.1"
27+
"phpunit/phpunit": "^12.0"
2828
}
2929
}

0 commit comments

Comments
 (0)