Download the PHP package tavp/cms without Composer

On this page you can find all versions of the php package tavp/cms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package cms

TAVP CMS

A content management system built on the TAVP Stack. WordPress-familiar, Voyager-style admin, thin and fast — with pluggable storage, headless API, and a feature set that works out of the box.

Version: 0.5.2 — ZeroVer 0.MINOR.PATCH.

What it is

Thin. Light. Not bloated. TAVP CMS is a standalone CMS that runs on top of tavp/core only. No external auth packages, no admin panel packages, no component libraries required — it ships with its own implementations.

Concern Implementation
Foundation (routing, ORM, Volt) tavp/core
Admin auth (OTP email) AdminAuth (built-in)
Admin UI PHP templates + Tailwind (built-in)
BREAD CRUD BreadManager (built-in)
Storage DatabaseStore or FlatFileStore (pluggable)

Pluggable storage

You are not locked into a database. Choose the driver in config/cms.php:

The rest of the CMS behaves identically regardless of driver.

Features (what actually works)

Core

Planned (not yet implemented)

Requirements

Install

Quick start

1. Configure

2. Run migrations

3. Admin

Visit /admin, sign in with your allowed email via OTP.

4. Headless API

Content types

Define content types in config/cms.php or use the admin BREAD UI:

Admin (Voyager-style)

Login at /admin with an allowed e-mail — a one-time code is sent to it (Mailpit/SMTP). From there you manage content (BREAD CRUD), taxonomy, media, menus, users, SEO, analytics, and contact-form messages.

Building the admin (self-hosted, no CDN)

Admin templates in resources/admin/ are styled with Tailwind CSS. To avoid the render-blocking Google Fonts / jsdelivr / browser-JIT Tailwind CDN, ship static assets. In your application webroot carry:

Asset Path (webroot)
Tailwind build public/assets/admin.css
Font faces public/assets/fonts.css + /fonts/*.woff2
Alpine public/js/alpine.min.js
EasyMDE public/js/easymde.min.js, public/css/easymde.min.css
Prism + languages public/js/prism*.min.js, public/css/prism-tomorrow.min.css

Build the Tailwind file from source while scanning the CMS admin templates:

(The tailwind.admin.config.js + resources/css/admin.css live in the consuming app — see the tavp-web-id repo for the reference setup.)

Structure

API Reference

All endpoints require a Bearer token via Authorization: Bearer <token>.

Method Endpoint Description
GET /api/cms/types List content types
GET /api/cms/{type} Browse records (paginated)
GET /api/cms/{type}/{id} Read a record
POST /api/cms/{type} Create a record
PUT /api/cms/{type}/{id} Update a record
DELETE /api/cms/{type}/{id} Delete a record
GET /api/cms/search?q={query} Full-text search
GET /api/cms/taxonomy/{type} List taxonomy terms
POST /api/cms/taxonomy Create a taxonomy term
GET /api/cms/{type}/{id}/revisions Revision history
POST /api/cms/{type}/{id}/rollback/{ts} Rollback to revision

License

MIT


All versions of cms with dependencies

PHP Build Version
Package Version
Requires php Version >=8.3
tavp/core Version ^0.1
symfony/yaml Version ^6.0 || ^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package tavp/cms contains the following files

Loading the files please wait ...