Skip to content

Commit

Permalink
Merge pull request #174 from stackkit/feature/next
Browse files Browse the repository at this point in the history
Feature/next
  • Loading branch information
marickvantuil authored Mar 6, 2025
2 parents c4249dd + 776ef40 commit c752fce
Show file tree
Hide file tree
Showing 27 changed files with 1,861 additions and 1,407 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.idea/
.phpunit.result.cache
.phpunit.cache
.env
.env
/coverage
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Add a new queue connection to `config/queue.php`
'service_account_email' => env('CLOUD_TASKS_SERVICE_EMAIL', ''),

'backoff' => 0,
'after_commit' => false,
],
```

Expand Down
21 changes: 11 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,14 @@
"require": {
"php": "^8.1",
"ext-json": "*",
"phpseclib/phpseclib": "^3.0",
"google/cloud-tasks": "^1.15|^2.0",
"thecodingmachine/safe": "^1.0|^2.0|^3.0"
"google/cloud-tasks": "^2.0",
"thecodingmachine/safe": "^3.0"
},
"require-dev": {
"orchestra/testbench": "^8.0",
"orchestra/testbench": "^10.0",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"laravel/legacy-factories": "^1.3",
"laravel/pint": "^1.13",
"larastan/larastan": "^2.9"
"larastan/larastan": "^3.0"
},
"autoload": {
"psr-4": {
Expand All @@ -28,8 +26,7 @@
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Factories\\": "factories/"
"Tests\\": "tests/"
}
},
"extra": {
Expand All @@ -42,8 +39,12 @@
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"l10": [
"composer require laravel/framework:10.* orchestra/testbench:8.* --no-interaction --no-update",
"l11": [
"composer require laravel/framework:11.* orchestra/testbench:9.* --no-interaction --no-update",
"composer update --prefer-stable --prefer-dist --no-interaction"
],
"l12": [
"composer require laravel/framework:12.* orchestra/testbench:10.* --no-interaction --no-update",
"composer update --prefer-stable --prefer-dist --no-interaction"
],
"pint": [
Expand Down
Loading

0 comments on commit c752fce

Please sign in to comment.