Minimalist-ish PHP framework, in a single file, to easily create dynamic websites with clean URLs.
- Customize the base template (master layout).
- Define your routes in a config file.
- Create a sub-template for each route.
- And voilΓ !
I guess you hate doing boring manipulationsβ¦
so check the
bin/create-project
script, it'll guide your through all the necessary steps πThere's also scripts to run your local
server
and to deploy
your project, [more below](#-cherry-on-the-cake).
- Clone this repository.
- Create the project base structure.
- Copy the content of the
skeleton
folder to yourproject_dir
. - Copy the
minish.php
file intoproject_dir/_private
. - Change the
baseMetaTitle
inproject_dir/_private/config/settings.php
.
- Copy the content of the
- Launch the PHP Development Server from your
project_dir
.
git clone [email protected]:ppo/php-minish.git ${minish_git_dir}
cp -r ${minish_git_dir}/skeleton ${project_dir}
cp ${minish_git_dir}/minish.php ${project_dir}/_private/
sed -i "" -e "s/Default Minish/${project_meta_title}/g" ${project_dir}/_private/config/settings.php
php -S localhost:8000
- Configure your routes in
_private/config/routes.php
, for examplefoo-bar
:
<?php
return [
"home" => ...,
"foo-bar" => [ # Route name in dash-case! Not cleaned!
"path" => "/foo/bar", # URL path with leading and no trailing slashes. Cleaned anyway.
"title" => "Foo Bar", # Title for the HTML meta title, and to generate links in templates.
// "template" => "foo-bar", # Default is `route-name` anyway => file: `_private/templates/foo-bar.php`.
],
...
];
- Create the related templates in
_private/templates/
, for examplefoo-bar.php
:
<h1><?php echo $_routeConfig["title"]; ?></h1>
<p>Foo Bar lorem ipsum ipsum dolor sit amet.</p>
<p><a href="<?php echo $_routes["home"]["path"]; ?>">Back to home</a></p>
- Customize the look in
static/main.css
.
π You can find more details about how this framework works here below.
- Edit
.htaccess
and replaceexample.com
with your domain. - Copy the content of your
project_dir
folder on your server. If you're lazy, check the following chapter π
sed -i "" -e "s/example\.com/${project_domain}/g" ${project_dir}/.htaccess
rsync -au --delete --progress --exclude-from="$__DIR__/.deployignore" "$project_dir/" "${DEPLOY_DST%/}/"
In the bin
folder, there's a script:
create-project
to guide you through the process of creating a new project.
In the bin
folder of your project (coming from skeleton/bin
), there are 3 scripts:
server
to run your local PHP Development Server.- If you use dnsmasq, replace
localhost
with something likeyourproject.test
.
- If you use dnsmasq, replace
generate-sitemap.php
to generate asitemap.xml
file.deploy
to rsync your project with your server.- You can specify the destination in
.env
. (.gitignore
'd in that folder) .deployignore
allows you to configure which files to exclude from rsync.- All command-line arguments are passed to rsync, so you
deploy --dry-run
.
- You can specify the destination in
sed -i "" -e "s/localhost/$project_slug.test/g" $project_dir/bin/server
mv $project_dir/bin/.env.example $project_dir/bin/.env
sed -i "" -e "s/^DEPLOY_DST=.*$/DEPLOY_DST=$project_rsync_dst/g" $project_dir/bin/.env
Basically, the framework is a single file: minish.php
.
The minimal project folder looks like this.
(The skeleton
folder has that minimal structure.)
PROJECT_ROOT/
βββ _private/ # Folder: all the files of the app.
βΒ Β βββ config/ # Folder: all the configuration files.
βΒ Β βΒ Β βββ routes.php # Configuration of the routes/URLs.
βΒ Β βΒ Β βββ settings.php # Application settings.
βΒ Β βββ templates/ # Folder: all the templates.
βΒ Β βΒ Β βββ _base.php # Base template (rendered by the view, having a `main block`).
βΒ Β βΒ Β βββ home.php # Template for the home page (loaded in the `main block`).
βΒ Β βββ .htaccess # Apache config denying access to this folder.
βΒ Β βββ minish.php # The framework!
βββ static/ # Folder: all the static files (images, css, js).
βΒ Β βββ main.css # Site styles.
βββ .htaccess # Apache config for clean URLs and other stuff.
βββ index.php # The default handler launching the app.
Check also the demo
folder for a working example with all the different cases and options.
You can test it with: php -S localhost:8000 -t demo
.
The framework provides 2 classes:
App
: The main component, handling the request and executing the view.View
: The view, receiving context data and rendering templates.
The App
is the main component that boostraps the application.
It detects the current path, find the current route, and execute its view.
This class is automatically instantiated and called at the end of the minish.php
file so that you only need to
require this file in the index.php
.
- Initialization (
__constructor()
)- Load settings
- Register the autoloader
- Load routes
- Initialize the request path
- Execution (
__invoke()
)- Initialize the route
- Get the view
- Get view data
- Execute the view (passing app & data)
The App
passes the following data to the view when executing it.
The forced values are prefixed with _
to avoid name collisions with the initial data (from the config).
- The initial data, using their own names.
_metaTitle
: The HTML meta title, that is formatted using thesettings.metaTitleFormatter
._requestPath
: The URL/request path._routeName
: The name of the current route. It can be used to highlight the current page in the navigation._routeConfig
: The config of the current route. It can be used to display information like the title._routes
: The routes config, without theirview
andtemplate
attributes. It can be used to get the path based on the route name (DRY).
The View
component handles templates and may do some processing before.
In its basic form, it receives context data and renders templates.
In between, it can also act as a controller and perform more actions.
- Basic instantiation (
__constructor()
) - Execution (
__invoke()
)- Initialization (receiving app & data)
- Render the view
- Initialize template data
- Render the base template
In the templates, you can simply include
other template files.
The App
handles the following configuration files, that must be located under _private/config
:
routes
: Definition of routes.data
: Initial data for the view/templates.settings
: Settings for the application.
Definition of routes.
File: _private/config/routes.php
Each route must have the following structure:
- The index key is the
"route-name"
, /!\ It must be in dash-case. path
: URL path associated with this route. Default:"/$routeName"
.title
: Title of the page, used in the HTML meta title or to generate navigation links. If the value is falsy, it tries to generate a value usingsettings.routeTitleFormatter($routeName)
.- If empty, it is always generated.
- If
false
, it will be generated only in the routes passed to the view, not in the HTML meta title.
view
: The view to render the content. It can be defined as follows:- As a class name:
"FooBarView"
(default autoload:Foo-Bar
&View+s
=>_private/views/foo-bar.php
). - As a callable:
[$obj, 'method']
,"Class::method"
, orfunction($app, $data=null) { echo 'content'; }
.
- As a class name:
template
: If not view, the defaultView
is used with this template name (from_private/templates/{$name}.php
).- If not defined, use the
route-name
as template name if that file exists.
- If not defined, use the
<?php
return [
"minimal-one" => [], # path: `/minimal-one`
# title: `Minimal One`
# template: `minimal-one`
"route-name" => [
"path" => "/path/for/this-route",
"title" => "My Route",
],
"other-route" => [
"path" => "/other-route", # Default: `/{$routeName}` so could been omitted.
"title" => "Other Route",
"template" => "my-other-router", # Default is `other-route`, so must be defined.
],
"custom-view" => [
"path" => "/custom-view",
"title" => "My Custom View",
"view" => "CustomView", # Autoloaded from `_private/views/custom.php`.
],
];
Initial data for the view/templates. It can content basically anything you want.
File: _private/config/data.php
<?php
return [
"foo" => "bar",
"myArray" => ["a" => 1, "b" => 2],
"isTrue" => true,
"logoUrl" => "/static/images/logo.png",
"now" => time(),
];
Settings for the application.
File: _private/config/settings.php
They can be accessed from the View
using $this->_private->getSetting("name")
.
The following settings are available:
autoloader
: A callable that will be passed tospl_autoload_register
.- As a string referencing a static method:
"App::autoloader"
. - A lambda function:
function($class) { include "{$class}.php"; }
- As a string referencing a static method:
baseMetaTitle
: The base part of the HTML meta title that is used insettings.metaTitleFormatter($viewTitle)
.baseTemplateName
: The name of the base template. Default:"_base"
.baseUrl
: The base URL of the site. Example:"https://example.com"
.metaTitleFormatter
: Used to format the HTML meta title based onbaseTitle
andviewTitle
. It can be defined as:- As a string that will be formatted with
sprintf
. Default method with:"%2$s | %1$s"
. - As a callable.
- As a string that will be formatted with
routeTitleFormatter
: A callable to generate the route title based on the route name.- Default:
ucwords(trim(str_replace("-", " ", $routeName)))
- Default:
PROJECT_ROOT/
βββ _private/ # Folder: all the files of your app.
βΒ Β βββ config/ # Folder: all configuration files.
βΒ Β βΒ Β βββ data.php # Initial data for the view.
βΒ Β βΒ Β βββ routes.php # Configuration of the routes/URLs.
βΒ Β βΒ Β βββ settings.php # Application settings.
βΒ Β βββ templates/ # Folder: all the templates.
βΒ Β βΒ Β βββ _/ # Folder: all include/blocks files.
βΒ Β βΒ Β β βββ foo.php # Special block for "foo-bar".
βΒ Β βΒ Β β βββ header.php # Page header.
βΒ Β βΒ Β β βββ nav.php # Main navigation.
βΒ Β βΒ Β βββ _base.php # Base template, "inherited" by all pages.
βΒ Β βΒ Β βββ foo-bar.php # Template for the home page.
βΒ Β βΒ Β βββ home.php # Template for the home page.
βΒ Β βββ views/ # Folder: the custom Views (autoloaded).
βΒ Β βΒ Β βββ foo-bar.php # Custom FooBarView.
βΒ Β βββ .htaccess # Apache config denying access to this folder.
βΒ Β βββ minish.php # The framework!
βββ static/ # Folder: all your static files (images, css, js).
βΒ Β βββ main.css # Site styles.
βββ .htaccess # Apache config for clean URLs and other stuff.
βββ index.php # The default handler launching the app.
- Route parameters (e.g.
/blog/{author}/{slug}
), back and forth. - Allow tree structure for routes.
- Tool to generate a
sitemap.xml
. - π€(false good idea?) Integration with Twig
- π€(probably not) Orβ¦
- Simple
{{ var }}
substitution? - Template helpers (echo, ternary operator print, route handling, anchors).
- Simple
Licensed under the MIT License.