rem42 / server-load-bundle
Server Load for development app
Installs: 40
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
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