-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (63 loc) · 1.7 KB
/
composer.json
File metadata and controls
64 lines (63 loc) · 1.7 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "resma/filament-awin-theme",
"description": "A modern, responsive, and customizable theme for FilamentPHP, designed to elevate your admin panel with a sleek interface and seamless user experience.",
"keywords": [
"Resma",
"laravel",
"filamentphp",
"filament-awin-theme",
"theme",
"filament"
],
"homepage": "https://github.com/resmatech/filament-awin-theme",
"support": {
"issues": "https://github.com/resmatech/filament-awin-theme/issues",
"source": "https://github.com/resmatech/filament-awin-theme"
},
"license": "MIT",
"authors": [
{
"name": "Rebwar Mustafa",
"email": "hello@resma.tech",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"filament/filament": "^4.0",
"spatie/laravel-package-tools": "^1.15.0"
},
"require-dev": {
"laravel/pint": "^1.0"
},
"autoload": {
"psr-4": {
"Resma\\FilamentAwinTheme\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Resma\\FilamentAwinTheme\\Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"lint": "pint",
"test": "pest",
"test:lint": "pint --test"
},
"extra": {
"laravel": {
"providers": [
],
"aliases": {
"FilamentAwinTheme": "Resma\\FilamentAwinTheme\\Facades\\FilamentAwinTheme"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}