Skip to content

Commit

Permalink
Update dependencies for laravel 9.
Browse files Browse the repository at this point in the history
  • Loading branch information
RTippin committed Feb 8, 2022
2 parents 209f2b1 + e4332e0 commit 4777d30
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Install dependencies
run: |
composer require "illuminate/contracts=^8.70" --no-update
composer require "illuminate/contracts=^9.0" --no-update
composer update --prefer-dist --no-interaction --no-progress
- name: Execute integration tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 8.0, 8.1]
laravel: [^8.70]
php: [8.0.2, 8.1]
laravel: [^9.0]
use-uuid: [false, true]
morph-maps: [false, true]

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
"Faker"
],
"require": {
"php": "^7.4|^8.0|^8.1",
"php": "^8.0.2|^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.3",
"rtippin/messenger": "^1.17"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"orchestra/testbench": "~5|~6"
"orchestra/testbench": "~7"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/Bots/ReplyBotTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public function it_converts_emoji_to_shortcode_when_serialized()
'replies' => ['We feel like 💩'],
]);

$this->assertSame('{"replies":["We feel like :poop:"],"quote_original":false}', $resolve->payload);
$this->assertSame('{"quote_original":false,"replies":["We feel like :poop:"]}', $resolve->payload);
}

/**
Expand Down

0 comments on commit 4777d30

Please sign in to comment.