sodacms / sodacms
Soda Framework: CMS
0.10.7
2018-11-15 02:20 UTC
Requires
- doctrine/dbal: ^2.5
- intervention/image: ^2.4
- laravel/framework: 5.6.*
- league/flysystem-aws-s3-v3: ^1.0
- rutorika/sortable: ^4.2
- santigarcor/laratrust: ^5.0
- soda-framework/eloquent-closure: ^0.2
- zofe/rapyd: ^2.2
This package is not auto-updated.
Last update: 2026-06-13 06:44:03 UTC
README
A sweet PHP CMS solution built on Laravel!
Installation
Install easily using the Soda Installer or manually by following these steps:
1. Create new Laravel Project
composer create-project --prefer-dist laravel/laravel app-name "5.3.*"
or
laravel new app-name
2. Require Soda Framework
cd app-name
composer require soda-framework/cms
3. Integrate into Laravel
Add package to providers in /config/app.php
'providers' => [
Soda\Cms\SodaServiceProvider::class,
]
4. Configure
php artisan soda:setup
or, manually set up database in your .env file.
5. Migrate & Seed
(optional) php artisan session:table
php artisan vendor:publish
php artisan optimize
php artisan soda:install