Skip to content

Commit

Permalink
Merge pull request #18 from letsgoi/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
marcoocram authored May 11, 2023
2 parents 40f78fc + c956c3e commit 076dd1d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/vendor
composer.lock
/phpunit.xml
.phpunit.result.cache
.phpunit.cache
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ It's divided in two main elements:

## Requirements

- PHP >= 7.4
- Laravel >= 8.0
- PHP >= 8.1
- Laravel >= 9.0

## Instalation

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/console": "^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
"php": "^8.1",
"illuminate/console": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"ext-json": "*",
"aws/aws-sdk-php": "^3.134"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^6.0",
"letsgoi/php-code-style": "^1.2"
"phpunit/phpunit": "^10.1",
"letsgoi/php-code-style": "^1.3",
"orchestra/testbench": "^7.2|^8.5"
},
"autoload": {
"psr-4": {
Expand Down
11 changes: 3 additions & 8 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" verbose="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">src/</directory>
</include>
</coverage>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="Permissions Test Suite">
<testsuite name="Laravel Domain Event Messaging Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>
</phpunit>
2 changes: 1 addition & 1 deletion src/Consumer/Drivers/ConsumerSqsDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private function getAwsSqsClient(): SqsClient
'timeout' => 60,
'connect_timeout' => 60,
],
]
],
);

return (new Sdk($config))->createClient('sqs');
Expand Down

0 comments on commit 076dd1d

Please sign in to comment.