Skip to content

Commit ebe4d36

Browse files
Add supports to Laravel 11 (#119)
* Laravel 11 * wip * wip * wip --------- Co-authored-by: Mior Muhammad Zaki <[email protected]>
1 parent 5d99a87 commit ebe4d36

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/coveralls.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Setup PHP
3030
uses: shivammathur/setup-php@v2
@@ -34,7 +34,7 @@ jobs:
3434
coverage: xdebug
3535

3636
- name: Install dependencies
37-
uses: "ramsey/composer-install@v2"
37+
uses: "ramsey/composer-install@v3"
3838
with:
3939
dependency-versions: "${{ matrix.dependencies }}"
4040
composer-options: "--prefer-dist"

.github/workflows/tests.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
- "ubuntu-latest"
1717
- "windows-latest"
1818
php:
19-
- 8.1
2019
- 8.2
2120
- 8.3
2221
dependencies:
@@ -29,17 +28,17 @@ jobs:
2928

3029
steps:
3130
- name: Checkout code
32-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3332

3433
- name: Setup PHP
3534
uses: shivammathur/setup-php@v2
3635
with:
3736
php-version: ${{ matrix.php }}
38-
extensions: dom, curl, libxml, mbstring, zip, pcntl, bcmath, intl, fileinfo
37+
extensions: dom, curl, libxml, mbstring, zip, pcntl, sqlite, pdo_sqlite, bcmath, intl, fileinfo
3938
coverage: none
4039

4140
- name: Install dependencies
42-
uses: "ramsey/composer-install@v2"
41+
uses: "ramsey/composer-install@v3"
4342
with:
4443
dependency-versions: "${{ matrix.dependencies }}"
4544
composer-options: "--prefer-dist --no-cache"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Laravel | Parser
5353
8.x | 6.x
5454
9.x | 7.x
5555
10.x | 8.x
56+
11.x | 9.x
5657

5758
## Installation
5859

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828
}
2929
},
3030
"require": {
31-
"php": "^8.0",
32-
"illuminate/container": "^10.0",
33-
"laravie/parser": "^2.3"
31+
"php": "^8.2",
32+
"illuminate/container": "^11.0",
33+
"laravie/parser": "^2.4"
3434
},
3535
"require-dev": {
36-
"laravel/pint": "^1.4",
37-
"orchestra/testbench": "^8.15",
38-
"phpstan/phpstan": "^1.9.14",
39-
"phpunit/phpunit": "^10.0.7"
36+
"laravel/pint": "^1.6",
37+
"orchestra/testbench": "^9.0.2",
38+
"phpstan/phpstan": "^1.10.15",
39+
"phpunit/phpunit": "^10.5"
4040
},
4141
"extra": {
4242
"branch-alias": {

0 commit comments

Comments
 (0)