generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
64 lines (64 loc) · 1.75 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
60
61
62
63
64
{
"name": "heyjorgedev/qstash-php",
"description": "QStash SDK for PHP - QStash is an HTTP based messaging and scheduling solution for serverless and edge runtimes",
"keywords": [
"qstash",
"upstash",
"queue",
"scheduler",
"cronjob"
],
"homepage": "https://github.com/heyjorgedev/qstash-php",
"license": "MIT",
"authors": [
{
"name": "Jorge Lapa",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"php-http/discovery": "^1.19.4",
"psr/http-client": "^1.0.3",
"psr/http-client-implementation": "^1.0.1",
"psr/http-factory-implementation": "*",
"psr/http-message": "^1.1.0|^2.0.0",
"web-token/jwt-library": "^4.0",
"ext-mbstring": "*",
"ext-json": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8.1",
"laravel/pint": "^1.0",
"mockery/mockery": "^1.6",
"pestphp/pest": "^3.0",
"spatie/ray": "^1.28",
"nunomaduro/collision": "^8.1.1"
},
"autoload": {
"psr-4": {
"HeyJorgeDev\\QStash\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HeyJorgeDev\\QStash\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}