Skip to content

Commit

Permalink
php 8.2 support added (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
frkcn authored May 11, 2023
1 parent 2db7087 commit bc809bd
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,17 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 8.0, 8.1]
laravel: [8.*, 9.*, 10.*]
dependency-version: [prefer-lowest, prefer-stable]
php: [7.4, '8.0', 8.1, 8.2]
laravel: [8, 9, 10]
exclude:
- php: 7.4
laravel: 9
- php: 7.4
laravel: 10
- php: '8.0'
laravel: 10
- php: 8.2
laravel: 8

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to `netgsm` will be documented in this file

## Unreleased

## [4.5.0] - 2023-05-11

- Php 8.2 support added.

## [4.4.0] - 2023-02-16

- Laravel 10 support added.

## [4.3.0] - 2022-02-08

- Laravel 9 support added.
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}
],
"require": {
"php": "^7.4|^8.0|^8.1",
"php": "^7.4|^8.0|^8.1|^8.2",
"guzzlehttp/guzzle": "^7.1",
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/notifications": "^8.0|^9.0|^10.0",
Expand All @@ -43,7 +43,7 @@
"fakerphp/faker": "^1.14",
"phpunit/phpunit": "^9.4",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^6.0|^7.0"
"orchestra/testbench": "^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit bc809bd

Please sign in to comment.