Skip to content

Commit 966ce0f

Browse files
authored
Merge pull request #44 from markwalet/laravel-10-support
Laravel 10 support
2 parents bac1648 + 32879da commit 966ce0f

File tree

5 files changed

+24
-12
lines changed

5 files changed

+24
-12
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
uses: actions/cache@v2
1717
with:
1818
path: ~/.composer/cache/files
19-
key: dependencies-php-8.1-illuminate-9.*-composer-${{ hashFiles('composer.json') }}
19+
key: dependencies-php-8.2-illuminate-10.*-composer-${{ hashFiles('composer.json') }}
2020

2121
- name: Setup PHP
2222
uses: shivammathur/setup-php@v2
2323
with:
24-
php-version: 8.1
24+
php-version: 8.2
2525
extensions: dom, libxml, mbstring, zip, pcntl
2626
coverage: xdebug
2727

.github/workflows/tests.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,29 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [ 7.4, 8.0, 8.1 ]
17-
illuminate: [ 6.*, 7.*, ~8.74, ^9.0 ]
16+
php: [ 8.0, 8.1, 8.2 ]
17+
illuminate: [ 7.*, ~8.74, ^9.0, ^10.0 ]
1818
stability: [ prefer-lowest, prefer-stable ]
1919
include:
20-
- illuminate: 6.*
21-
testbench: 4.*
2220
- illuminate: 7.*
2321
testbench: 5.*
2422
- illuminate: ~8.74
2523
testbench: 6.*
2624
- illuminate: ^9.0
2725
testbench: 7.*
26+
- illuminate: ^10.0
27+
testbench: 8.*
2828
exclude:
29-
- php: 7.4
30-
illuminate: ^9.0
3129
- php: 8.1
3230
illuminate: 7.*
3331
- php: 8.1
3432
illuminate: 6.*
33+
- php: 8.0
34+
illuminate: ^10.0
35+
- php: 8.2
36+
illuminate: 7.*
37+
- php: 8.2
38+
illuminate: ~8.74
3539

3640
name: P${{ matrix.php }} - I${{ matrix.illuminate }} - ${{ matrix.stability }}
3741

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased](https://github.com/markwalet/laravel-changelog/compare/v1.6.1...master)
44

5+
### Added
6+
- Added support for Laravel 10
7+
- Added support for PHP 8.2
8+
9+
### Removed
10+
- Removed support for PHP 7.4
11+
- Removed support for Laravel 6
12+
513
## [v1.7.0 (2022-04-21)](https://github.com/markwalet/laravel-changelog/compare/v1.6.1...v1.7.0)
614

715
## Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![MIT Licensed](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
44
[![Latest Stable Version](https://poser.pugx.org/markwalet/laravel-changelog/v/stable)](https://packagist.org/packages/markwalet/laravel-changelog)
5-
[![Build status](https://img.shields.io/github/workflow/status/markwalet/laravel-changelog/tests?style=flat-square&label=tests)](https://github.com/markwalet/laravel-changelog/actions)
5+
[![Build status](https://img.shields.io/github/actions/workflow/status/markwalet/laravel-changelog/tests.yml?branch=master)](https://github.com/markwalet/laravel-git-state/actions)
66
[![Coverage](https://codecov.io/gh/markwalet/laravel-changelog/branch/master/graph/badge.svg)](https://codecov.io/gh/markwalet/laravel-changelog)
77
[![StyleCI](https://github.styleci.io/repos/202197691/shield?branch=master)](https://github.styleci.io/repos/202197691)
88
[![Total Downloads](https://poser.pugx.org/markwalet/laravel-changelog/downloads)](https://packagist.org/packages/markwalet/laravel-changelog)

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
}
1111
],
1212
"require": {
13-
"php": "~7.4|8.*",
14-
"laravel/framework": "6.*|7.*|~8.74|^9.0",
13+
"php": "8.*",
14+
"laravel/framework": "7.*|~8.74|^9.0|^10.0",
1515
"markwalet/laravel-git-state": "~1.0",
1616
"ext-simplexml": "*",
1717
"ext-dom": "*"
1818
},
1919
"require-dev": {
2020
"phpunit/phpunit": "~9.3",
2121
"mockery/mockery": "~1.4",
22-
"orchestra/testbench": "4.*|5.*|6.*|7.*"
22+
"orchestra/testbench": "5.*|6.*|7.*|8.*"
2323
},
2424
"autoload": {
2525
"psr-4": {

0 commit comments

Comments
 (0)