Download the PHP package soluble/japha-pjb62-compat without Composer

On this page you can find all versions of the php package soluble/japha-pjb62-compat. 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 japha-pjb62-compat

soluble-japha-pjb62-compat

PHP Version Build Status Code Coverage Scrutinizer Code Quality Latest Stable Version Total Downloads License

Introduction

Work in progress

Historically the PHP/Java bridge client didn't support namespaces.

Install this package if you have existing code relying on legacy php-java-bridge and don't want to refactor to the newer implementation provided by soluble/japha.

Features

Requirements

Installation

  1. PHP installation (client)

    Through composer.

    Most modern frameworks will include Composer out of the box, but ensure the following file is included:

  2. PHP-Java-bridge server

    Refer to the latest documentation provided in the soluble-japha project.

    Or as quick install guide use the standalone server :

    The server will start on default port 8089. If you like to change it, create a local copy of ./config/pjbserver.config.php.dist and refer it in the above command.

    Use the commands pjbserver:stop, pjbserver:restart, pjbserver:status to control or query the server status.

    For production the recommended way is to deploy the JavaBridge servlet into a J2EE compatible server (Tomcat,...). Have a look to the complete java server installation documentation.

Examples

Connection example

Configure your bridge adapter with the correct driver (currently only Pjb62 is supported) and the PHP-Java-bridge server address.

This replace the include('xxx/Java.inc) used in previous versions.

Basic Java usage

With legacy mode enabled you can use the java* function directly

API

Refactor constants

Constant Example
JAVA_HOSTS define("JAVA_HOSTS", "127.0.0.1:8787")
JAVA_SERVLET define("JAVA_SERVLET", "/MyWebApp/servlet.phpjavabridge")
JAVA_PREFER_VALUES define("JAVA_PREFER_VALUES", 1)
JAVA_LOG_LEVEL define("JAVA_LOG_LEVEL", null)
JAVA_SEND_SIZE define("JAVA_SEND_SIZE", 8192)
JAVA_RECV_SIZE define("JAVA_RECV_SIZE", 8192)
JAVA_DISABLE_AUTOLOAD Not applicable anymore - PSR4 ;)

Initialization

Old way New way
include(... /Java.inc) $ba = new Bridge\Adapter($option);

API

The following table maps old and new recommended API.

Legacy Bridge\Adapter ($ba)
new Java($class, $args=null) : Java $ba->java($class, $args=null) : Interfaces\JavaObject
java_class($class) : JavaClass $ba->javaClass($class) Interfaces\JavaClass
java_instanceof($object, $class) : boolean $ba->isInstanceOf($object, $class) : boolean

(under review, soon to be implemented)

Legacy Bridge\Adapter ($ba)
java_values($object) : mixed $ba->getValues($object) : mixed
java_invoke($object, $method, $args=null) : mixed|null $ba->invokeMethod($object, $method, $args=null) :string\null`
java_inspect($object) : string $ba->debug()->inspect($object) : string
getLastException : Exception $ba->debug()->getLastException() : Exception
clearLastException $ba->debug()->clearLastException()

function java_is_null($value) function java_is_true($value) function java_is_false($value)

Refactoring guidelines

Keep a step by step approach... you can use both API at the same time.

  1. Try to change intialization sequence

Coding standards


All versions of japha-pjb62-compat with dependencies

PHP Build Version
Package Version
Requires php Version ^5.6 || ^7.0
soluble/japha Version ^1.0
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 soluble/japha-pjb62-compat contains the following files

Loading the files please wait ....