forked from ostark/craft-async-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.17 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.17 KB
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
{
"name": "ostark/craft-async-queue",
"description": "A queue handler that moves queue execution to a non-blocking background process",
"type": "craft-plugin",
"version": "2.1.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"queue"
],
"support": {
"docs": "https://github.com/ostark/craft-async-queue/blob/master/README.md",
"issues": "https://github.com/ostark/craft-async-queue/issues"
},
"license": "MIT",
"authors": [
{
"name": "Oliver Stark",
"homepage": "https://www.fortrabbit.com"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"symfony/process": "^4.2.0"
},
"autoload": {
"psr-4": {
"ostark\\AsyncQueue\\": "src/"
}
},
"extra": {
"name": "AsyncQueue",
"handle": "async-queue",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/ostark/craft-async-queue/master/CHANGELOG.md"
},
"require-dev": {
"phpstan/phpstan": "^0.11.1",
"phpunit/phpunit": "^6.0"
},
"scripts": {
"ps": "vendor/bin/phpstan analyse src --level=3 -c phpstan.neon",
"stan": "@ps",
"tests": "vendor/bin/phpunit -v"
}
}