start rework for 2025

This commit is contained in:
lubiana 2025-07-08 22:30:04 +02:00
parent 81c47d94ca
commit b2fb8bee39
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
14 changed files with 214 additions and 1589 deletions

View file

@ -0,0 +1,19 @@
{
"name": "lubiana/no-framework",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"Lubiana\\NoFramework\\": "src/"
}
},
"authors": [
{
"name": "lubiana",
"email": "lubiana@hannover.ccc.de"
}
],
"require": {
"php": "^8.4"
}
}

View file

@ -0,0 +1,5 @@
<?php
declare(strict_types=1);
require __DIR__ . '/../Bootstrap.php';

View file

@ -0,0 +1,7 @@
<?php
declare(strict_types=1);
namespace Lubiana\NoFramework;
echo 'Hello world!';