-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (85 loc) · 2.35 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "ngmy/laravel-async-await-bus",
"description": "A Laravel bus decorator that allows to await asynchronous command responses.",
"license": "MIT",
"type": "library",
"keywords": [
"laravel",
"bus",
"command bus",
"query bus",
"cqrs"
],
"authors": [
{
"name": "Yuta Nagamiya",
"email": "[email protected]"
}
],
"homepage": "https://github.com/ngmy/laravel-async-await-bus",
"require": {
"php": "^8.1",
"laravel/framework": "^9.0 || ^10.0",
"ngmy/laravel-job-response": "^0.5"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"ergebnis/composer-normalize": "^2.31",
"nunomaduro/larastan": "^2.6",
"orchestra/testbench": "^7.0 || ^8.0",
"phpstan/extension-installer": "^1.3"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ngmy\\LaravelAsyncAwaitBus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ngmy\\LaravelAsyncAwaitBus\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true,
"target-directory": "vendor-bin"
},
"laravel": {
"providers": [
"Ngmy\\LaravelAsyncAwaitBus\\ServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
],
"fmt": [
"@php vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --allow-risky=yes"
],
"lint": [
"Composer\\Config::disableProcessTimeout",
"@php vendor/bin/phpstan clear-result-cache || exit $?",
"@php vendor/bin/phpstan analyse"
],
"test": [
"@php vendor/bin/phpunit --no-coverage"
],
"test-coverage": [
"@putenv XDEBUG_MODE=coverage",
"@php vendor/bin/phpunit"
]
}
}