Download the PHP package debugchannel/php-client without Composer

On this page you can find all versions of the php package debugchannel/php-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package php-client

debugchannel-php-client

php client for DebugChannel.

Install via Composer

php-client is available on composer via Packagist. It can be installed as a project dependency using the following command in the project root directory

Composer will then automagically add debugchannel\DebugChannel to your autoloader. It is that simple.

Install via Github

php-client is hosted on GitHub and can be used just like any other local library.

Download the repository by checking out the code:

` or by downloading a zip:

This will create a directory called debugchannel-php-client. You only need to include 1 file - located at debugchannel-php-client/dist/DebugChannel.php - and you are done.

For example:

How to use php-client

The php-client is declared in the namespace debugchannel and the client class is called DebugChannel. There is a also a small set of global functions.

The different methods on the class DebugChannel determine the way information is displayed on debugchannel.

Initialisation

Creates a new client $d pointing at the DebugChannel server found at 192.168.2.158 and displays messages on the channel greeting. To view your messages just point a browser at http://192.166.2.158/greeting.

Various options can be set with a fourth argument on the constuctor.

The third parameter is related to a authentication feature $apiKey which isn't currently used.

->explore()

Great for anything and everything. Pass it whatever and it'll do it's best to display a pretty, type aware, human readable, explorable (if needed) and helpful representation of its first argument. A totally awesome print_r() and var_dump replacement.

->string()

Sometimes you just want a string representation of a object. Anything you pass to it will be cast to a string.

->clear()

` Clears any messages currently being displayed on your channel. Great for 'resetting' a channel at the beginning of a new debugging flow.

->table()

Have data that looks like it can be displayed as a 2 dimensional table?

like

We'll even try handle iterate objects too. So this is also possible.

->code()

Debugging some sql? Generating some javascript? Want to syntax highlight something?

We use the excellent highlight.js syntax highlighting libriary. The list of supported languages can be seen here http://highlightjs.org/download/.

->help()

Want some help?

Outputs a helpful message on your channel with links to usage instructions and documentation. Also good for checking if everything is working.

Options

All the functions which send output to the debug server can take a few options. These are

Debug channel defines two constants - DC_DIE and DC_EXPAND - to express these. You can pass options as either a array or you can get your bitwise operator on. The following two explore lines are equivalent.

There is also a shortcut for the 'die' functionality. Prepend the ! to any of the methods which cause a debug message to be sent. The following are equivalent.

The complete list of functions this operates on is !dc_explore(), !dc_table(), !dc_string(), !dc_code(), !dc_image(), !dc_chat(), !dc_clear(), !dc_help(), !$dc->explore(), !$dc->table(), !$dc->string(), !$dc->code(), !$dc->image(), !$dc->chat(), !$dc->clear(), !$dc->help().

Static Methods and Default Configuration

We all want debugging to be as fast a possible. If instantiating a DebugChannel object seems like too much of a chore there are helpful global shortcuts to make this pain go away. No need to add a uses statement or worry about namespaces, muck about with dependency injection, ... .

The global functions are simply the method name from DebugChannel prefixed with 'dc_'; so where you'd have typed $d->explore($mything) all you need to do now is dc_explore($mything). The following all work as you'd expect.

Behind the scenes the dc_* functions create a new DebugChannel object on first invocation and then reuse it. The constructor arguments for this global object can be set by either configuration file or by calling a function dc_setup().

DebugChannel.php is compliant with PSR-0 autoloaders. The global functions can't / don't use a autoloader so you'll need to manually include the file 'debugchannel/DebugChannel.php' in a bootstrap-esque file somewhere.

dc_setup()

Call dcsetup() the same way you might call the constructor for the class DebugChannel. Subsequent calls to any `dc*` functions will use a DebugChannel instance configured this way.

eg,

Via a configuration file

If you don't call dc_setup() we search for a config file dc_setup.json in the following three directories.

A setup file not in your projects source control means that each developer can use different channels and set different options based on personal preference without having to modify the code which produces the debugging output.

The setup file must be valid json and it's structure is as follows.

Want more?

Awesome. PHP Documentor docs detailing all the class methods and a lot more techie detail are available in the repository. To view it open debugchannel-php-client/doc/index.html in your favourite browser.


All versions of php-client with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5
andyhu/php-ref Version dev-master
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package debugchannel/php-client contains the following files

Loading the files please wait ....