2017 © Pedro Peláez
 

library peloton

A fast, secure, minimal PHP application for content-focused websites

image

truetone/peloton

A fast, secure, minimal PHP application for content-focused websites

  • Wednesday, August 16, 2017
  • by thoma127
  • Repository
  • 1 Watchers
  • 0 Stars
  • 41 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 3 % Grown

The README.md

Peloton

Peloton is a minimal web application and templating system., (*1)

It uses Twig for templates and Klein for routing. What does that mean? Let's talk requests., (*2)

Requests

Let's imagine a web server hosting static HTML pages. Those are just plain text files as I'm sure you know. A browser sends a request to the server. If the server can find a file that matches the request it returns a status code of 200 OK and sends the contents of the file back. (If the server can't find it, it sends a 404 status code back.), (*3)

We're abstracting that transaction a little. The server is configured to send all requests for sites that use this application to public/index.php., (*4)

Typically index.php will be pretty minimal. That's because this app handles requests, compiles templates and returns HTML. Klein handles the routing part. Twig is the template engine., (*5)

Thus Peloton is a hybrid between CMS and static site. Templates are compiled on the fly, but we have no database dependencies, making your app faster and more secure. Peloton is designed for sites where the content is the center., (*6)

Development

See CONTRIBUTING, (*7)

History

See CHANGELOG, (*8)

Credits

See AUTHORS, (*9)

License

See LICENSE, (*10)

The Versions

16/08 2017

dev-master

9999999-dev

A fast, secure, minimal PHP application for content-focused websites

  Sources   Download

GPL 3.0

The Requires

 

The Development Requires

by Tony Thomas

03/08 2017

v0.1.0

0.1.0.0

A fast, secure, minimal PHP application for content-focused websites

  Sources   Download

GPL 3.0

The Requires

 

The Development Requires

by Tony Thomas