2017 © Pedro Peláez
 

library php-newcamd

Newcamd cardserver client

image

mszula/php-newcamd

Newcamd cardserver client

  • Monday, March 28, 2016
  • by mszula
  • Repository
  • 3 Watchers
  • 4 Stars
  • 21 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 11 % Grown

The README.md

PHP Newcamd Client

Newcamd cardserver client implementation in PHP., (*1)

Installation

Use Composer to install Newcamd., (*2)

$ composer require mszula/php-newcamd:dev-master

Requirements

  • PHP >= 5.4

Basic Usage

Just create Newcamd/Client with Newcamd/Config argument and connect() to server., (*3)

<?php

use Newcamd\Client;
use Newcamd\Config;

require 'vendor/autoload.php';

$config = new Config();
$config->setHost('127.0.0.1')->setPort('123456')->setDesKey('0102030405060708091011121314')
    ->setUsername('test')->setPassword('test');

$newcamd = new Client($config);
$newcamd->connect()
    ->login();

To Do list

  • Clear code
  • EMM
  • ECM
  • CW

License

PHP Newcamd is licensed under the MIT License - see the License File file for details., (*4)

Fresh implementation in TypeScript

Hey! I haven't been here for a long time. In the meantime, I also created a TypeScript implementation of Newcamd. Feel free to use, clone, leave the star or whatever you want 😄, (*5)

https://github.com/mszula/newcamd-client, (*6)

The Versions

28/03 2016

dev-master

9999999-dev

Newcamd cardserver client

  Sources   Download

MIT

The Development Requires

by Mateusz Szuła

newcamd