Skip to content

Commit

Permalink
Support Laravel 10 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
marianogoldman authored Mar 17, 2023
1 parent 23eeced commit f260d88
Show file tree
Hide file tree
Showing 5 changed files with 1,282 additions and 1,330 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:
PAYPAL_API_CLIENT_ID: ${{ secrets.PAYPAL_API_CLIENT_ID }}
PAYPAL_API_CLIENT_SECRET: ${{ secrets.PAYPAL_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
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.4.5",
"illuminate/support": "^9.0",
"php": "^8.1",
"guzzlehttp/guzzle": "^7.5.0",
"illuminate/support": "^10.0",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^7.5",
"phpunit/phpunit": "^9.5"
"orchestra/testbench": "^8",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit f260d88

Please sign in to comment.