You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Next, register the bundle in your AppKernel.php file:
24
+
25
+
```php
26
+
// app/AppKernel.php
27
+
28
+
// ...
29
+
class AppKernel extends Kernel
30
+
{
31
+
public function registerBundles()
32
+
{
33
+
$bundles = array(
34
+
// ...
35
+
new PHPFastCGI\SpeedfonyBundle\PHPFastCGISpeedfonyBundle(),
36
+
);
37
+
38
+
// ...
39
+
}
40
+
// ...
41
+
```
42
+
13
43
## Running the Daemon
14
44
15
45
To start the daemon listening on port 5000 use the command below. Production mode is selected here for the purposes of generating accurate benchmarks. We do not recommend that you use this package in production mode as it is not yet stable.
0 commit comments