Skip to content

Commit

Permalink
Merge pull request #60 from SuperDJ/dev-L10
Browse files Browse the repository at this point in the history
Added L10 support
  • Loading branch information
lukeraymonddowning authored Mar 3, 2023
2 parents 40f337c + 4878457 commit 4336279
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,23 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.4', '8.0', '8.1']
laravel: [ '8.*', '9.*' ]
php: ['7.4', '8.0', '8.1', '8.2']
laravel: [ '8.*', '9.*', '10.*' ]
stability: [ prefer-lowest, prefer-stable ]
include:
- laravel: '10.*'
testbench: '8.*'
- laravel: '9.*'
testbench: '7.*'
- laravel: '8.*'
testbench: '^6.24'
exclude:
- laravel: 9.*
php: 7.4
- laravel: 10.*
php: 7.4
- laravel: 10.*
php: 8.0

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }}

Expand Down
13 changes: 9 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
}
},
"require": {
"php": "^7.4|^8.0|^8.1",
"illuminate/support": "^8.16|^9.0"
"php": "^7.4|~8.0|~8.1|~8.2",
"illuminate/support": "^8.16|^9.0|^10.0"
},
"require-dev": {
"ext-soap": "*",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^6.24|^7.0",
"orchestra/testbench": "^6.24|^7.0|^8.0",
"pestphp/pest": "^1.11",
"phpoption/phpoption": "^1.8.1",
"phpunit/phpunit": "^9.4",
"phpunit/phpunit": "^9.5",
"spatie/ray": "^1.17"
},
"prefer-stable": true,
Expand All @@ -46,5 +46,10 @@
"Soap": "RicorocksDigitalAgency\\Soap\\Facades\\Soap"
}
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}

0 comments on commit 4336279

Please sign in to comment.