jasonc / laravel-filament-saas
Jason.Chen's Laravel&Filament project
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.3
- ext-bcmath: *
- ext-gd: *
- ext-mbstring: *
- ext-openssl: *
- ext-zip: *
- codewithdennis/filament-select-tree: ^3.1
- diogogpinto/filament-auth-ui-enhancer: ^1.0
- filament/filament: ^3.3
- flowframe/laravel-trend: ^0.4.0
- genealabs/laravel-model-caching: ^12.0
- hugomyb/filament-media-action: ^3.1
- intervention/image: ^3.11
- lara-zeus/popover: ^1.1
- laravel-lang/common: ^6.7
- laravel/framework: ^12.12
- laravel/horizon: ^5.31
- laravel/octane: ^2.9
- laravel/sanctum: ^4.1
- laravel/tinker: ^2.10
- league/csv: ^9.23
- league/flysystem-aws-s3-v3: ^3.29
- malzariey/filament-daterangepicker-filter: ^3.3
- mews/captcha: ^3.4
- mvenghaus/filament-plugin-schedule-monitor: ^3.0
- nelexa/zip: ^4.0
- overtrue/easy-sms: ^3.1
- overtrue/pinyin: ^5.3
- phpoffice/phpspreadsheet: ^4.2
- spatie/laravel-backup: ^9.3
- swisnl/filament-backgrounds: ^1.1
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pail: ^1.2.2
- laravel/pint: ^1.13
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- phpunit/phpunit: ^11.5.3
README
安装
composer create jasonc/laravel-filament-saas myProject -vvv --ignore-platform-reqs
修改文件夹权限
chown -R www:www storage bootstrap/cache
正式环境安装
composer install --no-dev --optimize-autoloader --no-interaction
常用优化命令
# 初始化环境,数据库 php artisan key:generate php artisan migrate php artisan db:seed # 清除缓存 php artisan cache:clear php artisan config:clear php artisan route:clear php artisan view:clear # 生成优化的配置文件 php artisan config:cache # 生成优化的路由文件 php artisan route:cache # 生成优化的视图文件 php artisan view:cache # 生成优化的类加载文件 php artisan optimize php artisan filament:optimize
忽略windows平台依赖
composer update --no-dev -vvv --ignore-platform-reqs