~ucl-cs-study-devs/study.cs.ucl-websites/password-trunk

« back to all changes in this revision

Viewing changes to vendor/videlalvaro/php-amqplib/demo/config.php

  • Committer: Steve DODIER-LAZARO
  • Date: 2015-08-25 08:54:08 UTC
  • Revision ID: sdodierl@secdev.cs.ucl.ac.uk-20150825085408-1mognhg5wy79xj52
Adding a third-party extension for AMPQ connections

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
require_once __DIR__.'/../vendor/autoload.php';
 
4
 
 
5
define('HOST', 'localhost');
 
6
define('PORT', 5672);
 
7
define('USER', 'guest');
 
8
define('PASS', 'guest');
 
9
define('VHOST', '/');
 
10
 
 
11
//If this is enabled you can see AMQP output on the CLI
 
12
define('AMQP_DEBUG', true);