-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.86 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
{
"name": "rajmundtoth0/laravel-job-remove",
"description": "A Laravel package to remove jobs",
"type": "package",
"license": "MIT",
"support": {
"issues": "https://github.com/rajmundtoth0/laravel-job-remove/issues",
"source": "https://github.com/rajmundtoth0/laravel-job-remove"
},
"authors": [
{
"name": "Rajmund Toth",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"laravel/horizon": "^5.0"
},
"autoload": {
"psr-4": {
"rajmundtoth0\\LaravelJobRemove\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"rajmundtoth0\\LaravelJobRemove\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.57",
"larastan/larastan": "*",
"orchestra/testbench": "^9.0",
"php-http/mock-client": "^1.6",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "*",
"phpunit/phpunit": "^11.0",
"phpstan/phpstan-mockery": "^1.1"
},
"extra": {
"laravel": {
"providers": [
"rajmundtoth0\\LaravelJobRemove\\LaravelJobRemoveServiceProvider"
]
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --no-progress",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html=./Tests/CoverageReport/",
"test-coverage-ci": "vendor/bin/phpunit --coverage-clover=coverage.xml",
"cs": "vendor/bin/php-cs-fixer fix ./",
"cs-ci": "vendor/bin/php-cs-fixer fix --dry-run --diff --ansi ./"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}