phpffcms/ffcms

FFCMS 3 version based on MVC core ffcms-core.

3.1.0 2019-02-01 16:53 UTC

This package is auto-updated.

Last update: 2024-04-09 14:17:18 UTC


README

FFCMS - fast, flexibility content management system, based on MVC architecture. FFCMS contains many package to realise application building.

Scrutinizer Code Quality

REQUIREMENTS

FFCMS (sience 3.1 version) require php 7.1 or newest. FFCMS include 2 native engine:

INSTALLATION

To deploy ffcms software you must have composer and php-cli:

composer create-project phpffcms/ffcms ./path/to/document_root 3.1 --keep-vcs --prefer-dist
composer update
php console.php main:install

If you want to use developer version you must use "master" branch from developer repository with stability "-dev":

composer create-project phpffcms/ffcms ./path/to/document_root --stability="dev" --keep-vcs --prefer-dist
composer update
php console.php main:install

Docker run

Sience 3.1 version you can run ffcms in docker environment (with full builtin nginx-php.fpm webserver, mysql & phpmyadmin). Use docker-dev repository to get docker image and instructions.

Developer run

Since ffcms 3.1 version support native php built-in developer server. You can easy run ffcms as standalone app:

php -S 127.0.0.1:8000 index.php

and ffcms will be available on address http://127.0.0.1:8000

Authors

Owner: Piatinskii Mihail, Russian Federation.

Website: https://pmcore.ru/en.html#proj

License (MIT)

The MIT License (MIT)

Copyright (c) 2013-2019 FFCMS, Mihail Pyatinskiy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.