-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b2c0a3a
commit 6a3c9dd
Showing
406 changed files
with
2,081 additions
and
28,209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
namespace DEPTRAC_202401; | ||
|
||
use DEPTRAC_202401\Composer\XdebugHandler\XdebugHandler; | ||
use Qossmic\Deptrac\Supportive\Console\Application; | ||
if (\PHP_VERSION_ID < 80100) { | ||
echo 'Required at least PHP version 8.1.0, your version: ' . \PHP_VERSION . "\n"; | ||
exit(1); | ||
} | ||
(static function () : void { | ||
if (\file_exists($autoload = __DIR__ . '/../vendor/autoload.php')) { | ||
require_once $autoload; | ||
} | ||
})(); | ||
(static function () : void { | ||
if (\file_exists($autoload = \getcwd() . '/vendor/autoload.php')) { | ||
include_once $autoload; | ||
} | ||
})(); | ||
$xdebug = new XdebugHandler('DEPTRAC'); | ||
$xdebug->check(); | ||
unset($xdebug); | ||
(new Application())->run(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.