Update Flex endpoint

This commit is contained in:
github-action[bot]
2026-08-31 11:53:03 +00:00
parent 937d302dcd
commit 44bf58a4b0
4 changed files with 153 additions and 2 deletions
+1 -1
View File
@@ -526,7 +526,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
| [phpfastcache/phpfastcache-bundle](https://packagist.org/packages/phpfastcache/phpfastcache-bundle) | [3.0](../../../tree/main/phpfastcache/phpfastcache-bundle/3.0) |
| [phpfastcgi/fastcgi-daemon](https://packagist.org/packages/phpfastcgi/fastcgi-daemon) | [0.11](../../../tree/main/phpfastcgi/fastcgi-daemon/0.11) |
| [phpstan/phpstan](https://packagist.org/packages/phpstan/phpstan) | [1.0](../../../tree/main/phpstan/phpstan/1.0) |
| [phpstreamserver/symfony](https://packagist.org/packages/phpstreamserver/symfony) | [0.7](../../../tree/main/phpstreamserver/symfony/0.7) |
| [phpstreamserver/symfony](https://packagist.org/packages/phpstreamserver/symfony) | [0.9](../../../tree/main/phpstreamserver/symfony/0.9) |
| [phpsword/sword-bundle](https://packagist.org/packages/phpsword/sword-bundle) | [1.0](../../../tree/main/phpsword/sword-bundle/1.0) |
| [phpzlc/admin](https://packagist.org/packages/phpzlc/admin) | [1.0](../../../tree/main/phpzlc/admin/1.0) |
| [phpzlc/admin-business](https://packagist.org/packages/phpzlc/admin-business) | [1.0](../../../tree/main/phpzlc/admin-business/1.0) |
@@ -0,0 +1,75 @@
{
"manifests": {
"phpstreamserver/symfony": {
"manifest": {
"bundles": {
"PHPStreamServer\\Symfony\\PHPStreamServerBundle": [
"all"
]
},
"copy-from-recipe": {
"bin/": "%BIN_DIR%/",
"config/": "%CONFIG_DIR%/"
},
"post-install-output": [
" * <options=bold>One more step to complete setup:</>",
" Set PHPStreamServer as the application runtime using one of these options:",
"",
" 1. Set the environment variable:",
" <comment>APP_RUNTIME=\"PHPStreamServer\\Symfony\\PHPStreamServerRuntime\"</>",
"",
" 2. Set <comment>extra.runtime.class</> in <fg=green>composer.json</> to:",
" <comment>PHPStreamServer\\Symfony\\PHPStreamServerRuntime</>",
" Then run:",
" <comment>composer dump-autoload</>",
"",
" See <comment>https://phpstreamserver.dev/docs/integrations/symfony#runtime-configuration</>",
"",
" * <options=bold>Run</> your application with <comment>bin/phpss start</>",
"",
" * <options=bold>Read</> the documentation at <comment>https://phpstreamserver.dev/docs/general/</>"
]
},
"files": {
"bin/phpss": {
"contents": [
"#!/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']);",
"});",
""
],
"executable": true
},
"config/phpss.config.php": {
"contents": [
"<?php",
"",
"use PHPStreamServer\\Core\\ReloadStrategy\\ExceptionReloadStrategy;",
"use PHPStreamServer\\Core\\Server;",
"use PHPStreamServer\\Symfony\\Worker\\SymfonyHttpServerWorker;",
"",
"return static function (Server $server): void {",
" $server->addWorker(new SymfonyHttpServerWorker(",
" listen: '0.0.0.0:8080',",
" reloadStrategies: [",
" new ExceptionReloadStrategy(),",
" ],",
" ));",
"};",
""
],
"executable": false
}
},
"ref": "2890c6e4b00ef832dc6621718b6973618d741b27"
}
}
}
+2 -1
View File
@@ -1685,7 +1685,8 @@
"1.0"
],
"phpstreamserver/symfony": [
"0.7"
"0.7",
"0.9"
],
"phpsword/sword-bundle": [
"1.0"
+75
View File
@@ -0,0 +1,75 @@
{
"manifests": {
"phpstreamserver/symfony": {
"manifest": {
"bundles": {
"PHPStreamServer\\Symfony\\PHPStreamServerBundle": [
"all"
]
},
"copy-from-recipe": {
"bin/": "%BIN_DIR%/",
"config/": "%CONFIG_DIR%/"
},
"post-install-output": [
" * <options=bold>One more step to complete setup:</>",
" Set PHPStreamServer as the application runtime using one of these options:",
"",
" 1. Set the environment variable:",
" <comment>APP_RUNTIME=\"PHPStreamServer\\Symfony\\PHPStreamServerRuntime\"</>",
"",
" 2. Set <comment>extra.runtime.class</> in <fg=green>composer.json</> to:",
" <comment>PHPStreamServer\\Symfony\\PHPStreamServerRuntime</>",
" Then run:",
" <comment>composer dump-autoload</>",
"",
" See <comment>https://phpstreamserver.dev/docs/integrations/symfony#runtime-configuration</>",
"",
" * <options=bold>Run</> your application with <comment>bin/phpss start</>",
"",
" * <options=bold>Read</> the documentation at <comment>https://phpstreamserver.dev/docs/general/</>"
]
},
"files": {
"bin/phpss": {
"contents": [
"#!/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']);",
"});",
""
],
"executable": true
},
"config/phpss.config.php": {
"contents": [
"<?php",
"",
"use PHPStreamServer\\Core\\ReloadStrategy\\ExceptionReloadStrategy;",
"use PHPStreamServer\\Core\\Server;",
"use PHPStreamServer\\Symfony\\Worker\\SymfonyHttpServerWorker;",
"",
"return static function (Server $server): void {",
" $server->addWorker(new SymfonyHttpServerWorker(",
" listen: '0.0.0.0:8080',",
" reloadStrategies: [",
" new ExceptionReloadStrategy(),",
" ],",
" ));",
"};",
""
],
"executable": false
}
},
"ref": "2890c6e4b00ef832dc6621718b6973618d741b27"
}
}
}