pstaender/silverstripe-serve
Composer 安装命令:
composer require pstaender/silverstripe-serve
包简介
Connects the PHP development server to SilverStripe
README 文档
README
A simple dev task, to start a development server for your SilverStripe app.
Getting started
$ composer require silverstripe/serve $ framework/sake dev/build flush=1 $ vendor/bin/serve
This will start the server at http://localhost:8080.
You can override the host/port:
$ vendor/bin/serve --host 127.0.0.1 --port 8000
Including a bootstrap file
The bootstrap-file argument lets you include a custom PHP file after composer has been loaded (which includes Silverstripe’s Constants.php) but before main.php has been loaded.
This can be used for any number of things, but the primary use-case is to pull in any stub code & config that wouldn’t normally be included by SilverStripe in the current execution session, such as test stubs.
$ vendor/bin/serve --bootstrap-file tests/serve-bootstrap.php
Using as a library
You can also use serve as a library, to start a SilverStripe server from some other tool such as a test suite:
Assuming that BASE_PATH is defined, you can use it like this:
use SilverStripe\Serve\ServerFactory; $factory = new ServerFactory(); $server = $factory->launchServer([ 'host' => 'localhost', 'preferredPort' => 3000, ]); // Print the contents of the homepage echo file_get_contents($server->getURL()); // Stop the server when you're done with it $server->stop();
If BASE_PATH is not defined, e.g. if you are not running a SapphireTest,
you can provide an alternative path to the factory constructor:
$factory = new ServerFactory(realpath(__DIR__ . '/../'));
launchServer allows the following options to be passed to it:
- host: The host to listen on, defaulting to 0.0.0.0
- preferredPort: The preferred port. If this port isn't available, the next highest one will be used
- bootstrapFile: The bootstrap file, as described above
pstaender/silverstripe-serve 适用场景与选型建议
pstaender/silverstripe-serve 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 13 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 09 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 pstaender/silverstripe-serve 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 pstaender/silverstripe-serve 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 13
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-09-15
