Add initial project structure and configurations

- Set up project directories including app structure.
- Add IntelliJ IDEA project files and configurations.
- Implement basic PHP router for request handling.
- Provide reference files for features, IPs, and documentation.
- Include license and copyright files.
This commit is contained in:
Sapoleone
2025-09-23 23:56:22 +02:00
parent 03cb1c5e13
commit cfaafcffa6
39 changed files with 2950 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
<?php
class Controller {
public function index(): void {
require_once '../views/home.php';
}
}
?>

10
app/models/ApiCLI.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
/*
* Copyright (c) 2025. Brusegan Samuele, Davanzo Andrea
* Questo file fa parte di VeyonCtrl ed è rilasciato
* sotto la licenza MIT. Vedere il file LICENSE per i dettagli.
*/
class ApiCLI {
}

0
app/views/home.php Normal file
View File