Skip to content

Commit 76cee83

Browse files
committed
build(deps): upgrade to Laravel 10 and min PHP is now 8.1
1 parent ac4189e commit 76cee83

File tree

3 files changed

+17
-13
lines changed

3 files changed

+17
-13
lines changed

Diff for: .github/workflows/tests.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,8 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
php: [7.4, '8.0', 8.1, 8.2]
18-
laravel: [8.76, 9]
19-
exclude:
20-
- php: 7.4
21-
laravel: 9
17+
php: [8.1, 8.2]
18+
laravel: [10]
2219

2320
steps:
2421
- name: Checkout Code

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
All notable changes to this project will be documented in this file. This project adheres to
44
[Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/).
55

6+
## Unreleased
7+
8+
### Changed
9+
10+
- Upgraded to Laravel 10.
11+
- Minimum PHP version is now 8.1.
12+
613
## [1.1.0] - 2022-09-14
714

815
### Added

Diff for: composer.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^7.4|^8.0",
27-
"illuminate/support": "^8.0|^9.0",
28-
"laravel-json-api/eloquent": "^1.0.1|^2.0",
29-
"tenantcloud/laravel-boolean-softdeletes": "^3.1|^4.0"
26+
"php": "^8.1",
27+
"illuminate/support": "^10.0",
28+
"laravel-json-api/eloquent": "^3.0",
29+
"tenantcloud/laravel-boolean-softdeletes": "^5.0"
3030
},
3131
"require-dev": {
32-
"orchestra/testbench": "^6.23|^7.0",
33-
"phpunit/phpunit": "^9.5.10"
32+
"orchestra/testbench": "^8.0",
33+
"phpunit/phpunit": "^9.6.9"
3434
},
3535
"autoload": {
3636
"psr-4": {
@@ -46,10 +46,10 @@
4646
},
4747
"extra": {
4848
"branch-alias": {
49-
"dev-develop": "1.x-dev"
49+
"dev-develop": "2.x-dev"
5050
}
5151
},
52-
"minimum-stability": "dev",
52+
"minimum-stability": "stable",
5353
"prefer-stable": true,
5454
"config": {
5555
"sort-packages": true

0 commit comments

Comments
 (0)