bitpixel / springcms
Laravel based CMS
Installs: 55
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- php: ^8.1
- ext-zip: *
- alexusmai/laravel-file-manager: ^3.0
- czproject/git-php: ^4.2
- froiden/laravel-installer: 11.0.0
- ifsnop/mysqldump-php: ^2.12
- laravel/ui: ^4.2.3
- tightenco/ziggy: ^0.9.4
- unisharp/laravel-filemanager: ^2.6
Requires (Dev)
- nunomaduro/collision: ^6.0
- orchestra/testbench: ^7.0
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpunit/phpunit: ^9.5
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2025-02-27 10:26:22 UTC
README
Install
-
Install the package:
composer require bitpixel/springcms:dev-master
-
Remove the default home route from
routes/web.php
. This route is defined in our package -
This package uses the (https://github.com/UniSharp/laravel-filemanager)[https://github.com/UniSharp/laravel-filemanager] package to manage images. Run the following command to publish laravel-filemanager config && assets:
php artisan vendor:publish --tag=lfm_config --force
php artisan vendor:publish --tag=lfm_public --force
This will generate config/lfm.php
. Edit this file and set use_package_routes
to false
.
Update filesystem config: Open config/filesystem.php
& change the public disk as follows:
'public' => [ 'driver' => 'local', 'root' => public_path('/uploads/files'), 'url' => '/uploads/files', 'visibility' => 'public', 'throw' => false, ],
- Run the project using
php artisan serve
&& open the project in your browser. It should redirect to the/install
route. Complete the installation process by following the steps.
Publish docs
Go inside /docs
folder then run npm run build && npm run deploy