PHPackages                             avvertix/pronto - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. avvertix/pronto

AbandonedArchivedProject

avvertix/pronto
===============

Pronto CMS. The CMS that is almost pronto (ready in italian) for you and your website.

06PHP

Since Mar 29Pushed 10y ago2 watchersCompare

[ Source](https://github.com/avvertix/pronto-cms)[ Packagist](https://packagist.org/packages/avvertix/pronto)[ RSS](/packages/avvertix-pronto/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Pronto CMS
==========

[](#pronto-cms)

> The CMS that is almost ready ("pronto" in italian) for you to use.

The aim of *Pronto* is to be a download and run flat-file based CMS with high speed and low maintenance costs. It uses [Laravel Lumen](http://lumen.laravel.com/) at its core.

Features
--------

[](#features)

- Markdown content parsing
- Sections and subsections
- Page and section configurable order
- Multiple level page nesting
- Multi-language support
- Themes
- File Download and assets management
- Imagination

### Browser compatibility

[](#browser-compatibility)

At now the plan is to target all the modern browsers (IE10, IE11, Edge, Chrome, Firefox, Safari, Opera latest versions).

### Requirements

[](#requirements)

- php 5.5.9+
- php fileinfo extension
- Composer (for managing PHP dependencies)
- NodeJS and NPM (for building the frontend)

Installation
------------

[](#installation)

To create a new project use Composer "create-project" command. Pass it the package name (`avvertix/pronto`), and the directory to create the project in (e.g. `path`). You can also provide a version as third argument, otherwise the latest version is used.

```
php composer.phar create-project avvertix/pronto path
```

Now that all the PHP code is there you could initialize the frontend (i.e. the default theme) by launching

```
npm install
gulp
```

Content Writing
---------------

[](#content-writing)

Your website content will be gathered from the folders and from the Markdown files contained in the `storage/content` folder.

Folders will be converted to sections, while markdown files are the pages. Only markdown file whose extension is `.md` will be considered.

If a folder contains a file named `index.md` will be showed when a section is requested.

We support the following markdown specifications:

- [Markdown](https://daringfireball.net/projects/markdown/syntax)
- [Markdown Extra](https://michelf.ca/projects/php-markdown/extra/)

The framework offers syntax highlighting so please specify the language for each fenced code block.

**Folder naming rules**

- lower case,
- no spaces,
- `-` and `_` for word separation

**File naming rules**

- `.md` extension,
- no spaces,
- use `-` as word separator,
- entirely lower case

**Adding images (png, jpg, ...) and resources (pdf, zip, ...)**

Images can be stored in `storage/images` and then referenced, in the markdown page, with their names using a special path, like in the example below

```
![alt](./i/image-name.png)

```

Image file names follow the same rules for file naming as the markdown pages.

if you want to set a link on an image, you could do that using the following markdown syntax

```
[![](./i/image-name.png)](./i/image-name.png)

```

The previous example will open the full size version of the image when the image preview is clicked.

### Global Navigation Menu

[](#global-navigation-menu)

The global navigation menu that will be inserted in the header of the website is entirely made using a json based configuration. The configuration file, named `config.json`, must be inside the `storage/app` folder.

Three types of elements can be inserted in the global navigation:

1. External links,
2. Links to pages,
3. Links to sections.

Every element in the menu must have a `title` attribute that is used for the UI of the menu and a `ref` attribute which holds the link to the element.

**External links**

For external links you have to specify:

- `title`: the title of the link to be showed to the user
- `ref`: the absolute URL

**Links to pages**

For pages you have to specify:

- `title`: the title to be showed to the user
- `type`: `page`
- `ref`: the path of the page, wich consists in the section slug and the page slug (relative to the `content` folder)

**Links to sections**

- `title`: the title to be showed to the user
- `type`: `section`
- `ref`: the path to the section (relative to the `content` folder)

The following code block is an example of `config.json` menu section.

```
{
	"menu": [
		{
			"title": "Git",
			"ref": "http://git.project"
		},
		{
			"title": "Sub Section Promoted",
			"type": "section",
			"ref": "example-section/sub-section-1"
		},
		{
			"title": "Home",
			"type": "page",
			"ref": "index"
		}
	]
}
```

Securing your installation
--------------------------

[](#securing-your-installation)

...

---

Created with [Visual Studio Code](https://code.visualstudio.com/)

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/0d6c28ebb739784366f8f6751e40d630edef88d0ea094dcbc656351a1417c0a2?d=identicon)[avvertix](/maintainers/avvertix)

---

Top Contributors

[![avvertix](https://avatars.githubusercontent.com/u/5672748?v=4)](https://github.com/avvertix "avvertix (47 commits)")

### Embed Badge

![Health badge](/badges/avvertix-pronto/health.svg)

```
[![Health](https://phpackages.com/badges/avvertix-pronto/health.svg)](https://phpackages.com/packages/avvertix-pronto)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
