Skip to content

Commit

Permalink
Support Laravel 10 (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
marianogoldman authored Mar 18, 2023
1 parent 9dd2583 commit f038234
Show file tree
Hide file tree
Showing 5 changed files with 1,294 additions and 1,385 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Validate composer.json and composer.lock
run: composer validate
Expand All @@ -37,4 +37,5 @@ jobs:
env:
MERCADOPAGO_API_CLIENT_ID: ${{ secrets.MERCADOPAGO_API_CLIENT_ID }}
MERCADOPAGO_API_CLIENT_SECRET: ${{ secrets.MERCADOPAGO_API_CLIENT_SECRET }}
XDEBUG_MODE: coverage
run: composer run-script test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ docs
vendor
coverage
.phpunit.result.cache
.phpunit.cache
.env
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.4.5",
"illuminate/support": "^9",
"php": "^8.1",
"guzzlehttp/guzzle": "^7.5.0",
"illuminate/support": "^10",
"ext-json": "*"
},
"require-dev": {
"nunomaduro/collision": "^6.1",
"orchestra/testbench": "^7.5",
"phpunit/phpunit": "^9.5"
"nunomaduro/collision": "^7",
"orchestra/testbench": "^8",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit f038234

Please sign in to comment.