Skip to content

Commit ae1a6df

Browse files
ankurk91tzsk
authored andcommitted
Allow laravel 9
1 parent de8e604 commit ae1a6df

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# Ignore all test and documentation with "export-ignore".
55
/.gitattributes export-ignore
66
/.gitignore export-ignore
7-
/.travis.yml export-ignore
87
/phpunit.xml.dist export-ignore
8+
/psalm.xml.dist export-ignore
99
/tests export-ignore
1010
/.editorconfig export-ignore
1111
/.php_cs.dist export-ignore

.github/workflows/psalm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup PHP
1313
uses: shivammathur/setup-php@v2
1414
with:
15-
php-version: '7.4'
15+
php-version: '8.0'
1616
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
1717
coverage: none
1818

.github/workflows/run-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [7.4, 8.0]
13-
laravel: [7.*, 8.*]
12+
php: [8.0, 8.1]
13+
laravel: [8.*, 9.*]
1414
dependency-version: [prefer-stable]
1515
include:
16-
- laravel: 7.*
17-
testbench: 5.*
1816
- laravel: 8.*
1917
testbench: 6.*
18+
- laravel: 9.*
19+
testbench: 7.*
2020

2121
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2222

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^7.4|^8.0",
24-
"illuminate/support": "^7.0|^8.0",
25-
"illuminate/cache": "^7.0|^8.0",
26-
"illuminate/filesystem": "^7.0|^8.0"
23+
"php": "^8.0",
24+
"illuminate/support": "^8.0||^9.0",
25+
"illuminate/cache": "^8.0||^9.0",
26+
"illuminate/filesystem": "^8.0||^9.0"
2727
},
2828
"require-dev": {
2929
"friendsofphp/php-cs-fixer": "^3.0",
3030
"laravel/legacy-factories": "^1.0",
31-
"orchestra/testbench": "^6.0",
31+
"orchestra/testbench": "^6.0||^7.0",
3232
"phpunit/phpunit": "^9.3",
3333
"vimeo/psalm": "^4.0"
3434
},

0 commit comments

Comments
 (0)