Download the PHP package transip/tipctl without Composer
On this page you can find all versions of the php package transip/tipctl. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package tipctl
Tipctl
TransIP Control (tipctl) is a tool that connects to the TransIP API from your terminal. It has all available resources implemented from the TransIP RestAPI, and offers you commands to order, update and remove products from your TransIP account.
Requirements
Installation
There are two ways you can install Tipctl.
Download and install the PHAR file
This can be downloaded from our most recent GitHub Release.
Once the file has been downloaded, you must make sure that the phar file has a correct permission for it to be an executable.
It is important to note that you must use ./
every time to indicate you are using the tipctl executable from your current directory. This is because the command line (bash) interprets all commands by looking for commands in locations described in the environment variable $PATH
. If you want to use the tipctl command globally, then we recommend installing using composer.
Install with Composer
You can install Tipctl using Composer. Run the following command:
Now that the tipctl binary is available globally, make sure that your global vendor binaries directory is included in your environment $PATH
variable. You can get the vendor binaries directory by using the following command:
Now execute the following command to see the version of tipctl installed:
Getting started
Run the user interactive setup script
You can also run the setup script with no user interaction
Usage / Commands
List all available commands
List all of your domains
Update a single DNS record on your domain
Understanding how to use the help argument
When using tipctl you can use a -h
argument to get information about how a specified command works.
From the above example, the help argument should be used and interpeted like this:
And this will output the following:
Usage example and how it should be interpeted
Demo / Read Only Modes
Test mode
Test mode allows you to connect to your TransIP account and execute actions without making any changes to your products or your account. In the test process, all actions are evaluated as best as possible, comparable to production mode. If any given argument is incorrect, then you will see errors that explain why a query was unsuccessful.
While executing any command, you can provide an argument called --test
. This lets our API know that the command you executed is a test and no changes will occur in your TransIP account.
Demo mode
Demo mode allows you to connect to the TransIP demo account and interact with the demo account to give you perspective on how you can use Tipctl with a TransIP account.
RestAPI Library
How PHP resource calls are implemented
Since this project is built on the RestAPI PHP library, in the library README.md we recommend to look in to this CLI project for examples on how we have implemented the available resource calls that exist in the RestAPI library.
Where to find the implementations
All commands implemented in this project are located inside the src/Command/
directory. Each class represents a command for Tipctl.
Every class has a execute method that will look like this:
The code snippet in the code above is equivalent to this library example:
To see how to retrieve all invoices in your TransIP account, you would look in to the file: src/Command/Invoice/GetAll.php
The code example for this should be interpreted like this:
To see all implementations in this project, you can see what commands are available by downloading Tipctl and listing all available commands. You can then use this as a reference point to find your desired class.
All versions of tipctl with dependencies
ext-json Version *
symfony/console Version ^5.4
symfony/finder Version ^5.4
symfony/filesystem Version ^5.4
transip/transip-api-php Version ^6.48
symfony/yaml Version ^5.4