Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/laravel 10 compatibility #8

Merged
merged 7 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# All permissions are granted read access
permissions: read-all

jobs:
test:
runs-on: ubuntu-latest
Expand All @@ -19,10 +22,12 @@ jobs:
- uses: actions/checkout@v2

- name: Install Composer packages
uses: MilesChou/composer-action/7.4@master
uses: MilesChou/composer-action/8.2@master
with:
args: install

# Runs a single command using the runners shell
- name: PHPUnit (php-actions)
uses: php-actions/phpunit@v2
with:
php_version: 8.2
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
}
],
"require": {
"php": "^7.4|^8.0",
"php": "^8.2",
"nesbot/carbon": "^2.0",
"laravel/framework": "^6.0|^7.0|^8.0|^9.0"
"laravel/framework": "^10.0"
},
"require-dev": {
"phpunit/phpunit": "9.5.x-dev",
"orchestra/testbench": "^6.18|^7.0"
"phpunit/phpunit": "^9.6.0",
"orchestra/testbench": "^8.8.3"
},
"autoload": {
"psr-4": {
Expand Down