noccylabs/lua-runtime (0.1.5)
Published 2025-03-28 20:47:27 +00:00 by noccy
Installation
{
"repositories": [{
"type": "composer",
"url": " "
}
]
}
composer require noccylabs/lua-runtime:0.1.5
About this package
Lua interpreter written entirely in PHP (based on raudius/luar)
Luar
LuaRuntime is a fork of Luar that has been updated for newer versions of PHP (8.4). The most recent release of Luar (v0.1.4) required PHP 8.0 due to constraints in the ANTLR runtime library.
Luar is a Lua interpreter written in PHP.
Luar implements a reduced version of Lua and also packages some essential Lua libraries. As such Luar offers forward-compatibility with Lua with some minor caveats:
- The math/string libraries use PHP number/string handling; much of the edge-case behaviour has not been replicated (e.g. division by zero, integer overflow)
- Not all core functions and libraries are available, but a method is provided to inject your own
- Some language constructs are not implemented (e.g. variable attributes, go-to statements)
Installation
composer require noccylabs/lua-runtime
Usage
For more details read the documentation.
use NoccyLabs\LuaRuntime\Luar;
$luar = new Luar();
$luar->assign('world', 'Moon');
$luar->assign('hello_world', function ($name='world') {
return "Hello, $name!";
});
$program = '
local greeting = hello_world(world)
print(greeting)
return greeting
';
$greeting = $luar->eval($program);
Dependencies
Dependencies
ID | Version |
---|---|
antlr/antlr4-php-runtime | ^0.9.0 |
ext-json | * |
Development Dependencies
ID | Version |
---|---|
clean/phpdoc-md | ^0.19.3 |
phpunit/phpunit | ^9.5 |
Details
2025-03-28 20:47:27 +00:00
Assets (1)
Versions (1)
View all
Composer
1
Christopher Vagnetoft
Raul Ferreira Fuentes
GPL-2.0-only
103 KiB
noccylabs-lua-runtime.0.1.5.zip
103 KiB
0.1.5
2025-03-28