Skip to content

Commit

Permalink
Add supports to Laravel 11 (#119)
Browse files Browse the repository at this point in the history
* Laravel 11

* wip

* wip

* wip

---------

Co-authored-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
jochensengier and crynobone committed Mar 26, 2024
1 parent 5d99a87 commit ebe4d36
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -34,7 +34,7 @@ jobs:
coverage: xdebug

- name: Install dependencies
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "--prefer-dist"
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
- "ubuntu-latest"
- "windows-latest"
php:
- 8.1
- 8.2
- 8.3
dependencies:
Expand All @@ -29,17 +28,17 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, bcmath, intl, fileinfo
extensions: dom, curl, libxml, mbstring, zip, pcntl, sqlite, pdo_sqlite, bcmath, intl, fileinfo
coverage: none

- name: Install dependencies
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "--prefer-dist --no-cache"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Laravel | Parser
8.x | 6.x
9.x | 7.x
10.x | 8.x
11.x | 9.x

## Installation

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
}
},
"require": {
"php": "^8.0",
"illuminate/container": "^10.0",
"laravie/parser": "^2.3"
"php": "^8.2",
"illuminate/container": "^11.0",
"laravie/parser": "^2.4"
},
"require-dev": {
"laravel/pint": "^1.4",
"orchestra/testbench": "^8.15",
"phpstan/phpstan": "^1.9.14",
"phpunit/phpunit": "^10.0.7"
"laravel/pint": "^1.6",
"orchestra/testbench": "^9.0.2",
"phpstan/phpstan": "^1.10.15",
"phpunit/phpunit": "^10.5"
},
"extra": {
"branch-alias": {
Expand Down

0 comments on commit ebe4d36

Please sign in to comment.