Skip to content

Commit

Permalink
Merge branch '1.x' into 2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
mbabker committed Feb 12, 2023
2 parents e5ccca4 + 96f7ce5 commit df18e1e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,27 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['8.0', '8.1']
laravel: ['9.*']
php: ['8.0', '8.1', '8.2']
laravel: ['9.*', '10.*@dev']
composer-flags: ['--prefer-stable']
can-fail: [false]
include:
- php: '8.0'
laravel: '9.*'
composer-flags: '--prefer-stable --prefer-lowest'
can-fail: false
exclude:
- php: '8.0'
laravel: '10.*@dev'

name: "PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}${{ matrix.composer-flags != '' && format(' - Composer {0}', matrix.composer-flags) || '' }}"

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.composer/cache/files
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}-flags-${{ matrix.composer-flags }}
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changelog

## 2.0.0 (2022-??-??)
## 2.0.0 (2023-??-??)

- Consult the UPGRADE guide for changes between 1.x and 2.0
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
"keywords": ["laravel", "twilio"],
"require": {
"php": "^8.0",
"illuminate/http": "^9.0",
"illuminate/support": "^9.0",
"illuminate/http": "^9.0 || ^10.0",
"illuminate/support": "^9.0 || ^10.0",
"twilio/sdk": "^6.33"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.0",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5"
"laravel/framework": "^9.0 || ^10.0",
"orchestra/testbench": "^7.0 || ^8.0",
"phpunit/phpunit": "^9.5 || ^10.0"
},
"suggest": {
"illuminate/notifications": "To use Laravel's notifications component with this package"
Expand Down

0 comments on commit df18e1e

Please sign in to comment.