Skip to content

Commit 565d52f

Browse files
authored
[1.x] Migrates to Laravel Zero 10 (#149)
* Migrates to Laravel Zero 10 * Removes PHP 8.0 version from CI
1 parent 665a995 commit 565d52f

File tree

3 files changed

+557
-528
lines changed

3 files changed

+557
-528
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
os: [ubuntu-22.04, windows-2019]
20-
php: ['8.0', 8.1, 8.2]
20+
php: [8.1, 8.2]
2121

2222
name: PHP ${{ matrix.php }} - ${{ matrix.os }}
2323

@@ -43,8 +43,8 @@ jobs:
4343
run: |
4444
composer install
4545
46-
- name: Execute lint with Laravel preset
47-
run: ./pint
46+
- name: Execute lint tests with Laravel preset
47+
run: ./pint --test
4848

4949
- name: Execute static analysis
5050
run: vendor/bin/phpstan

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.0",
19+
"php": "^8.1.0",
2020
"ext-json": "*",
2121
"ext-mbstring": "*",
2222
"ext-tokenizer": "*",
2323
"ext-xml": "*"
2424
},
2525
"require-dev": {
2626
"friendsofphp/php-cs-fixer": "^3.14.4",
27-
"illuminate/view": "^9.51.0",
28-
"laravel-zero/framework": "^9.2.0",
27+
"illuminate/view": "^10.0.0",
28+
"laravel-zero/framework": "^10.0.0",
2929
"mockery/mockery": "^1.5.1",
3030
"nunomaduro/larastan": "^2.4.0",
3131
"nunomaduro/termwind": "^1.15.1",
@@ -49,7 +49,7 @@
4949
"sort-packages": true,
5050
"optimize-autoloader": true,
5151
"platform": {
52-
"php": "8.0.2"
52+
"php": "8.1.0"
5353
},
5454
"allow-plugins": {
5555
"pestphp/pest-plugin": true

0 commit comments

Comments
 (0)