-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathcomposer.json
59 lines (59 loc) · 1.7 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "stackkit/laravel-google-cloud-tasks-queue",
"description": "Google Cloud Tasks queue driver for Laravel",
"keywords": ["laravel", "queue", "queues", "google", "cloudtasks", "cloud", "run"],
"license": "MIT",
"authors": [
{
"name": "Marick van Tuil",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"google/cloud-tasks": "^2.0",
"thecodingmachine/safe": "^3.0"
},
"require-dev": {
"orchestra/testbench": "^10.0",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"laravel/pint": "^1.13",
"larastan/larastan": "^3.0"
},
"autoload": {
"psr-4": {
"Stackkit\\LaravelGoogleCloudTasksQueue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Stackkit\\LaravelGoogleCloudTasksQueue\\CloudTasksServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"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": [
"pint"
],
"larastan": [
"@php -d memory_limit=-1 vendor/bin/phpstan"
]
}
}