Download the PHP package plinct/cms without Composer
On this page you can find all versions of the php package plinct/cms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package cms
plinct cms
CMS for Plinct application
Admin panel to manage API Plinct
According to Schema.org standards
Enabled types:
- User;
- Person;
- PostalAddress;
- ContactPoint;
- Place;
- Organization;
- LocalBusiness;
- ImageObject;
- WebPage (with WebPageElement);
- Product;
- Taxon;
- Event;
- Order;
- Invoice
Installation
composer install plinct/cms
Dependencies
- php: >=7.2
- Slim/slim: 4.*
- plinct/api
- plinct/web
- plinct/middleware
- plinct/tool
Get starting
On index.php
<?php declare(strict_types=1); use \Slim\Factory\AppFactory; use Plinct\Middleware\RemoveEndBar; use Plinct\Middleware\RedirectHttps; use Plinct\Api\PlinctApiFactory; use Plinct\Cms\CmsFactory; // autoload include '../vendor/autoload.php'; // error error_reporting(E_ALL); /******* SLIM ********/ $slimApp = AppFactory::create(); // for enable routes PUT and DELETE $slimApp->addBodyParsingMiddleware(); //******* PLINCT *********/ // middlewares $slimApp->add(new RedirectHttps()); $slimApp->add(new RemoveEndBar()); // api $api = PlinctApiFactory::create($slimApp); $api->setAdminData("dbAdminUser", "dbEmailUser", "dbAdminPassword"); // optional $api->connect("dbDriver", "dbHost", "dbDatabase", "dbUser", "dbPassword"); $api->run(); // cms on https://domain/admin $cms = CmsFactory::create($slimApp); $cms->setLanguage("pt_BR"); $cms->setTitle("Pirenópolis Hospedagem"); $cms->setTypesEnabled([ "webPage", "product" ]); $cms->run(); //******* END PLINCT ***********/ // public routes for website on https://domain $publicRoutes = include './App/routes.php'; $publicRoutes($slimApp); // run $slimApp->run(); ``
All versions of cms with dependencies
PHP Build Version
Package Version
Requires
php Version
^7.4 || ^8.0
slim/slim Version ^4.0
slim/psr7 Version ^1.0
tuupola/slim-jwt-auth Version ^3.0
plinct/middleware Version *
plinct/tool Version ^1.4
gitonomy/gitlib Version ^1.3
ext-json Version *
ext-dom Version *
slim/slim Version ^4.0
slim/psr7 Version ^1.0
tuupola/slim-jwt-auth Version ^3.0
plinct/middleware Version *
plinct/tool Version ^1.4
gitonomy/gitlib Version ^1.3
ext-json Version *
ext-dom Version *
The package plinct/cms contains the following files
Loading the files please wait ....