Update Flex endpoint

This commit is contained in:
github-action[bot]
2025-01-29 07:51:07 +00:00
parent 53a56ae3e1
commit 75deedca64
6 changed files with 134 additions and 82 deletions
+1 -2
View File
@@ -327,8 +327,6 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
| [loophp/psr17](https://packagist.org/packages/loophp/psr17) | [1.0](loophp/psr17/1.0) |
| [loophp/repository-monadic-helper](https://packagist.org/packages/loophp/repository-monadic-helper) | [1.0](loophp/repository-monadic-helper/1.0) |
| [lox24eu/lox24_api_client_bundle](https://packagist.org/packages/lox24eu/lox24_api_client_bundle) | [0.3](lox24eu/lox24_api_client_bundle/0.3) |
| [luzrain/phprunner-bundle](https://packagist.org/packages/luzrain/phprunner-bundle) | [0.1](luzrain/phprunner-bundle/0.1) |
| [luzrain/phpstreamserver-bundle](https://packagist.org/packages/luzrain/phpstreamserver-bundle) | [0.2](luzrain/phpstreamserver-bundle/0.2) |
| [luzrain/workerman-bundle](https://packagist.org/packages/luzrain/workerman-bundle) | [0.1](luzrain/workerman-bundle/0.1) |
| [m-adamski/symfony-mailer-bundle](https://packagist.org/packages/m-adamski/symfony-mailer-bundle) | [1.0](m-adamski/symfony-mailer-bundle/1.0) |
| [m-adamski/symfony-schedule-bundle](https://packagist.org/packages/m-adamski/symfony-schedule-bundle) | [1.0](m-adamski/symfony-schedule-bundle/1.0) |
@@ -461,6 +459,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](phpfastcache/phpfastcache-bundle/3.0) |
| [phpfastcgi/fastcgi-daemon](https://packagist.org/packages/phpfastcgi/fastcgi-daemon) | [0.11](phpfastcgi/fastcgi-daemon/0.11) |
| [phpstan/phpstan](https://packagist.org/packages/phpstan/phpstan) | [1.0](phpstan/phpstan/1.0) |
| [phpstreamserver/symfony](https://packagist.org/packages/phpstreamserver/symfony) | [0.4](phpstreamserver/symfony/0.4) |
| [phpsword/sword-bundle](https://packagist.org/packages/phpsword/sword-bundle) | [1.0](phpsword/sword-bundle/1.0) |
| [phpzlc/admin](https://packagist.org/packages/phpzlc/admin) | [1.0](phpzlc/admin/1.0) |
| [phpzlc/admin-business](https://packagist.org/packages/phpzlc/admin-business) | [1.0](phpzlc/admin-business/1.0) |
@@ -0,0 +1,65 @@
{
"manifests": {
"phpstreamserver/symfony": {
"manifest": {
"bundles": {
"PHPStreamServer\\Symfony\\PHPStreamServerBundle": [
"all"
]
},
"copy-from-recipe": {
"bin/": "%BIN_DIR%/",
"config/": "%CONFIG_DIR%/"
},
"post-install-output": [
"* You're ready to run your Symfony application with PHPStreamServer!",
" Run <comment>bin/phpss start</> command to get started",
"",
"* <fg=blue>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\\PHPStreamServerRuntime;",
"",
"$_SERVER['APP_RUNTIME'] = PHPStreamServerRuntime::class;",
"",
"require_once \\dirname(__DIR__).'/vendor/autoload_runtime.php';",
"",
"return 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\\SymfonyHttpServerProcess;",
"",
"return static function (Server $server): void {",
" $server->addWorker(new SymfonyHttpServerProcess(",
" listen: '0.0.0.0:8080',",
" reloadStrategies: [",
" new ExceptionReloadStrategy(),",
" ],",
" ));",
"};",
""
],
"executable": false
}
},
"ref": "1b6f82bb07b647988aabe46f07074d672d237c5f"
}
}
}
+3 -6
View File
@@ -1036,12 +1036,6 @@
"lox24eu/lox24_api_client_bundle": [
"0.3"
],
"luzrain/phprunner-bundle": [
"0.1"
],
"luzrain/phpstreamserver-bundle": [
"0.2"
],
"luzrain/workerman-bundle": [
"0.1"
],
@@ -1468,6 +1462,9 @@
"phpstan/phpstan": [
"1.0"
],
"phpstreamserver/symfony": [
"0.4"
],
"phpsword/sword-bundle": [
"1.0"
],
-37
View File
@@ -1,37 +0,0 @@
{
"manifests": {
"luzrain/phprunner-bundle": {
"manifest": {
"bundles": {
"Luzrain\\PhpRunnerBundle\\PhpRunnerBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
},
"files": {
"config/packages/phprunner.yaml": {
"contents": [
"phprunner:",
" servers:",
" -",
" name: Webserver",
" listen: http://0.0.0.0:8080",
" processes: 4",
"",
" reload_strategy:",
" on_exception:",
" active: true",
" on_file_change:",
" active: true",
""
],
"executable": false
}
},
"ref": "f2aa7a639caddac0a101948db5dd92d6f531f30d"
}
}
}
-37
View File
@@ -1,37 +0,0 @@
{
"manifests": {
"luzrain/phpstreamserver-bundle": {
"manifest": {
"bundles": {
"Luzrain\\PHPStreamServerBundle\\PHPStreamServerBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
},
"files": {
"config/packages/phpstreamserver.yaml": {
"contents": [
"phpstreamserver:",
" servers:",
" -",
" name: Webserver",
" listen: http://0.0.0.0:8080",
" processes: 4",
"",
" reload_strategy:",
" on_exception:",
" active: true",
" on_file_change:",
" active: true",
""
],
"executable": false
}
},
"ref": "8e789f182037f196dd4ec2d8f5d2994275b5f8b3"
}
}
}
+65
View File
@@ -0,0 +1,65 @@
{
"manifests": {
"phpstreamserver/symfony": {
"manifest": {
"bundles": {
"PHPStreamServer\\Symfony\\PHPStreamServerBundle": [
"all"
]
},
"copy-from-recipe": {
"bin/": "%BIN_DIR%/",
"config/": "%CONFIG_DIR%/"
},
"post-install-output": [
"* You're ready to run your Symfony application with PHPStreamServer!",
" Run <comment>bin/phpss start</> command to get started",
"",
"* <fg=blue>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\\PHPStreamServerRuntime;",
"",
"$_SERVER['APP_RUNTIME'] = PHPStreamServerRuntime::class;",
"",
"require_once \\dirname(__DIR__).'/vendor/autoload_runtime.php';",
"",
"return 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\\SymfonyHttpServerProcess;",
"",
"return static function (Server $server): void {",
" $server->addWorker(new SymfonyHttpServerProcess(",
" listen: '0.0.0.0:8080',",
" reloadStrategies: [",
" new ExceptionReloadStrategy(),",
" ],",
" ));",
"};",
""
],
"executable": false
}
},
"ref": "1b6f82bb07b647988aabe46f07074d672d237c5f"
}
}
}