Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit 3890d59

Browse files
authored
Merge pull request #25 from CyberfusionIO/feature/laravel-11
Add support for Laravel 11
2 parents 49e18a3 + 166bc4b commit 3890d59

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
php-versions: [ '8.1', '8.2' ]
10+
php-versions: [ '8.1', '8.2', '8.3' ]
1111

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

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Please note this changelog affects
66
this package and not the Oxxa API.
77

8+
## [2.6.0]
9+
10+
### Added
11+
12+
- Add support for Laravel 11.
13+
814
## [2.5.1]
915

1016
### Changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"ext-libxml": "*",
2525
"ext-simplexml": "*",
2626
"guzzlehttp/guzzle": "^7.0",
27-
"illuminate/http": "^9.0|^10.0",
28-
"illuminate/support": "^9.0|^10.0",
27+
"illuminate/http": "^9.0|^10.0|^11.0",
28+
"illuminate/support": "^9.0|^10.0|^11.0",
2929
"symfony/css-selector": "^6.0",
3030
"symfony/dom-crawler": "^6.0"
3131
},

src/Oxxa.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Oxxa implements OxxaClient
1515
{
1616
private const TIMEOUT = 180;
1717

18-
private const VERSION = '2.5.1';
18+
private const VERSION = '2.6.0';
1919

2020
private const USER_AGENT = 'oxxa-api-client/'.self::VERSION;
2121

0 commit comments

Comments
 (0)