mirror of
https://github.com/filamentphp/filament.git
synced 2026-08-29 03:09:12 +08:00
71 lines
2.0 KiB
JSON
71 lines
2.0 KiB
JSON
{
|
|
"name": "filament/filament",
|
|
"description": "The elegant TALL stack admin panel for Laravel artisans.",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^7.4|^8.0",
|
|
"blade-ui-kit/blade-heroicons": "^1.0",
|
|
"danharrin/date-format-converter": "^0.2",
|
|
"danharrin/livewire-rate-limiting": "^0.3",
|
|
"illuminate/auth": "^8.0",
|
|
"illuminate/console": "^8.0",
|
|
"illuminate/cookie": "^8.0",
|
|
"illuminate/database": "^8.0",
|
|
"illuminate/filesystem": "^8.0",
|
|
"illuminate/http": "^8.0",
|
|
"illuminate/notifications": "^8.0",
|
|
"illuminate/routing": "^8.0",
|
|
"illuminate/session": "^8.0",
|
|
"illuminate/support": "^8.0",
|
|
"illuminate/view": "^8.0",
|
|
"league/glide-laravel": "^1.0",
|
|
"livewire/livewire": "^2.6",
|
|
"thomaswelton/laravel-gravatar": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"orchestra/testbench": "^6.0",
|
|
"phpunit/phpunit": "^9.5",
|
|
"symplify/monorepo-builder": "^9.0"
|
|
},
|
|
"autoload": {
|
|
"files": [
|
|
"src/helpers.php"
|
|
],
|
|
"psr-4": {
|
|
"Filament\\": "src",
|
|
"Filament\\Forms\\": "packages/forms/src",
|
|
"Filament\\Database\\Factories\\": "database/factories",
|
|
"Filament\\Tables\\": "packages/tables/src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Filament\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Filament\\FilamentServiceProvider",
|
|
"Filament\\Forms\\FormsServiceProvider",
|
|
"Filament\\Tables\\TablesServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"FilamentManager": "Filament\\Filament"
|
|
}
|
|
}
|
|
},
|
|
"replace": {
|
|
"filament/forms": "self.version",
|
|
"filament/tables": "self.version"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"scripts": {
|
|
"test": "./vendor/bin/phpunit"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|