mikebirch / anticus-app
Anticus app skeleton for simple websites
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- jasongrimes/paginator: ~1.0
- lib16/rss: ^1.0
- mikebirch/anticus: ^0.1
- wruczek/php-file-cache: ^0.0.5
Requires (Dev)
- phpstan/phpstan: ^0.12.23
README
A skeleton for building simple websites with the Anticus PHP framework
This skeleton includes a blog and pages. Pages can be organised into a flat hierachy and the URLs can reflect this. For example, if you have an about section on the website, the “About” page could have child pages like “Team” and “Story”. The corresponding urls for these pages would be:
- /about
- /about/team
- /about/story
This structure will result in navigation menus being generated for child and sibling pages.
Breadcrumbs are also generated from the URL.
Of course, if these menus do not suit, they can be removed from the twig template files.
If your website needs a CMS, Anticus can be used with the headless CMS Directus which connects to your database and provides an intuitive admin app for managing its content.
Installation
composer create-project --prefer-dist mikebirch/anticus-app
To install into a directory e.g. /name-of-app/
:
composer create-project --prefer-dist mikebirch/anticus-app name-of-app
Create a config file. Rename Config/config_example.php
to Config/config.php
For local development create Config/config_local.php
and overwrite $config
For example:
$config['environment'] = 'dev';
$config['database'] = [
'type' => 'mysql',
'name' => 'dbname',
'host' => 'mysql',
'username' => 'dbuser',
'password' => '123',
'charset' => 'utf8mb4'
];