-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.53 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.53 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "otsch/ppq",
"description": "A very simple PHP queue system to run background tasks.",
"keywords": [
"queue",
"queue system",
"background tasks",
"task runner",
"background task runner",
"file",
"filesystem"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Olear",
"homepage": "https://www.otsch.codes",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/otsch/ppq/issues",
"source": "https://github.com/otsch/ppq",
"docs": "https://github.com/otsch/ppq"
},
"autoload": {
"psr-4": {
"Otsch\\Ppq\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stubs\\": "tests/Stubs",
"Integration\\": "tests/_integration"
}
},
"require": {
"php": "^8.1",
"mockery/mockery": "^1.5"
},
"require-dev": {
"pestphp/pest": "^1.22",
"phpstan/phpstan": "^1.8",
"friendsofphp/php-cs-fixer": "^3.11"
},
"scripts": {
"test": "@php vendor/bin/pest",
"cs": "@php vendor/bin/php-cs-fixer fix -v --dry-run",
"cs-fix": "@php vendor/bin/php-cs-fixer fix -v",
"stan": "@php vendor/bin/phpstan analyse -c phpstan.neon",
"add-git-hooks": "@php bin/add-git-hooks"
},
"bin": ["bin/ppq"],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}