-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
56 lines (56 loc) · 1.46 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
{
"name": "stackkit/laravel-google-cloud-tasks-queue",
"license": "MIT",
"authors": [
{
"name": "Marick van Tuil",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"phpseclib/phpseclib": "^3.0",
"google/cloud-tasks": "^1.10",
"thecodingmachine/safe": "^1.0|^2.0"
},
"require-dev": {
"orchestra/testbench": "^8.0",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"laravel/legacy-factories": "^1.3",
"laravel/pint": "^1.13",
"larastan/larastan": "^2.9"
},
"autoload": {
"psr-4": {
"Stackkit\\LaravelGoogleCloudTasksQueue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Factories\\": "factories/"
}
},
"extra": {
"laravel": {
"providers": [
"Stackkit\\LaravelGoogleCloudTasksQueue\\CloudTasksServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"l10": [
"composer require laravel/framework:10.* orchestra/testbench:8.* --no-interaction --no-update",
"composer update --prefer-stable --prefer-dist --no-interaction"
],
"pint": [
"pint"
],
"larastan": [
"@php -d memory_limit=-1 vendor/bin/phpstan"
]
}
}