Skip to content

Commit f77d7e3

Browse files
Merge pull request #175 from stackkit/master-next
5.x
2 parents bee9f60 + ef5e681 commit f77d7e3

34 files changed

+1963
-1432
lines changed

.github/workflows/code-analysis.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Code analysis
2+
3+
on:
4+
push:
5+
paths:
6+
- '**.php'
7+
- 'phpstan.neon'
8+
9+
permissions:
10+
contents: write
11+
12+
jobs:
13+
php-code-styling:
14+
runs-on: ubuntu-latest
15+
timeout-minutes: 5
16+
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@v4
20+
with:
21+
ref: ${{ github.head_ref }}
22+
23+
- name: Setup PHP
24+
uses: shivammathur/setup-php@v2
25+
with:
26+
php-version: '8.3'
27+
coverage: none
28+
29+
- name: Install dependencies
30+
run: |
31+
composer install --no-interaction --prefer-dist
32+
33+
- name: Run code analysis
34+
run: |
35+
composer run larastan

.github/workflows/code-style.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Code style
2+
3+
on:
4+
push:
5+
paths:
6+
- '**.php'
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
php-code-styling:
13+
runs-on: ubuntu-latest
14+
timeout-minutes: 5
15+
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v4
19+
with:
20+
ref: ${{ github.head_ref }}
21+
22+
- name: Check code style
23+
uses: aglipanci/laravel-pint-action@v2
24+
25+
- name: Commit changes
26+
uses: stefanzweifel/git-auto-commit-action@v5
27+
with:
28+
commit_message: Apply code style rules

.github/workflows/run-tests.yml

+19-10
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Run tests
22

33
on:
44
pull_request_target:
5-
types: [opened, synchronize, labeled]
5+
types: [ opened, synchronize, labeled ]
66
schedule:
77
- cron: '0 0 * * *'
88

@@ -62,17 +62,22 @@ jobs:
6262
needs: access_check
6363
strategy:
6464
matrix:
65-
db: ['mysql', 'pgsql']
65+
db:
66+
- { driver: 'mysql', version: '8.0' }
67+
- { driver: 'mysql', version: '8.4' }
68+
- { driver: 'pgsql', version: '14' }
69+
- { driver: 'pgsql', version: '15' }
70+
- { driver: 'pgsql', version: '16' }
71+
- { driver: 'pgsql', version: '17' }
6672
payload:
67-
- { queue: 'github-actions-laravel10-php84', laravel: '10.*', php: '8.4', 'testbench': '8.*'}
68-
- { queue: 'github-actions-laravel10-php83', laravel: '10.*', php: '8.3', 'testbench': '8.*'}
69-
- { queue: 'github-actions-laravel10-php82', laravel: '10.*', php: '8.2', 'testbench': '8.*'}
70-
- { queue: 'github-actions-laravel10-php81', laravel: '10.*', php: '8.1', 'testbench': '8.*'}
7173
- { queue: 'github-actions-laravel11-php82', laravel: '11.*', php: '8.2', 'testbench': '9.*' }
7274
- { queue: 'github-actions-laravel11-php83', laravel: '11.*', php: '8.3', 'testbench': '9.*' }
7375
- { queue: 'github-actions-laravel11-php84', laravel: '11.*', php: '8.4', 'testbench': '9.*' }
76+
- { queue: 'github-actions-laravel12-php82', laravel: '12.*', php: '8.2', 'testbench': '10.*' }
77+
- { queue: 'github-actions-laravel12-php83', laravel: '12.*', php: '8.3', 'testbench': '10.*' }
78+
- { queue: 'github-actions-laravel12-php84', laravel: '12.*', php: '8.4', 'testbench': '10.*' }
7479

75-
name: PHP ${{ matrix.payload.php }} - Laravel ${{ matrix.payload.laravel }} - DB ${{ matrix.db }}
80+
name: PHP ${{ matrix.payload.php }} - Laravel ${{ matrix.payload.laravel }} - DB ${{ matrix.db.driver }} ${{ matrix.db.version }}
7681

