-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 992 Bytes
/
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
{
"name": "enflow/component-laravel",
"description": "Laravel package for Enflow's clients",
"license": "MIT",
"authors": [
{
"name": "Michel Bardelmeijer",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"enflow/error-templates": "^2.0",
"laravel/framework": "^10.0|^11.0",
"spatie/laravel-blink": "^1.0",
"itsgoingd/clockwork": "^4.0|^5.0",
"nunomaduro/collision": "^7.0|^8.0|^9.0",
"spatie/once": "^2.0|^3.0",
"php81_bc/strftime": "^0.7.5"
},
"autoload": {
"psr-4": {
"Enflow\\Component\\Laravel\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Enflow\\Component\\Laravel\\LaravelServiceProvider",
"Enflow\\Component\\Laravel\\MigrationServiceProvider"
]
}
}
}