rem42 / server-load-bundle
This package is abandoned and no longer maintained.
No replacement package was suggested.
Server Load for development app
Package info
github.com/rem42/ServerLoadBundle
Type:symfony-bundle
pkg:composer/rem42/server-load-bundle
dev-master
2017-07-02 16:21 UTC
Requires
- php: >=5.3.0
- symfony/config: ~3.0
- symfony/console: ~3.0
- symfony/dependency-injection: ~3.0
- symfony/framework-bundle: ~3.0
- symfony/http-kernel: ~3.0
This package is auto-updated.
Last update: 2022-01-06 03:52:25 UTC
README
Installation
Installation using composer is really easy: this command will add "rem42/server-load-bundle": "dev-master" to your composer.json
and will download the bundle:
composer require rem42/server-load-bundle dev-master
Enable the bundle in your kernel:
<?php // app/AppKernel.php public function registerBundles() { // ... if (in_array($this->getEnvironment(), ['dev', 'test'], true)) { // ... $bundles[] = new Rem42\Bundle\ServerLoadBundle\ServerLoadBundle(); } }
Add the following lines at app/config/config_dev.yml:
rem42_server_load:
host: "your_personalized_host.dev:port"
Execute
php bin/console server:load