oxygenzsas / composer_lib_app
Classe de demarrage de mon framework
0.3.45
2025-02-16 12:21 UTC
Requires
- php: >=8.1
- dragonmantank/cron-expression: ^3.3
- oxygenzsas/composer_lib_config: ^0.2
- oxygenzsas/composer_lib_container: ^0.1
- oxygenzsas/composer_lib_router: ^0.2
README
Classe de demarrage de mon framework
Migration
CONFIG
// Migration "Migration" => [ /** migration de l'app principal */ 'App' => ['path' => realpath($root_dir.DIRECTORY_SEPARATOR.'src'.DIRECTORY_SEPARATOR.'migration'.DIRECTORY_SEPARATOR), 'name' => 'App'] ,'Trad' => ['path' => realpath($root_dir.DIRECTORY_SEPARATOR.'src'.DIRECTORY_SEPARATOR.'trad'.DIRECTORY_SEPARATOR), 'name' => 'Trad'] ],
migration INIT ( install la bdd migration )
composer migration source=App action=init
migration UP (all)
composer migration source=App action=upgrade
migration DOWN (one at a time)
composer migration source=App action=downgrade
Worker
CONFIG
// Supervisor "Supervisor" => [ /** chemin vers l'executable php */ 'php_path' => 'C:\Users\...\PHP\php-8.1.3-nts-Win32-vs16-x64\php.exe' ,'lock_path' => realpath($root_dir).DIRECTORY_SEPARATOR.'lock'.DIRECTORY_SEPARATOR ],
CONFIG-WORKER a file named worker.php inside folder config. List all actif worker
<?php /** * retourne la liste des workers actifs */ return [ (new \App\worker\Worker1())->getTagIdentifier() => \App\worker\Worker1::class ];
supervisor all ( start all worker )
composer supervisor action=all
start only one worker named worker_1
composer supervisor action=start worker=worker_1
kill one worker named worker_1
composer supervisor action=kill worker=worker_1