Skip to content

Commit

Permalink
PHP 8.4 Compatibility (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
nie7321 authored Jan 28, 2025
1 parent 05ae5bb commit d2423f0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 * * *'

jobs:
tests:
Expand All @@ -15,7 +13,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php-versions: ['8.1', '8.2', '8.3']
php-versions: ['8.2', '8.3', '8.4']

name: PHP ${{ matrix.php-versions }}

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [v0.5.0] - 2025-01-28
### Changed
- Support for PHP 8.1 has been removed.

## [v0.4.0] - 2024-01-25
### Added
- The `Northwestern\Sysdev\TeamDynamix\Api\Client\Ticket\Ticket` class now features an `update` method, implementing the [Updates a Ticket](https://solutions.teamdynamix.com/TDWebApi/Home/section/Tickets#POSTapi/{appId}/tickets/{id}/feed) API.
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"php": "^8.2",
"ext-json": "*",
"lcobucci/jwt": "^4.2",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"orchestra/testbench": "^7.10",
"orchestra/testbench": "^8",
"phpunit/phpunit": "^9.5",
"php-coveralls/php-coveralls": "^2.5",
"laravel/pint": "^1.2"
Expand Down

0 comments on commit d2423f0

Please sign in to comment.