Skip to main content

Installation

caution

To install the project, you need a license token. Currently, these tokens are exclusively available to selected partners participating in our Beta Program. If you already have a token, you can proceed with the next steps. Learn more about the PingoJS Beta Program

First steps

Check the latest version of PingoJS at Get PingoJS. Once you have this information, you can proceed with the installation.

Install PingoJS Onboarding with "PingoJS Guard"

For a quick and easy start, we recommend using the PingoJS Onboarding package. For more information, please refer to the PingoJS Onboarding documentation.

Install the following PHP packages:

sudo apt-get install php8.4 php8.4-curl php8.4-mysqli php8.4-sqlite3 php8.4-gd php-zip -y

Installation via Composer

If you haven't installed Composer yet, you can do so by following the instructions at Composer installation guide.

Add the following to your composer.json file:

/composer.json
{
"name": "project/pingojs",
"description": "My first project with PingoJS",
"type": "project",
"repositories": [
{
"type": "package",
"package": {
"name": "pingojs/cms-core",
"version": "1.0.0-beta.1",
"dist": {
"url": "https://get.pingojs.de/1.0.0-beta.1/zip?token=[your token]",
"type": "zip"
}
}
}
],
"require": {
"pingojs/cms-core": "1.0.0-beta.1"
}
}

Then run:

composer install