Skip to content

Commit

Permalink
Putting L10 back in with php 8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonferens committed Oct 21, 2024
1 parent 874b177 commit 54a35cc
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,25 @@ on: push
name: CI

jobs:
phpunit-php82:
pest-php81:
name: PHP 8.1
runs-on: ubuntu-latest
container:
image: kirschbaumdevelopment/laravel-test-runner:8.1

steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1

- name: Install composer dependencies
run: |
composer install --prefer-dist --no-interaction --no-scripts
- name: Run Testsuite
run: composer pest

pest-php82:
name: PHP 8.2
runs-on: ubuntu-latest
container:
Expand All @@ -20,7 +38,7 @@ jobs:
- name: Run Testsuite
run: composer pest

phpunit-php83:
pest-php83:
name: PHP 8.3
runs-on: ubuntu-latest
container:
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
}
],
"require": {
"php": "^8.2",
"illuminate/mail": "^11.0"
"php": "^8.1|^8.2",
"illuminate/mail": "^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.18",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^3.4",
"phpunit/phpunit": "^11.0",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.36|^3.4",
"phpunit/phpunit": "^10.1|^11.0",
"spatie/ray": "^1.41.1"
},
"autoload": {
Expand Down

0 comments on commit 54a35cc

Please sign in to comment.