-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.2 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.2 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
44
{
"name": "patienceman/custom-handler",
"description": "Provide a convenient way creating single action handlers. The idea of a action handler is a single action controller that means a unique class handles each action",
"type": "library",
"license": "MIT",
"authors": [
{
"role": "Laravel/PHP Developer",
"name": "Manirabona Patience",
"email": "hseal419@gmail.com",
"homepage": "https://github.com/manirabona-programer"
}
],
"keywords": [
"php",
"laravel",
"custom-handler",
"handlers"
],
"autoload": {
"psr-4": {
"Patienceman\\CustomHandler\\": "src/"
}
},
"minimum-stability": "beta",
"require": {
"php": ">=8.0.0"
},
"extra": {
"laravel": {
"providers": [
"Patienceman\\CustomHandler\\Provider\\CustomHandlerServiceProvider"
],
"aliases": {
"CustomHandler": "Patienceman\\CustomHandler\\Facades\\CustomHandler"
}
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
}
}