Skip to content

Commit 37eef6d

Browse files
authored
Merge pull request #13 from devtical/develop
Bump
2 parents 44a296e + 2f2ee2b commit 37eef6d

File tree

2 files changed

+18
-56
lines changed

2 files changed

+18
-56
lines changed

.github/workflows/tests.yml

Lines changed: 15 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -4,79 +4,40 @@ on:
44
push:
55
branches:
66
- "**"
7-
pull_request:
8-
branches: [main]
7+
pull_request:
8+
branches: [main]
99

1010
jobs:
1111
run-tests:
12-
runs-on: ${{ matrix.os }}
12+
runs-on: ubuntu-latest
1313

1414
strategy:
15+
fail-fast: false
1516
matrix:
16-
php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2]
17-
laravel: [6.*, 7.*, 8.*, 9.*, 10.*]
1817
os: [ubuntu-latest]
18+
php: [8.1, 8.2, 8.3]
1919
include:
20-
- laravel: 10.*
21-
testbench: 8.*
22-
- laravel: 9.*
20+
- php: 8.1
21+
laravel: 9.*
2322
testbench: 7.*
24-
- laravel: 8.*
25-
testbench: 6.*
26-
- laravel: 7.*
27-
testbench: 5.*
28-
- laravel: 6.*
29-
testbench: 4.*
30-
31-
exclude:
32-
- laravel: 6.*
33-
php: 7.1
34-
- laravel: 6.*
35-
php: 8.1
36-
- laravel: 6.*
37-
php: 8.2
38-
- laravel: 7.*
39-
php: 7.1
40-
- laravel: 7.*
41-
php: 8.1
42-
- laravel: 7.*
43-
php: 8.2
44-
- laravel: 8.*
45-
php: 7.1
46-
- laravel: 8.*
47-
php: 7.2
48-
- laravel: 8.*
49-
php: 8.2
50-
- laravel: 9.*
51-
php: 7.1
52-
- laravel: 9.*
53-
php: 7.2
54-
- laravel: 9.*
55-
php: 7.3
56-
- laravel: 9.*
57-
php: 7.4
58-
- laravel: 10.*
59-
php: 7.1
60-
- laravel: 10.*
61-
php: 7.2
62-
- laravel: 10.*
63-
php: 7.3
64-
- laravel: 10.*
65-
php: 7.4
66-
- laravel: 10.*
67-
php: '8.0'
23+
- php: 8.2
24+
laravel: 10.*
25+
testbench: 8.*
26+
- php: 8.3
27+
laravel: 11.*
28+
testbench: 9.*
6829

6930
name: PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }}
7031

7132
steps:
7233
- name: Checkout code
73-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
7435

7536
- name: Setup PHP
7637
uses: shivammathur/setup-php@v2
7738
with:
7839
php-version: ${{ matrix.php }}
79-
extension: mbstring
40+
extensions: mbstring
8041
coverage: none
8142

8243
- name: Install dependencies

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@
1313
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
1414
},
1515
"require-dev": {
16+
"friendsofphp/php-cs-fixer": "^3.0",
17+
"laravel/pint": "^1.18",
1618
"orchestra/testbench": "^4.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
17-
"phpunit/phpunit": "^8.4 || ^9.0 || ^10.0",
18-
"friendsofphp/php-cs-fixer": "^3.0"
19+
"phpunit/phpunit": "^8.4 || ^9.0 || ^10.0"
1920
},
2021
"autoload": {
2122
"psr-4": {

0 commit comments

Comments
 (0)