Skip to content

Commit b22f903

Browse files
committed
🔥 Updated PHP/Laravel extensions to latest stable release!
1 parent 1249b39 commit b22f903

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-sqs-queue-json-reader` will be documented in this file.
44

5+
## 0.3.0 - 2022-11-30
6+
7+
- Fixed checking queue connection names.
8+
59
## 0.1.1 - 2021-01-17
610

711
- Updated CS tools

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ For production, use supervisor with the following configuration.
130130
```
131131
[program:sqs-json-reader]
132132
process_name=%(program_name)s_%(process_num)02d
133-
command=php /var/html/app/artisan queue:work sqs-json --sleep=30 --timeout=50 --tries=2 --memory=128 --daemon
133+
command=php /var/html/app/artisan queue:work sqs-json --sleep=60 --timeout=10 --tries=2 --memory=128 --daemon
134134
directory=/var/html/app
135135
autostart=true
136136
autorestart=true
@@ -195,12 +195,18 @@ Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
195195

196196
## Other Laravel packages
197197

198-
[GrumPHP rector task](https://github.com/palpalani/grumphp-rector-task) GrumPHP with a task that runs RectorPHP for your Laravel projects.
198+
[GrumPHP rector task](https://github.com/palpalani/grumphp-rector-task) GrumPHP with a task that runs [RectorPHP](https://github.com/rectorphp/rector-src) for your Laravel projects.
199+
199200
[Email Deny List (blacklist) Check - IP Deny List (blacklist) Check](https://github.com/palpalani/laravel-dns-deny-list-check) Deny list (blacklist) checker will test a mail server IP address against over 50 DNS based email blacklists. (Commonly called Realtime blacklist, DNSBL or RBL).
201+
200202
[Spamassassin spam score of emails](https://github.com/palpalani/laravel-spamassassin-score) Checks the spam score of email contents using spamassassin database.
203+
201204
[Laravel Login Notifications](https://github.com/palpalani/laravel-login-notifications) A login event notification for Laravel projects. By default, it will send notification only on production environment only.
205+
202206
[Laravel Toastr](https://github.com/palpalani/laravel-toastr) Implements toastr.js for Laravel. Toastr.js is a Javascript library for non-blocking notifications.
207+
203208
[Beast](https://github.com/palpalani/beast) Beast is Screenshot as a Service using Nodejs, Chrome and Aws Lamda. Convert a webpage to an image using headless Chrome Takes screenshot of any given URL/Html content and returns base64 encoded buffer.
209+
204210
[eCommerce Product Recommendations](https://github.com/palpalani/eCommerce-Product-Recommendations) Analyse order history of customers and recommend products for new customers which enables higher sales volume.
205211

206212
## Security Vulnerabilities

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@
2727
"illuminate/support": "^8.0|^9.0",
2828
"illuminate/queue": "^8.0|^9.0",
2929
"illuminate/bus": "^8.0|^9.0",
30-
"aws/aws-sdk-php": "^3.0"
30+
"aws/aws-sdk-php": "^3.250"
3131
},
3232
"require-dev": {
33-
"laravel/pint": "^1.1",
34-
"nunomaduro/collision": "^6.2",
35-
"nunomaduro/larastan": "^2.1",
36-
"orchestra/testbench": "^6.9|^7.0",
37-
"phpstan/extension-installer": "^1.1",
33+
"laravel/pint": "^1.2",
34+
"nunomaduro/collision": "^6.3",
35+
"nunomaduro/larastan": "^2.2",
36+
"orchestra/testbench": "^7.15",
37+
"phpstan/extension-installer": "^1.2",
3838
"phpstan/phpstan-deprecation-rules": "^1.0",
39-
"phpunit/phpunit": "^9.3"
39+
"phpunit/phpunit": "^9.5"
4040
},
4141
"autoload": {
4242
"psr-4": {

0 commit comments

Comments
 (0)