Skip to content

Commit

Permalink
Add Container, Logger, ConfigInjector; expose Arch, OS and Stability …
Browse files Browse the repository at this point in the history
…enums
  • Loading branch information
roxblnfk committed Jul 17, 2024
1 parent b97d04d commit 0c5e513
Show file tree
Hide file tree
Showing 25 changed files with 1,428 additions and 95 deletions.
4 changes: 2 additions & 2 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# BSD 3-Clause

Copyright (c) 2024, <copyright holder>.
Copyright (c) 2024, [copyright holder].
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand All @@ -13,7 +13,7 @@ are met:
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
* Neither the name of <copyright holder> nor the names of its
* Neither the name of [copyright holder] nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">Simplify any binaries downloading</p>
<h1 align="center">DLoad</h1>
<p align="center">Simplify any binaries downloading</p>

<div align="center">

Expand Down
6 changes: 2 additions & 4 deletions bin/download → bin/dload
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,9 @@ if ('cli' !== PHP_SAPI) {
$application = new Application();
$application->setCommandLoader(
new FactoryCommandLoader([
Command\Run::getDefaultName() => static fn() => new Command\Run(),
Command\Joke::getDefaultName() => static fn() => new Command\Joke(),
Command\Test::getDefaultName() => static fn() => new Command\Test(),
Command\Get::getDefaultName() => static fn() => new Command\Get(),
]),
);
$application->setDefaultCommand(Command\Run::getDefaultName(), false);
$application->setDefaultCommand(Command\Get::getDefaultName(), true);
$application->run();
})();
File renamed without changes.
2 changes: 2 additions & 0 deletions composer-require-checker.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{
"symbol-whitelist": [
"SIGINT",
"SIGTERM"
]
}
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
}
],
"require": {
"php": ">=8.1"
"php": ">=8.1",
"yiisoft/injector": "^1.2"
},
"require-dev": {
"buggregator/trap": "^1.10",
Expand Down
Loading

0 comments on commit 0c5e513

Please sign in to comment.