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
4 changes: 4 additions & 0 deletions .github/workflows/backward-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
bc-checks:
name: Backward Compatibility Check
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
links:
name: Check Links
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/emulator-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- 'src/**'
- 'tests/**'
- '.github/workflows/emulator-tests.yml'
- 'composer.json'
- 'phpstan.neon.dist'
push:
branches: ['8.x']
Expand All @@ -21,6 +22,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
emulator-tests:
name: Emulator Tests
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- 'src/**'
- 'tests/**'
- '.github/workflows/integration-tests.yml'
- 'composer.json'
- 'phpstan.neon.dist'
push:
branches: ['8.x']
Expand All @@ -21,6 +22,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
integration-tests:
name: Integration Tests
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
phpstan:
name: "PHPStan (PHP ${{ matrix.php }})"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ on:
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
tests:
name: "PHP ${{ matrix.php }}, ${{ matrix.dependencies }} deps"
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
**Support the project:** This SDK is downloaded 1M+ times monthly and powers thousands of applications.
If it saves you or your team time, please consider [sponsoring its development](https://github.com/sponsors/jeromegamez).

## Unreleased

* Added support for `firebase/php-jwt:^7.0.2`

## 8.0.0 - 2026-01-08

### Security improvements
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"beste/json": "^1.5.1",
"cuyz/valinor": "^2.2.1",
"fig/http-message-util": "^1.1.5",
"firebase/php-jwt": "^6.10.2",
"firebase/php-jwt": "^6.10.2 || ^7.0.2",
"google/auth": "^1.45",
"google/cloud-storage": "^1.48.7",
"guzzlehttp/guzzle": "^7.9.2",
Expand Down Expand Up @@ -166,4 +166,4 @@
"dev-8.x": "8.x-dev"
}
}
}
}
Loading