Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ["8.1", "8.2", "8.3", "8.4"]
php-version: ["8.1", "8.2", "8.3", "8.4", "8.5"]
phpts: ["ts", "nts"]

steps:
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
needs: build-linux-x86_64
strategy:
matrix:
php-version: ["8.1", "8.2", "8.3", "8.4"]
php-version: ["8.1", "8.2", "8.3", "8.4", "8.5"]
phpts: ["ts", "nts"]

steps:
Expand Down Expand Up @@ -145,7 +145,8 @@ jobs:
| Linux x86_64 | 8.3 | NTS | biscuit-linux-x86_64-php8.3-nts.so | .sha256 |
| Linux x86_64 | 8.4 | TS | biscuit-linux-x86_64-php8.4-ts.so | .sha256 |
| Linux x86_64 | 8.4 | NTS | biscuit-linux-x86_64-php8.4-nts.so | .sha256 |

| Linux x86_64 | 8.5 | TS | biscuit-linux-x86_64-php8.5-ts.so | .sha256 |
| Linux x86_64 | 8.5 | NTS | biscuit-linux-x86_64-php8.5-nts.so | .sha256 |
### Choosing the Right Binary

**Thread-Safe (TS)**: Use with Apache with mod_php, IIS, FrankenPHP,or other multi-threaded web servers
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ["8.1", "8.2", "8.3", "8.4"]
php-version: ["8.1", "8.2", "8.3", "8.4", "8.5"]

name: Build extension and run tests
steps:
Expand Down Expand Up @@ -52,11 +52,11 @@ jobs:
uses: "ramsey/composer-install@v3"

- name: Setup Mago
if: ${{ matrix.php-version == '8.4' }}
if: ${{ matrix.php-version == '8.5' }}
uses: nhedger/setup-mago@v1

- name: Run Mago
if: ${{ matrix.php-version == '8.4' }}
if: ${{ matrix.php-version == '8.5' }}
run: |
mago format --dry-run
mago lint --reporting-format=github
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "PHP wrapper for Biscuit authorization tokens"
authors = ["Pierre Tondereau <[email protected]>"]

[dependencies]
ext-php-rs = "0.15.1"
ext-php-rs = "0.15.2"
biscuit-auth = { version = "6.0.0", features = ["pem"] }
hex = "0.4"

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"require-dev": {
"phpunit/phpunit": "^10",
"carthage-software/mago": "^1.0.0-beta.34"
"carthage-software/mago": "^1.0.0-rc.12"
},
"config": {
"allow-plugins": {
Expand Down
Loading