start rework for 2025
This commit is contained in:
parent
81c47d94ca
commit
b2fb8bee39
14 changed files with 214 additions and 1589 deletions
19
implementation/02/composer.json
Normal file
19
implementation/02/composer.json
Normal 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"
|
||||
}
|
||||
}
|
5
implementation/02/public/index.php
Normal file
5
implementation/02/public/index.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
require __DIR__ . '/../Bootstrap.php';
|
7
implementation/02/src/Bootstrap.php
Normal file
7
implementation/02/src/Bootstrap.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Lubiana\NoFramework;
|
||||
|
||||
echo 'Hello world!';
|
Loading…
Add table
Add a link
Reference in a new issue