7782
steps:
7883
- name: Checkout code
@@ -92,12 +97,16 @@ jobs:
9297
CI_SERVICE_ACCOUNT_JSON_KEY: ${{ secrets.CI_SERVICE_ACCOUNT_JSON_KEY }}
9398
run: |
9499
touch .env
95-
MYSQL_PORT=3307 POSTGRES_PORT=5432 docker compose up ${{ matrix.db }} -d
100+
if [ "${{ matrix.db.driver }}" = "mysql" ]; then
101+
MYSQL_PORT=3307 MYSQL_VERSION=${{ matrix.db.version }} docker compose up ${{ matrix.db.driver }} -d
102+
elif [ "${{ matrix.db.driver }}" = "pgsql" ]; then
103+
POSTGRES_PORT=5432 PGSQL_VERSION=${{ matrix.db.version }} docker compose up ${{ matrix.db.driver }} -d
104+
fi
96105
- name: Install dependencies
97106
run: |
98107
composer require "laravel/framework:${{ matrix.payload.laravel }}" "orchestra/testbench:${{ matrix.payload.testbench }}" --no-interaction --no-update
99108
composer update --prefer-stable --prefer-dist --no-interaction
100-
if [ "${{ matrix.db }}" = "mysql" ]; then
109+
if [ "${{ matrix.db.driver }}" = "mysql" ]; then
101110
while ! mysqladmin ping --host=127.0.0.1 --user=cloudtasks --port=3307 --password=cloudtasks --silent; do
102111
echo "Waiting for MySQL..."
103112
sleep 1
@@ -107,7 +116,7 @@ jobs:
107116
fi
108117
- name: Execute tests
109118
env:
110-
DB_DRIVER: ${{ matrix.db }}
119+
DB_DRIVER: ${{ matrix.db.driver }}
111120
DB_HOST: 127.0.0.1
112121
CI_CLOUD_TASKS_PROJECT_ID: ${{ secrets.CI_CLOUD_TASKS_PROJECT_ID }}
113122
CI_CLOUD_TASKS_QUEUE: ${{ secrets.CI_CLOUD_TASKS_QUEUE }}

.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

+7-13
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,26 @@
1-
2-
<img src="/assets/logo.png" width="400">
1+
# Cloud Tasks queue driver for Laravel
32

43
[![Run tests](https://github.com/stackkit/laravel-google-cloud-tasks-queue/actions/workflows/run-tests.yml/badge.svg)](https://github.com/stackkit/laravel-google-cloud-tasks-queue/actions/workflows/run-tests.yml)
54
<a href="https://packagist.org/packages/stackkit/laravel-google-cloud-tasks-queue"><img src="https://poser.pugx.org/stackkit/laravel-google-cloud-tasks-queue/v/stable.svg" alt="Latest Stable Version"></a>
65
<a href="https://packagist.org/packages/stackkit/laravel-google-cloud-tasks-queue"><img src="https://poser.pugx.org/stackkit/laravel-google-cloud-tasks-queue/downloads.svg" alt="Downloads"></a>
76

7+
This package allows Google Cloud Tasks to be used as the queue driver.
8+
89
<sub>Companion packages: <a href="https://github.com/stackkit/laravel-google-cloud-scheduler">Cloud Scheduler</a>, <a href="https://github.com/marickvantuil/laravel-google-cloud-logging">Cloud Logging</a></sub>
910

10-
# Introduction
11+
![Image](https://github.com/user-attachments/assets/d9af0938-43b7-407b-8791-83419420a62b)
1112

12-
This package allows Google Cloud Tasks to be used as the queue driver.
1313

14-
<p align="center">
15-
<img src="/assets/cloud-tasks-home.png" width="100%">
16-
</p>
1714

1815
### Requirements
1916

20-
This package requires Laravel 10 or 11.
17+
This package requires Laravel 11 or 12.
2118

2219
### Installation
2320

2421
Require the package using Composer
2522

26-
```console
23+
```shell
2724
composer require stackkit/laravel-google-cloud-tasks-queue
2825
```
2926

@@ -45,6 +42,7 @@ Add a new queue connection to `config/queue.php`
4542
'service_account_email' => env('CLOUD_TASKS_SERVICE_EMAIL', ''),
4643

4744
'backoff' => 0,
45+
'after_commit' => false,
4846
],
4947
```
5048

@@ -178,10 +176,6 @@ Cloud Tasks has it's own retry configuration options: maximum number of attempts
178176

179177
### Authentication
180178

181-
Set the `GOOGLE_APPLICATION_CREDENTIALS` environment variable with a path to the credentials file.
182-
183-
More info: https://cloud.google.com/docs/authentication/production
184-
185179
If you're not using your master service account (which has all abilities), you must add the following roles to make it
186180
works:
187181

UPGRADING.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# From 4.x to 5.x
2+
3+
The package drops support for Laravel 10 and adds support for Laravel 12.
4+
5+
## Configuration type strictness (Impact: low)
6+
7+
The package now uses `config()->string()` and `config()->array()` to enforce receiving the correct types from the Laravel configuration file.
8+
9+
This should not give any problems but you should verify the configuration settings.
10+
11+
There are no other breaking changes.
12+
113
# From 3.x to 4.x
214

315
## Renamed environment names (Impact: high)

assets/cloud-tasks-home.png

-1.04 MB
Binary file not shown.

assets/logo.png

-48.2 KB
Binary file not shown.

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)