-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.03 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "dnj/request",
"description": "A manager for laravel jobs",
"type": "library",
"autoload": {
"psr-4": {
"dnj\\Request\\": "src/"
}
},
"require": {
"php": "^7.4|^8.0",
"illuminate/container": "^8.0",
"illuminate/queue": "^8.0",
"illuminate/support": "^8.0",
"spatie/laravel-enum": "^2.5"
},
"require-dev": {
"nunomaduro/larastan": "^0.7.12",
"orchestra/testbench": "^6.18.0",
"friendsofphp/php-cs-fixer": "^3.1"
},
"license": "MIT",
"scripts": {
"test:types": "./vendor/bin/phpstan analyse",
"test:codestyle": "vendor/bin/php-cs-fixer fix -v --dry-run --stop-on-violation --using-cache=no",
"test": [
"@test:types",
"@test:codestyle"
]
},
"extra": {
"laravel": {
"providers": [
"dnj\\Request\\RequestServiceProvider",
"dnj\\Request\\QueueWatcherServiceProvider"
]
}
}
}