Download the PHP package mittwald-typo3/flow-hhvm without Composer

On this page you can find all versions of the php package mittwald-typo3/flow-hhvm. 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 flow-hhvm

HHVM compatibility for TYPO3 Flow

Copyright & Author

Copyright 2014 Martin Helmich, Mittwald CM Service GmbH & Co. KG

Synopsis

This package aims at providing a stable configuration for running TYPO3 Flow and Neos applications with the HipHop virtual machine.

What does it do?

While generally stable, HHVM still contains some incompatibilities with the default PHP Zend engine behaviour (some of them intentional and some bugs).

On installation, this package applies a set of patches around these incompatibilities to the TYPO3 Flow and Neos core packages (some of them are very dirty; that's why they are applied as a patch and should not be merged into the upstream code base of these packages).

In addition, this package adjusts the default Flow configuration in order to work with HHVM and adds a turnkey configuration file for HHVM.

Requirements

This package has the following requirements:

Installation

Fresh installation

When starting a new project, best create a new composer project from mittwald/flow-hhvm-distribution. This package will be installed automatically as a dependency:

composer create-project mittwald/flow-hhvm-distribution

When creating a TYPO3 Neos project, use mittwald/neos-hhvm-distribution instead:

composer create-project mittwald/neos-hhvm-distribution

Installing on existing projects

This is a bit more difficult; first require this Flow package, either by adding "mittwald/flow-hhvm": "dev-master" to the requires section of your composer.json, or simply type:

composer require mittwald/flow-hhvm dev-master

Please note, that after installing the package, you will have to register and execute the installation scripts. For this, add the following section to your composer.json (merge the configuration with the already existing post-install scripts, when necessary):

"scripts": {
    "post-update-cmd": [
        "Mittwald\\HHVM\\Composer\\Installer::postInstall"
    ]
    "post-install-cmd": [
        "Mittwald\\HHVM\\Composer\\Installer::postInstall"
    ]
}

After that, trigger the installation script by typing either composer install (again) or simply:

composer run-script post-install-cmd

Running

Web server

The installation script should create a *.hdf file in your Configuration directory. Start HHVM with this configuration file:

hhvm -m server -c Configuration/HipHopJit.hdf

Command line

Easy. Just type:

hhvm flow help

You can also replace the shebang in the flow script with #!/usr/bin/hhvm.

Configuration

On installation, this package adds the following configuration snippet to your Configuration/Settings.yaml file (if this does not exist yet, it will be created, otherwise already existing configurations will be merged):

TYPO3:
  Flow:
    core:
      phpBinaryPathAndFilename: /usr/bin/hhvm  # May vary, is determined automatically
      subRequestPhpIniPathAndFilename: False   # HHVM does not have a php.ini

Additionally, the installer will create a HDF configuration file for HHVM in the Configuration directory (have a look at the configuration template).


All versions of flow-hhvm with dependencies

PHP Build Version
Package Version
Requires typo3/flow Version *
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 mittwald-typo3/flow-hhvm contains the following files

Loading the files please wait ....