denpamusic/laravel-zeromq

View on GitHub
config/config.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

return [

    'connections' => [

        'default' => [
            /*
            |--------------------------------------------------------------------------
            | ZeroMQ protocol
            |--------------------------------------------------------------------------
            | Transport protocol that'll be used to
            | establish ZeroMQ connections.
            |
            */

            'protocol' => 'tcp',

            /*
            |--------------------------------------------------------------------------
            | ZeroMQ host
            |--------------------------------------------------------------------------
            | IP or hostname of peer with which ZeroMQ connection
            | should be established.
            |
            */

            'host' => 'localhost',

            /*
            |--------------------------------------------------------------------------
            | ZeroMQ port
            |--------------------------------------------------------------------------
            | Port to which ZeroMQ connection should
            | be established.
            */

            'port' => 28332,
        ],
    ],
];