go1 / util_fn
This package's canonical repository appears to be gone and the package has been frozen as a result.
dev-master
2021-09-16 03:21 UTC
Requires
- php: ^7.2
- symfony/http-foundation: ^4.0 | ^3.4
Requires (Dev)
- symfony/process: ^v4.1.7
This package is auto-updated.
Last update: 2024-05-14 01:31:13 UTC
README
Simple library to build tiny PHP application:
- Input: stdIn
- Output: stdOut
- No HTTP server.
- No RESTful.
Usage
<?php go1\util_fn\FnRunner::run( function (go1\util_fn\FnRunner $fn, stdClass $payload) { return "Hello {$payload->name}!\n"; } );
Execute it: echo '{"name":"world"}' | php hello-world.php
More examples can be found under ./examples/
.