PHP code example of netgusto / devserver-bundle

1. Go to this page and download the library: Download netgusto/devserver-bundle library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

netgusto / devserver-bundle example snippets


$bundles = array(
    # [...]
    new Netgusto\DevServerBundle\NetgustoDevServerBundle(),
    # [...]
);
yaml
netgusto_dev_server:
    tasks:
        - { command: php app/console server:run 0.0.0.0:8000 }
        - { command: php app/console assetic:dump --watch }
        - { command: ember serve, path: web/apps/calclient }