-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 747 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 747 Bytes
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
{
"name": "benjaminhansen/filament-draftable",
"description": "Provides a draftable interface to save long forms as a draft in the browser's localStorage and encrypts the data using Laravel's encryption.",
"type": "package",
"license": "MIT",
"authors": [
{
"name": "BJ Hansen",
"email": "bjhansen@benjaminhansen.net"
}
],
"require": {
"laravel/helpers": "^1.7",
"php": "^8.2",
"filament/filament": "^3.0|^4.0|^5.0"
},
"autoload": {
"psr-4": {
"BenjaminHansen\\FilamentDraftable\\": "src/"
}
},
"require-dev": {
"laravel/pint": "^1.22"
},
"minimum-stability": "dev",
"prefer-stable": true
}