Download the PHP package alkemann/h2l without Composer
On this page you can find all versions of the php package alkemann/h2l. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor alkemann
Package h2l
Short Description A micro framework for websites and apis. This is a sequel of h.l, made for PHP 8
License MIT
Homepage https://github.com/alkemann/h2l
Package h2l
Short Description A micro framework for websites and apis. This is a sequel of h.l, made for PHP 8
License MIT
Homepage https://github.com/alkemann/h2l
Please rate this library. Is it a good library?
Informations about the package h2l
H2L - microframework
Get started quickly with static pages and small apis
Documentation
Hosted on Github pages: https://alkemann.github.io/h2l/
Requirements
- PHP 8.1
Install
- Install via composer:
composer require alkemann/h2l
- While you can use the library as only a lib, it comes with an index.php file.
The library comes with 3 skeletons to get you started, the "min" contains basically
just the index.php, the minimum expected folder structure and a hello world base route.
You can also use the "base" that contains a an app, some base css, config files.
Thirdly there is an "example" version that contains some more illustative example pages
and dynamic routes. install by simply copying the skeleton folder contents of choice down
to the root of your app (presumably the same folder that contains the "vendor" composer):
vendor/bin/skeleton base
(base automagic website using routes by files and folders). There more other skeleton alternatives:min
(bare bones)heroku_react
(set up for plug and play heroku app with H2L as backend and an react-redux frontend)heroku_min
(set up for plug and play heroku app with H2L)api
(no automagic routing, for pure api apps and specifically routed responses)hyper
(start out with Tailwind, alpine.js and HTMX for server side "SPA")
Usage from skeleton
- Change the homepage by changing the file
content/pages/home.html.php
- Add files and folders to
content/pages
to add fixed routed content - Include a route file in
webroot/index.php
or add toresources/configs/routes.php
if you installed the base skeleton. - Add dynamic routes there by supplying a regex match on url and a closure handler:
Some example routes:
Raw usage
A minimal webroot\index.php
could look something like this
Tests
To run tests you must can checkout the repo and require with dev and run ./bin/runtests
in the same folder as this README.md.
Or to run tests on the vendor included lib into your application, you must also require phpunit; composer require phpunit/phpunit
and then you can run h2l tests with vendor/bin/testh2l
All versions of h2l with dependencies
PHP Build Version
Package Version
Requires
php Version
^8.1
The package alkemann/h2l contains the following files
Loading the files please wait ....