Skip to content

Commit c752fce

Browse files
Merge pull request #174 from stackkit/feature/next
Feature/next
2 parents c4249dd + 776ef40 commit c752fce

27 files changed

+1861
-1407
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
.idea/
33
.phpunit.result.cache
44
.phpunit.cache
5-
.env
5+
.env
6+
/coverage

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Add a new queue connection to `config/queue.php`
4545
'service_account_email' => env('CLOUD_TASKS_SERVICE_EMAIL', ''),
4646

4747
'backoff' => 0,
48+
'after_commit' => false,
4849
],
4950
```
5051

composer.json

+11-10
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,14 @@
1010
"require": {
1111
"php": "^8.1",
1212
"ext-json": "*",
13-
"phpseclib/phpseclib": "^3.0",
14-
"google/cloud-tasks": "^1.15|^2.0",
15-
"thecodingmachine/safe": "^1.0|^2.0|^3.0"
13+
"google/cloud-tasks": "^2.0",
14+
"thecodingmachine/safe": "^3.0"
1615
},
1716
"require-dev": {
18-
"orchestra/testbench": "^8.0",
17+
"orchestra/testbench": "^10.0",
1918
"thecodingmachine/phpstan-safe-rule": "^1.2",
20-
"laravel/legacy-factories": "^1.3",
2119
"laravel/pint": "^1.13",
22-
"larastan/larastan": "^2.9"
20+
"larastan/larastan": "^3.0"
2321
},
2422
"autoload": {
2523
"psr-4": {
@@ -28,8 +26,7 @@
2826
},
2927
"autoload-dev": {
3028
"psr-4": {
31-
"Tests\\": "tests/",
32-
"Factories\\": "factories/"
29+
"Tests\\": "tests/"
3330
}
3431
},
3532
"extra": {
@@ -42,8 +39,12 @@
4239
"minimum-stability": "dev",
4340
"prefer-stable": true,
4441
"scripts": {
45-
"l10": [
46-
"composer require laravel/framework:10.* orchestra/testbench:8.* --no-interaction --no-update",
42+
"l11": [
43+
"composer require laravel/framework:11.* orchestra/testbench:9.* --no-interaction --no-update",
44+
"composer update --prefer-stable --prefer-dist --no-interaction"
45+
],
46+
"l12": [
47+
"composer require laravel/framework:12.* orchestra/testbench:10.* --no-interaction --no-update",
4748
"composer update --prefer-stable --prefer-dist --no-interaction"
4849
],
4950
"pint": [

0 commit comments

Comments
 (0)