Skip to content

Commit 962d54b

Browse files
authored
support to L10 (#12)
1 parent b7f06b3 commit 962d54b

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
php-versions: ['8.2', '8.1', '8.0']
16+
php-versions: ['8.3', '8.2', '8.1', '8.0']
1717

1818
steps:
1919
- uses: actions/checkout@v2
@@ -29,17 +29,7 @@ jobs:
2929
- name: Validate composer.json and composer.lock
3030
run: composer validate
3131

32-
- name: Cache Composer packages
33-
id: composer-cache
34-
uses: actions/cache@v2
35-
with:
36-
path: vendor
37-
key: ${{ runner.os }}-php-${{ matrix.php-versions }}-${{ hashFiles('**/composer.lock') }}
38-
restore-keys: |
39-
${{ runner.os }}-php-${{ matrix.php-versions }}
40-
4132
- name: Install dependencies
42-
if: steps.composer-cache.outputs.cache-hit != 'true'
4333
run: |
4434
composer install
4535
composer dump

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
"guzzlehttp/guzzle": "^7.4",
2727
"league/omnipay": "^3.2",
2828
"omnipay/common": "^3.2",
29-
"illuminate/contracts": "^9.25"
29+
"illuminate/contracts": "^9.25|^10.0"
3030
},
3131
"require-dev": {
3232
"guzzlehttp/psr7": "^1",
3333
"omnipay/tests": "^4.1",
3434
"phpunit/phpunit": "^9.5",
35-
"orchestra/testbench": "^7.0",
35+
"orchestra/testbench": "^7.0|^8.0",
3636
"friendsofphp/php-cs-fixer": "^3.10",
3737
"phpstan/phpstan": "^1.8",
3838
"nunomaduro/larastan": "^2.1"

0 commit comments

Comments
 (0)