We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 183e313 commit c0e0b1fCopy full SHA for c0e0b1f
README.md
@@ -45,6 +45,11 @@ or you can start with a web server
45
composer create-project catpaw/web-starter
46
```
47
48
+# Install Dependencies
49
+```bash
50
+make install
51
+```
52
+
53
# Program Structure
54
55
Every program must declare a `main` function in the global scope, that will be your entry point.
src/lib/Core/Bootstrap.php
@@ -82,6 +82,10 @@ public static function start(
82
83
$env = new SimpleEnvironment($logger);
84
Container::provide(EnvironmentInterface::class, $env);
85
+ $env->load()->unwrap($envLoadError);
86
+ if ($envLoadError) {
87
+ self::kill((string)$envLoadError);
88
+ }
89
90
$env->set('MAIN', $main);
91
$env->set('LIBRARIES', $libraries);
0 commit comments