-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.29 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
{
"name": "softonic/laravel-queue-job",
"type": "library",
"description" : "Custom Job implementation for vyuldashev@laravel-queue-rabbitmq library",
"keywords": [],
"license": "Apache-2.0",
"homepage": "https://github.com/softonic/laravel-queue-job",
"support": {
"issues": "https://github.com/softonic/laravel-queue-job/issues"
},
"require": {
"php": "^8.0",
"laravel/framework": "^9.0|^10.0",
"vladimir-yuldashev/laravel-queue-rabbitmq": "^13.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0",
"squizlabs/php_codesniffer": "^3",
"rector/rector": "^0.12.13",
"orchestra/testbench": "^7.00"
},
"autoload": {
"psr-4": {
"Softonic\\LaravelQueueJob\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Softonic\\LaravelQueueJob\\": "tests/"
}
},
"scripts": {
"test": [
"@checkstyle",
"@phpunit"
],
"phpunit": "phpunit --coverage-text",
"checkstyle": [
"PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff --dry-run --allow-risky=yes",
"rector --dry-run"
],
"fix-checkstyle": [
"@php-cs-fixer",
"@rector"
],
"php-cs-fixer": "php-cs-fixer fix -v --diff --allow-risky=yes",
"rector": "rector"
}
}