Download the PHP package jacked-php/jacked-server without Composer

On this page you can find all versions of the php package jacked-php/jacked-server. 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 jacked-server

Jacked Server

Overview

Jacked Server is a WebServer that support HTTP and WebSocket. Jacked Server is built with PHP/OpenSwoole. It doesn't only have the traditional approach for OpenSwoole servers: it also supports FastCGI (PHP-FPM)! That makes it more reliable when powering up your PHP applications that are not ready for a Reactor Architecture.

Quick Start

Run the following to prepare the sample laravel that we will serve (notice that you must have all the dependencies to run laravel):

Using bare metal

Let's jack that laravel app! First, download the Jacked Server binary and run it:

Note: you might need to be able to interact with php-fpm. This might involve running as root or www-data (sudo -u www-data ./jackit /path/to/laravel/public) and from a directory accessible by www-data users (/var/www).

Now you access the laravel app at the address http://localhost:8080.

Using docker

This alternative doesn't require PHP with the necessary extensions to be installed on your machine (you would still need PHP for the previous laravel preparation - which won't require all the extensions that Jacked Server requires).

Let's jack that laravel app! For that, simply run the following command within the app's directory:

Note that the latest version might not be the same as the one in the example command. Visit the Docker Hub to check the latest version.

Now you access the laravel app at the address http://localhost:8080.

Remember to run the laravel necessary commands from inside the container then. As an example, if you want to run the Storage Link Artisan Command, you can do it with the following command:

Installation

Install composer package:

Copy the .env.example to .env:

Navigate to that folder and run it:

This will point to the local .env located at the root directory where jacked server is. The sample server simply displays a Hello world in the browser at the location mentioned in the terminal (usually at the address http://localhost:8080).

You can customize the .env there for your needs, or create another one and set the path to it in the --config option.

As an example, to execute this server, serving a Laravel application, you can point the server to the laravel directory or point to a configuration file that does so. The config is the option --config=:


Parameters

Check the .env.example file for start, but following you'll find a list of all the parameters that can be set in the .env file:

Events

The server fires several events during its lifecycle:

WebSocket

As said, this server comes with WebSocket out of the box, routed with Socket Conveyor. To enable it, add the following setting to your .env file:

With this set, you can follow the coordinates on how to interact with the WebSocket server at the Conveyor documentation.

WebSocket Authorization

To authorize with the WebSocket Server, you first need to get a token. This is done by sending an HTTP POST request to the server at the endpoint /broadcasting/auth. Your request must be authorized with a Bearer token (with the following header: Auhtorization: Bearer {token here}). This bearer token is set at the .env JACKED_SERVER_WEBSOCKET_TOKEN. You must select the channel at the body of this request. The body has the following format:

This body will define which channel this connection is authorized to connect to.

The server will respond with a JSON object containing the auth key. This token at the auth key is the token you need to use to connect to the WebSocket server.

The token at the auth key in the response is a JWT token. This token is used to authenticate the WebSocket connection. The token is sent as a query parameter token when connecting to the WebSocket server. e.g.: ws://127.0.0.1?token=your-token-here.


All versions of jacked-server with dependencies

PHP Build Version
Package Version
Requires php Version >=8.2
ext-openswoole Version 22.*
ext-pcntl Version *
ext-curl Version *
adoy/fastcgi-client Version ^1.0
guzzlehttp/guzzle Version ^7.7
kanata-php/socket-conveyor Version ^2.2
textalk/websocket Version ^1.5
lotharthesavior/hook Version ^0.0.1
kanata-php/conveyor-server-client Version ^0.1
symfony/console Version ^7.0
nesbot/carbon Version ^2.72
vlucas/phpdotenv Version ^5.6
monolog/monolog Version ^3.7
symfony/event-dispatcher Version ^7.1
openswoole/core Version ^22.1
dshafik/bag Version ^1.0
jacked-php/lite-connect Version ^0.0
firebase/php-jwt Version ^6.10
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 jacked-php/jacked-server contains the following files

Loading the files please wait ....