Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions phpstreamserver/symfony/0.4/bin/phpss

This file was deleted.

4 changes: 0 additions & 4 deletions phpstreamserver/symfony/0.4/post-install.txt

This file was deleted.

11 changes: 11 additions & 0 deletions phpstreamserver/symfony/0.7/bin/phpss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env php
<?php

use App\Kernel;
use PHPStreamServer\Symfony\ServerApplication;

require_once \dirname(__DIR__) . '/vendor/autoload_runtime.php';

return new ServerApplication(static function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
});
11 changes: 11 additions & 0 deletions phpstreamserver/symfony/0.7/post-install.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
* One more step to complete setup:
Set PHPStreamServerRuntime as the Application Runtime by either:
* setting env <comment>APP_RUNTIME="PHPStreamServer\Symfony\PHPStreamServerRuntime"</>
* adding <comment>extra.runtime.class</> to <fg=green>composer.json</>
Read more: <comment>https://phpstreamserver.dev/docs/integrations/symfony#runtime-configuration</>
If you edited <fg=green>composer.json</>, run <comment>composer dump-autoload</> to apply.

* Your Symfony application is ready to run with PHPStreamServer.
Start the server with: <comment>bin/phpss start</>

* Read the documentation at: <comment>https://phpstreamserver.dev/docs/general/</>
Loading