daniel-samson / teensyphp
The minimalists web framework
v1.5.2
2025-02-22 22:28 UTC
Requires (Dev)
- phpunit/phpunit: 12.0.4
- dev-main
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.4
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.0
- v1.2.0
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.76
- v1.0.75
- v1.0.74
- v1.0.73
- v1.0.72
- v1.0.71
- v1.0.70
- v1.0.69
- v1.0.68
- v1.0.67
- v1.0.66
- v1.0.65
- v1.0.64
- v1.0.63
- v1.0.62
- v1.0.61
- v1.0.60
- v1.0.59
- v1.0.58
- v1.0.57
- v1.0.56
- v1.0.55
- v1.0.54
- v1.0.53
- v1.0.52
- v1.0.51
- v1.0.50
- v1.0.49
- v1.0.48
- v1.0.47
- v1.0.46
- v1.0.45
- v1.0.44
- v1.0.43
- v1.0.42
- v1.0.41
- v1.0.40
- v1.0.39
- v1.0.38
- v1.0.37
- v1.0.36
- v1.0.35
- v1.0.34
- v1.0.33
- v1.0.32
- v1.0.31
- v1.0.30
- v1.0.29
- v1.0.28
- v1.0.27
- v1.0.26
- v1.0.25
- v1.0.24
- v1.0.23
- v1.0.22
- v1.0.21
- v1.0.20
- v1.0.19
- v1.0.18
- v1.0.17
- v1.0.16
- v1.0.15
- v1.0.14
- v1.0.13
- v1.0.12
- v1.0.11
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-renovate/all
- dev-daniel-samson-patch-1
- dev-release/2.0.0
This package is auto-updated.
Last update: 2025-04-06 06:27:17 UTC
README
Teensy PHP is a micro web framework for rapidly creating REST APIs and hypermedia.
Project Status
Features
- Lightweight Framework
- Simple Router
- PHP Templating Engine
- Middleware Support
- Easy to inject or replace functionality (its just some small functions)
Example
<?php require_once __DIR__ . '/vendor/autoload.php'; router(function() { // uncomment when using laravel valet/herd or when mod_rewrite is unavailable: // use_request_uri(); // // healthcheck route(method(GET), url_path("/"), fn () => render(200, json_out(['status' => 'up']))); // Example url parameter route(method(GET), url_path_params("/hello/:name"), function () { render(200, html_out(template('src/templates/hello.php', ['name' => $_GET[':name']]))); }); // Example JSON body (echo server) route(method(POST), url_path("/echo"), function () { $body = json_in(); render(201, json_out($body)); }); });
Requirements
- PHP 8.0+
- Composer
Documentation
Please see the wiki for more information on how to rapidly create apps with teensyphp.
Creating a new project
Install teensyphp command line tool
composer global require daniel-samson/teensyphp
Create a new project
teensyphp new project-name