Skip to content

Commit 9a026a4

Browse files
committed
feat!: upgrade to Laravel 11
1 parent b629f79 commit 9a026a4

File tree

6 files changed

+58
-74
lines changed

6 files changed

+58
-74
lines changed

.github/workflows/tests.yml

+32-28
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: Tests
22

33
on:
44
push:
5-
branches: [ main, develop ]
5+
branches:
6+
- main
7+
- develop
68
pull_request:
7-
branches: [ main, develop ]
9+
branches:
10+
- main
11+
- develop
812

913
jobs:
1014
build:
@@ -14,31 +18,31 @@ jobs:
1418
strategy:
1519
fail-fast: true
1620
matrix:
17-
php: [8.1, 8.2]
18-
laravel: [10]
21+
php: [ 8.2, 8.3, 8.4 ]
22+
laravel: [ 11 ]
1923

2024
steps:
21-
- name: Checkout Code
22-
uses: actions/checkout@v3
23-
24-
- name: Setup PHP
25-
uses: shivammathur/setup-php@v2
26-
with:
27-
php-version: ${{ matrix.php }}
28-
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd
29-
tools: composer:v2
30-
coverage: none
31-
ini-values: error_reporting=E_ALL, zend.assertions=1
32-
33-
- name: Set Laravel Version
34-
run: composer require "laravel/framework:^${{ matrix.laravel }}" --no-update -n
35-
36-
- name: Install dependencies
37-
uses: nick-fields/retry@v2
38-
with:
39-
timeout_minutes: 5
40-
max_attempts: 5
41-
command: composer install --no-suggest --prefer-dist -n -o
42-
43-
- name: Execute tests
44-
run: vendor/bin/phpunit
25+
- name: Checkout Code
26+
uses: actions/checkout@v4
27+
28+
- name: Setup PHP
29+
uses: shivammathur/setup-php@v2
30+
with:
31+
php-version: ${{ matrix.php }}
32+
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd
33+
tools: composer:v2
34+
coverage: none
35+
ini-values: error_reporting=E_ALL, zend.assertions=1
36+
37+
- name: Set Laravel Version
38+
run: composer require "illuminate/support:^${{ matrix.laravel }}" --no-update
39+
40+
- name: Install dependencies
41+
uses: nick-fields/retry@v3
42+
with:
43+
timeout_minutes: 5
44+
max_attempts: 5
45+
command: composer update --prefer-dist --no-interaction --no-progress
46+
47+
- name: Execute tests
48+
run: vendor/bin/phpunit

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
vendor/
22
composer.lock
3-
.phpunit.result.cache
3+
.phpunit.cache/

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+
- Minimum PHP is now 8.2.
11+
- Minimum Laravel is now 11.
12+
613
## [2.0.0] - 2023-06-20
714

815
### Changed

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^8.1",
27-
"illuminate/support": "^10.0",
28-
"laravel-json-api/eloquent": "^3.0",
29-
"tenantcloud/laravel-boolean-softdeletes": "^5.0"
26+
"php": "^8.2",
27+
"illuminate/support": "^11.0",
28+
"laravel-json-api/eloquent": "^4.0",
29+
"tenantcloud/laravel-boolean-softdeletes": "^6.0"
3030
},
3131
"require-dev": {
32-
"orchestra/testbench": "^8.0",
33-
"phpunit/phpunit": "^9.6.9"
32+
"orchestra/testbench": "^9.0",
33+
"phpunit/phpunit": "^10.5"
3434
},
3535
"autoload": {
3636
"psr-4": {
@@ -46,7 +46,7 @@
4646
},
4747
"extra": {
4848
"branch-alias": {
49-
"dev-develop": "2.x-dev"
49+
"dev-develop": "3.x-dev"
5050
}
5151
},
5252
"minimum-stability": "stable",

phpunit.xml

+10-37
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!--
3-
~ Copyright 2021 Cloud Creativity Limited
4-
~
5-
~ Licensed under the Apache License, Version 2.0 (the "License");
6-
~ you may not use this file except in compliance with the License.
7-
~ You may obtain a copy of the License at
8-
~
9-
~ http://www.apache.org/licenses/LICENSE-2.0
10-
~
11-
~ Unless required by applicable law or agreed to in writing, software
12-
~ distributed under the License is distributed on an "AS IS" BASIS,
13-
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14-
~ See the License for the specific language governing permissions and
15-
~ limitations under the License.
16-
-->
17-
18-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19-
backupGlobals="false"
20-
backupStaticAttributes="false"
21-
beStrictAboutTestsThatDoNotTestAnything="false"
22-
bootstrap="vendor/autoload.php"
23-
colors="true"
24-
convertErrorsToExceptions="true"
25-
convertNoticesToExceptions="true"
26-
convertWarningsToExceptions="true"
27-
convertDeprecationsToExceptions="true"
28-
processIsolation="false"
29-
stopOnError="false"
30-
stopOnFailure="false"
31-
verbose="true"
32-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
33-
>
34-
<coverage>
35-
<include>
36-
<directory suffix=".php">src/</directory>
37-
</include>
38-
</coverage>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false"
3+
beStrictAboutTestsThatDoNotTestAnything="false" bootstrap="vendor/autoload.php" colors="true"
4+
processIsolation="false" stopOnError="false" stopOnFailure="false"
5+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache"
6+
backupStaticProperties="false">
397
<testsuites>
408
<testsuite name="Unit">
419
<directory suffix="Test.php">./tests/lib/Unit/</directory>
@@ -51,4 +19,9 @@
5119
<ini name="error_reporting" value="E_ALL"/>
5220
<env name="DB_CONNECTION" value="testing"/>
5321
</php>
22+
<source>
23+
<include>
24+
<directory suffix=".php">src/</directory>
25+
</include>
26+
</source>
5427
</phpunit>

tests/lib/Acceptance/Test.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected function setUp(): void
4343
/**
4444
* @return array
4545
*/
46-
public function trashedProvider(): array
46+
public static function trashedProvider(): array
4747
{
4848
return [
4949
'trashed' => [true],

0 commit comments

Comments
 (0)