-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.15 KB
/
Copy pathcomposer.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "accrossan/action-handler",
"description": "Laravel action handler package.",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.3",
"illuminate/support": "^11.0|^12.0",
"spatie/laravel-package-tools": "^1.92",
"spatie/laravel-queueable-action": "^2.16"
},
"require-dev": {
"orchestra/testbench": "^9.0|^10.0",
"phpunit/phpunit": "^10.5",
"larastan/larastan": "^3.9"
},
"autoload": {
"psr-4": {
"Accrossan\\ActionHandler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Accrossan\\ActionHandler\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Accrossan\\ActionHandler\\Providers\\ActionHandlerServiceProvider"
],
"aliases": {
"ActionHandler": "Accrossan\\ActionHandler\\Facades\\ActionHandler"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true
}