initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- app/Application.php 93 additions, 0 deletionsapp/Application.php
- app/Command/AbstractCommand.php 36 additions, 0 deletionsapp/Command/AbstractCommand.php
- app/Command/Config.php 203 additions, 0 deletionsapp/Command/Config.php
- app/Concerns/WritesToConsole.php 90 additions, 0 deletionsapp/Concerns/WritesToConsole.php
- app/Config.php 24 additions, 0 deletionsapp/Config.php
- app/Environment.php 11 additions, 0 deletionsapp/Environment.php
- app/Factory/AbstractFactory.php 13 additions, 0 deletionsapp/Factory/AbstractFactory.php
- app/Factory/ConsoleFactory.php 20 additions, 0 deletionsapp/Factory/ConsoleFactory.php
- app/Factory/LoggerFactory.php 26 additions, 0 deletionsapp/Factory/LoggerFactory.php
- app/FanConfig.php 74 additions, 0 deletionsapp/FanConfig.php
- app/Kernel.php 128 additions, 0 deletionsapp/Kernel.php
- app/Model/Pwm.php 10 additions, 0 deletionsapp/Model/Pwm.php
- app/Service/Exception/ConsoleHandler.php 31 additions, 0 deletionsapp/Service/Exception/ConsoleHandler.php
- app/Service/Exception/Formatter.php 80 additions, 0 deletionsapp/Service/Exception/Formatter.php
- app/Service/Exception/Formatter/Console.php 57 additions, 0 deletionsapp/Service/Exception/Formatter/Console.php
- app/Service/Exception/Formatter/Log.php 57 additions, 0 deletionsapp/Service/Exception/Formatter/Log.php
- app/Service/Exception/LogHandler.php 23 additions, 0 deletionsapp/Service/Exception/LogHandler.php
- bin/fan-ctrl 13 additions, 0 deletionsbin/fan-ctrl
- composer.json 18 additions, 0 deletionscomposer.json
.gitignore
0 → 100644
app/Application.php
0 → 100644
app/Command/AbstractCommand.php
0 → 100644
app/Command/Config.php
0 → 100644
app/Concerns/WritesToConsole.php
0 → 100644
app/Config.php
0 → 100644
app/Environment.php
0 → 100644
app/Factory/AbstractFactory.php
0 → 100644
app/Factory/ConsoleFactory.php
0 → 100644
app/Factory/LoggerFactory.php
0 → 100644
app/FanConfig.php
0 → 100644
app/Kernel.php
0 → 100644
app/Model/Pwm.php
0 → 100644
app/Service/Exception/ConsoleHandler.php
0 → 100644
app/Service/Exception/Formatter.php
0 → 100644
app/Service/Exception/Formatter/Console.php
0 → 100644
app/Service/Exception/Formatter/Log.php
0 → 100644
app/Service/Exception/LogHandler.php
0 → 100644
bin/fan-ctrl
0 → 100755
composer.json
0 → 100644
{ | |||
"minimum-stability": "RC", | |||
"bin": ["bin/fan-ctrl"], | |||
"require": { | |||
"tflori/riki-framework": "dev-master", | |||
"tflori/hugga": "^1.1", | |||
"ulrichsg/getopt-php": "^4.0", | |||
"filp/whoops": "^2.14", | |||
"monolog/monolog": "^1.9", | |||
"ext-pcntl": "*", | |||
"php": ">=7.4" | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"App\\": "app" | |||
} | |||
} | |||
} |
Please register or sign in to comment