-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.36 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "nuxtifyts/dash-stack-theme",
"description": "DashStack theme for filament php",
"keywords": [
"php",
"filament",
"filamentphp",
"filamentphp-theme",
"dashStack",
"dashboard-theme"
],
"authors": [
{
"name": "Farouk Braik",
"email": "[email protected]"
}
],
"type": "library",
"require": {
"php": "^8.2",
"filament/filament": "^3.0",
"illuminate/contracts": "^11.0|^12.0",
"spatie/laravel-package-tools": "^1.19"
},
"require-dev": {
"larastan/larastan": "^3.0",
"laravel/pint": "^1.20",
"phpunit/phpunit": "^11.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Nuxtifyts\\DashStackTheme\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nuxtifyts\\DashStackTheme\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --configuration phpstan.neon --memory-limit=1G",
"pint": "vendor/bin/pint src/",
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit --configuration=phpunit.xml --testsuite=Unit"
},
"extra": {
"laravel": {
"providers": [
"Nuxtifyts\\DashStackTheme\\DashStackThemeServiceProvider"
]
}
}
}