Skip to content

Commit

Permalink
Merge pull request #8 from ilan-moatty/feat/laravel-10-compatibility
Browse files Browse the repository at this point in the history
Feat/laravel 10 compatibility
  • Loading branch information
ilan-moatty authored Nov 10, 2023
2 parents 2d1e083 + 88d9d14 commit 3cb0588
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
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

0 comments on commit 3cb0588

Please sign in to comment.