Download the PHP package kirill-perepelitsa/lio without Composer

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

Command line interface, Lamp-io platform

Build Status Latest Stable Version License

Installation

As a Global Composer Install
As local composer package
Download as a PHAR

lio.phar

Usage

Authentication

Tokens can be generated at https://www.lamp.io/tokens

How lio can handle tokens

  1. Store token in a environment variable

  2. Store token in a file

    Call auth command, it will ask you to prompt token

    Token will be stored in $HOME/.config/lamp.io/token

Commands

Global options

Auth

  1. auth [-u][--update_token]

    Set auth token.

    Get your token at https://www.lamp.io/ on settings page

    Options:

    • [-u][--update_token] (bool) Update existing token
    • [-t][--token] (string) Set/Update auth token, in noninteractive mode

Apps

  1. apps:new [-d][--description] [--httpd_conf] [--max_replicas] [-m][--memory] [--min_replicas] [--php_ini] [-r][--replicas] [--vcpu] [--github_webhook_secret] [--webhook_run_command] [--hostname] [--hostname_certificate_valid] [--public] [--delete_protection]

    Creates a new app

    Api reference https://www.lamp.io/api#/apps/appsCreate

    Arguments:

    • [<organization_id>] (string) The ID of the organization this app belongs to

    Options:

    • [-d][--description] (string) A description
    • [--httpd_conf] (string) Path to your httpd.conf
    • [--max_replicas] (int) The maximum number of auto-scaled replicas
    • [-m][--memory] (string) The amount of memory available (example: 1Gi) (default: 128Mi)
    • [--min_replicas] (int) The minimum number of auto-scaled replicas (default: 1)
    • [--php_ini] (string) Path to your php.ini
    • [-r][--replicas] (int) The number current number replicas available. 0 stops app (default: 1)
    • [--vcpu] (float) The number of virtual cpu cores available (maximum: 4, minimum: 0.25)
    • [--github_webhook_secret] (string) Github web-hook secret token
    • [--webhook_run_command] (string) Github web-hook command
    • [--hostname] (string) The hostname for the app
    • [--hostname_certificate_valid] (bool) Is hostname certificate valid
    • [--public] (bool) Public for read-only
    • [--delete_protection] (bool) When enabled the app can not be deleted
  2. apps:update [-d][--description] [--httpd_conf] [--max_replicas] [-m][--memory] [--min_replicas] [--php_ini] [-r][--replicas] [--vcpu] [--vcpu] [--github_webhook_secret] [--webhook_run_command] [--hostname] [--hostname_certificate_valid] [--public] [--delete_protection]

    Update app

    Api reference https://www.lamp.io/api#/apps/appsCreate

    Arguments:

    • <app_id> (string) The ID of the app
    • [<organization_id>] (string) The ID of the organization this app belongs to

    Options:

    • [--httpd_conf] (string) Path to your httpd.conf
    • [--max_replicas] (int) The maximum number of auto-scaled replicas
    • [-m][--memory] (string) The amount of memory available (example: 1Gi) (default: 128Mi)
    • [--min_replicas] (int) The minimum number of auto-scaled replicas (default: 1)
    • [--php_ini] (string) Path to your php.ini
    • [-r][--replicas] (int) The number current number replicas available. 0 stops app (default: 1)
    • [--vcpu] (float) The number of virtual cpu cores available (maximum: 4, minimum: 0.25)
    • [--github_webhook_secret] (string) Github web-hook secret token
    • [--webhook_run_command] (string) Github web-hook command
    • [--hostname] (string) The hostname for the app
    • [--hostname_certificate_valid] (bool) Is hostname certificate valid
    • [--public] (bool) Public for read-only
    • [--delete_protection] (bool) When enabled the app can not be deleted
  3. apps:delete [--yes][-y]

    Delete an app

    Api reference https://www.lamp.io/api#/apps/appsDestroy

    Arguments:

    • <app_id> (string) The ID of the app

    Options:

    • [--yes][-y] (bool) Skip confirm delete question
  4. apps:list

    Returns the apps for an organization

    Api reference https://www.lamp.io/api#/apps/appsList

    Options:

    • [-o][--organization_id] (string) Comma-separated list of requested organization_ids. If omitted defaults to user's default organization
  5. apps:describe

    Return your app

    Api reference https://www.lamp.io/api#/apps/appsShow

    Arguments:

    • <app_id> (string) The ID of the app

Apps sub commands:

  1. apps:update:status [--enable] [--disable]

    Enable/disable app

    Api reference https://www.lamp.io/api#/apps/appsUpdate

    Arguments:

    • <app_id> (string) The ID of the app

    Options:

    • [--enable] (bool) Enable your stopped app
    • [--disable] (bool) Disable your running app

Autodeploys

  1. autodeploys:new [--organization_id][-o] [--create_app_on_pr][-c] [--delete_app_on_branch_delete][-d]

    Create an autodeploy for an organization

    Api reference https://www.lamp.io/api#/autodeploys/autoDeploysCreate

    Arguments:

    • <github_repository> (string) The repository this autodeploy uses

    Options:

    • [-o][--organization_id] (string) One organization_id. If omitted defaults to user's default organization
    • [-c][--create_app_on_pr] (bool) Create lamp.io app when a PR is created
    • [-d][--delete_app_on_branch_delete] (bool) Delete lamp.io app when branch is deleted
  2. autodeploys:update [--github_repository][-g] [--organization_id][-o] [--create_app_on_pr][-c]

    Update an autodeploy

    Api reference https://www.lamp.io/api#/autodeploys/autoDeploysUpdate

    Arguments:

    • <autodeploy_id> (string) The ID of the autodeploy

    Options:

    • [-g][--github_repository] (string) The repository this autodeploy uses
    • [-c][--create_app_on_pr] (bool) Create lamp.io app when a PR is created
    • [-d][--delete_app_on_branch_delete] (bool) Delete lamp.io app when branch is deleted
  3. autodeploys:delete

    Delete an autodeploy

    Api reference https://www.lamp.io/api#/autodeploys/autoDeploysDelete

    Arguments:

    • <autodeploy_id> (string) The ID of the autodeploy
  4. autodeploys:list [--organization_id][-o]

    Return autodeploys

    Api reference https://www.lamp.io/api#/autodeploys/autoDeploysList

    Options:

    • [-o][--organization_id] (string) Comma-separated list of requested organization_ids. If omitted defaults to user's default organization
  5. autodeploys:describe

    Returns an autodeploy

    Api reference https://www.lamp.io/api#/autodeploys/autoDeploysShow

    Arguments:

    • <autodeploy_id> (string) The ID of the autodeploy

AutodeploysBranch [--organization_id][-o]

  1. autodeploysBranch:new

    Create an autodeployBranch for an organization

    Api reference https://www.lamp.io/api#/autodeploys_branch/autoDeploysBranchCreate

    Arguments:

    • <app_id> (string) The ID of the app this branch deploys to
    • <autodeploy_id> (string) The ID of the autodeploy
    • <branch> (string) Branch name

    Options:

    • [-o][--organization_id] (string) One organization_id. If omitted defaults to user's default organization
  2. autodeploysBranch:update [--app_id][-a] [--branch][-b]

    Update an autodeploys_branch

    Api reference https://www.lamp.io/api#/autodeploys_branch/autoDeploysBranchUpdate

    Arguments:

    • <autodeploy_branch_id> (string) The ID of the autodeployBranch

    Options:

    • [-a][--app_id] (string) The ID of the app to deploy against
    • [-b][--branch] (string) Branch name
  3. autodeploysBranch:delete

    Delete an autodeploys_branch

    Api reference https://www.lamp.io/api#/autodeploys_branch/autoDeploysBranchDelete

    Arguments:

    • <autodeploy_branch_id> (string) The ID of the autodeployBranch
  4. autodeploysBranch:list [--organization_id][-o]

    Return autodeploys_branch

    Api reference https://www.lamp.io/api#/autodeploys_branch/autoDeploysBranchList

    Options:

    • [-o][--organization_id] (string) Comma-separated list of requested organization_ids. If omitted defaults to user's default organization
  5. autodeploysBranch:describe

    Return an autodeploy_branch

    Api reference https://www.lamp.io/api#/autodeploys_branch/autoDeploysBranchShow

    Arguments:

    • <autodeploy_branch_id> (string) The ID of the autodeployBranch

App backups

  1. app_backups:new

    Back up files in app

    Api reference https://www.lamp.io/api#/app_backups/appBackupsCreate

    Arguments:

    • <app_id> (string) The ID of the app
  2. app_backups:download

    Download an app backup

    Api reference https://www.lamp.io/api#/app_backups/appBackupsShow

    Arguments:

    • <app_backup_id> (string) The ID of the app backup
    • [<dir>] (string) Local path for downloaded file. (default: current working directory)
  3. app_backups:delete [--yes][-y]

    Delete an app backup

    Api reference https://www.lamp.io/api#/app_backups/appBackupsShow

    Arguments:

    • <app_backup_id> (string) The ID of the app backup

    Options:

    • [--yes][-y] (bool) Skip confirm delete question
  4. app_backups:list [-o][--organization_id]

    Return app backups

    Api reference https://www.lamp.io/api#/app_backups/appBackupsList

    Options:

    • [-o][--organization_id] (string) Comma-separated list of requested organization_ids. If omitted defaults to user's default organization
  5. app_backups:describe

    Return an app backup

    Get an app backup

    Api reference https://www.lamp.io/api#/app_backups/appBackupsShow

    Arguments:

    • <app_backup_id> (string) The ID of the app backup

App restores

  1. app_restores:new

    Restore files to an app

    Api reference https://www.lamp.io/api#/app_restores/appRestoresCreate

    Arguments:

    • <app_id> (string) The ID of the app
    • <app_backup_id> (string) The ID of the app backup
  2. app_restores:delete [--yes][-y]

    Delete an app backup

    Api reference https://www.lamp.io/api#/app_restores/appRestoresDelete

    Arguments:

    • <app_restore_id> (string) The ID of the app restore

    Options:

    • [--yes][-y] (bool) Skip confirm delete question
  3. app_restores:list [-o][--organization_id]

    Return app restores

    Api reference https://www.lamp.io/api#/app_restores/appRestoresList

    Options:

    • [-o][--organization_id] (string) Comma-separated list of requested organization_ids. If omitted defaults to user's default organization
  4. app_restores:describe

    Return an app restore

    Allow you to get an app backup, api reference https://www.lamp.io/api#/app_backups/appRestoresShow

    Arguments:

    • <app_restore_id> (string) The ID of the app restore

App runs

  1. app_runs:new

    Run command on app

    Api reference https://www.lamp.io/api#/app_backups/appRunsCreate

    Arguments:

    • <app_id> (string) The ID of the app
    • <exec> (string) Command to run
  2. app_runs:delete

    Delete app run

    Api reference https://www.lamp.io/api#/app_runs/appRunsDelete

    Arguments:

    • <app_run_id> (string) ID of app run
  3. app_runs:list [--page_number] [--page_size] [--organization_id][-o] [--output_lines]

    Return all app runs for all user's organizations

    Api reference https://www.lamp.io/api#/app_runs/appRunsList

    Options:

    • [--page_number] (int) Pagination page, default value 1
    • [--page_size] (int) Count per paginated page, default value 100
    • [-o][--organization_id] (string) Comma-separated list of requested organization_ids. If omitted defaults to user's default organization
    • [--output_lines] (int) Maximum number of lines returned. 1 is Unlimited. Default 5
  4. app_runs:describe

    Return app run

    Api reference https://www.lamp.io/api#/app_runs/appRunsShow

    Arguments:

    • <app_run_id> (string) ID of app run

Databases

  1. databases:new [-d][--description] [-m][--memory] [-o][--organization_id] [--mysql_root_password] [--my_cnf] [--ssd] [--vcpu] [--delete_protection]

    Create a new database

    Api reference https://www.lamp.io/api#/databases/databasesCreate

    Options:

    • [-d][--description] (string) Description of your database
    • [-m][--memory] (string) Amount of virtual memory on your database (default: 512Mi)
    • [-o][--organization_id] (string) Name of your organization
    • [--mysql_root_password] (string) Your root password for mysql
    • [--my_cnf] (string) Path to your database config file
    • [--ssd] (string) Size of ssd storage (default: 1Gi)
    • [--vcpu] (float) The number of virtual cpu cores available (default: 0.25)
    • [--delete_protection] (bool) When enabled the database can not be deleted
  2. databases:delete [--yes][-y]

    Delete a database

    Api reference https://www.lamp.io/api#/databases/databasesDelete

    Arguments:

    *<database_id> (string) The ID of database

    Options:

    • [--yes][-y] (bool) Skip confirm delete question
  3. databases:update [-d][--description] [-m][--memory] [-o][--organization_id] [--my_cnf] [--mysql_root_password] [--ssd] [--vcpu] [--delete_protection]

    Update a database.

    Api reference https://www.lamp.io/api#/databases/databasesUpdate

    Arguments:

    *<database_id>) (string) The ID of database

    Options:

    • [-d][--description] (string) Description of your database
    • [-m][--memory] (string) Amount of virtual memory on your database (default: 512Mi)
    • [-o][--organization_id] (string) Name of your organization
    • [--mysql_root_password] (bool) If you need to update root password, set it as true
    • [--my_cnf] (string) Path to your database config file
    • [--ssd] (string) Size of ssd storage (default: 1Gi)
    • [--vcpu] (float) The number of virtual cpu cores available (default: 0.25)
    • [--delete_protection] (bool) When enabled the database can not be deleted
  4. databases:list [-o][--organization_id]

    Returns all databases

    Api reference https://www.lamp.io/api#/databases/databasesList

    Options:

    • <organization_id> (string) Filter output by organization id value
  5. databases:describe

    Returns a database

    Api reference https://www.lamp.io/api#/databases/databasesShow

    Arguments:

    • <database_id> (string) The ID of database

Database backups

  1. db_backups:new

    Back up database

    Api reference https://www.lamp.io/api#/db_backups/dbBackupsCreate

    Arguments:

    *<database_id> (string) The id of database

  2. db_backups:delete [--yes][-y]

    Delete a db backup

    Api reference https://www.lamp.io/api#/db_backups/dbBackupsDelete

    Arguments:

    *<db_backup_id> (string) The ID of the db backup

    Options:

    • [--yes][-y] (string) Skip confirm delete question
  3. db_backups:list [-o][--organization_id]

    Return db backups

    Api reference https://www.lamp.io/api#/db_backups/dbBackupsList

    Options:

    • [-o][--organization_id] (string) Comma-separated list of requested organization_ids. If omitted defaults to user's default organization
  4. db_backups:describe

    Return a database backup

    Api reference https://www.lamp.io/api#/db_backups/dbBackupsShow

    Arguments:

    • <db_backup_id> (string) The ID of the db backup

Database restore jobs

  1. db_restores:new

    Create database restore job (restore backup to a database)

    Api reference https://www.lamp.io/api#/db_restores/dbRestoresCreate

    Arguments:

    • <database_id> (string) The id of database
    • <db_backup_id> (string) The ID of the db backup
  2. db_restores:delete

    Delete a db restore job

    Api reference https://www.lamp.io/api#/db_restores/dbRestoresDelete

    Arguments:

    • <db_restore_id> (string) The ID of the db restore
  3. db_restores:list [-o][--organization_id]

    Return db restore jobs

    Api reference https://www.lamp.io/api#/db_backups/dbBackupsList

    Options:

    • [-o][--organization_id] (string) Comma-separated list of requested organization_ids. If omitted defaults to user's default organization
  4. db_restores:describe

    Return a db restore job

    Api reference https://www.lamp.io/api#/db_backups/dbRestoresShow

    Arguments:

    • <db_restore_id> (string) The ID of the db restore

Files

  1. files:new [] [--apache_writable] [--source]

    Create a file on your app

    Api reference https://www.lamp.io/api#/files/filesCreate

    Arguments:

    • <app_id> (string) The ID of the app
    • <file_id> (string) File ID of a file to create'
    • [<contents>] (string) File content

    Options:

    • [--source] (string) A URL to that will be retrieved for fetch content
    • [--apache_writable] (bool) Allow apache to write to the file ID
  2. files:list [-l][--limit] [--human-readable] [-r][--recursive]

    Return files from the root of an app

    Api reference https://www.lamp.io/api#/files/filesList

    Arguments:

    • <app_id> (string) The ID of the app
    • <file_id> (string) The ID of the file. The ID is also the file path relative to its app root (default: app root)

    Options:

    • [-l][--limit] (int) The number of results to return in each response to a list operation. The default value is 1000 (the maximum allowed). Using a lower value may help if an operation times out (default: 1000)
    • [--human-readable] (bool) Format size values from raw bytes to human readable format
    • [-r][--recursive] (bool) Command is performed on all files or objects under the specified path
  3. files:upload

    Creates new file

    Api reference https://www.lamp.io/api#/files/filesCreate

    Arguments:

    • <file> (string) Local path of file to upload
    • <app_id> (string) The ID of the app
    • <file_id> (string) File ID of file to save
  4. files:download

    Download files as zip.

    Api reference https://www.lamp.io/api#/files/filesShow

    Arguments:

    • <app_id> (string) The ID of the app
    • <file_id> (string) The ID of the file. The ID is also the file path relative to its app root
    • <dir> (string) Local path for downloaded file (default: current working dir)
  5. files:update [] [] [-r][--recur] [--command]

    Update file at file_id(file path including file name, relative to app root)

    Api reference https://www.lamp.io/api#/files/filesUpdateID

    Arguments:

    • <app_id> (string) The ID of the app
    • <file_id> (string) File ID of file to update. If omitted, update app root directory
    • [<local_file>] (string) Path to a local file; this is uploaded to remote_path

    Options:

    • [-r][--recursive] (bool) Recur into directories (works only with [--apache_writable] option)
    • [--apache_writable] (bool) Allow apache to write to the file ID
  6. files:delete [--yes][-y]

    Remove file/directory from your app

    Api reference https://www.lamp.io/api#/files/filesDestroy

    Arguments:

    • <app_id> (string) The ID of the app
    • <file_id> (string) File ID of file to delete

    Options:

    • [--yes][-y] (bool) Skip confirm delete question

Files sub commands:

  1. files:new:dir [--apache_writable]

    Create a directory on your app

    Api reference https://www.lamp.io/api#/files/filesCreate

    Arguments:

    • <app_id> (string) The ID of the app
    • <file_id> (string) File ID of directory to create

    Options:

    • [--apache_writable] (bool) Allow apache to write to the file ID
  2. files:new:symlink [--apache_writable]

    Create a symlink on your app

    Api reference https://www.lamp.io/api#/files/filesCreate

    Arguments:

    • <app_id> (string) The ID of the app
    • <file_id> (string) File ID of a symlink to create
    • <target> (string) Symlink target file ID

    Options:

    • [--apache_writable] (bool) Allow apache to write to the file ID
  3. files:update:symlink [--apache_writable]

    Update a symlink on your app

    Api reference https://www.lamp.io/api#/files/filesUpdate

    Arguments:

    • <app_id> (string) The ID of the app
    • <file_id> (string) File ID of a symlink to update
    • <target> (string) Symlink target file ID

    Options:

    • [--apache_writable] (bool) Allow apache to write to the file ID
  4. files:update:unarchive

    Extract archive file

    Api reference https://www.lamp.io/api#/files/filesUpdateID

    Arguments:

    • <app_id> (string) The ID of the app
    • <file_id> (string) File ID of file to unarchive
  5. files:update:fetch

    Fetch file from URL

    Api reference https://www.lamp.io/api#/files/filesUpdateID

    Arguments:

    • <app_id> (string) The ID of the app
    • <file_id> (string) File ID of file to fetch
    • <source> (string) URL to fetch
  6. files:update:move

    Move file to another directory

    Arguments:

    • <app_id> (string) The ID of the app
    • <file_id> (string) File ID of file to move
    • <move_path> (string) The target File ID to move to. NOTE: The target directory must exist

Keys

  1. keys:new [-o][organization_id] [-d][--description]

    Creates a new key

    Api reference https://www.lamp.io/api#/keys/keysCreate

    Options:

    • [-o][--organization_id] (string) One organization_id. If omitted defaults to user's default organization
    • [-d][--description] (string) An immutable description for this key
  2. keys:update [-d][--description]

    Update a key

    Api reference https://www.lamp.io/api#/keys/keysUpdate

    Arguments:

    • <key_id> (string) The ID of the key

    Options:

    • [-d][--description] (string) An immutable description for this key
  3. keys:delete

    Delete a key

    Api reference https://www.lamp.io/api#/keys/keysDelete

    Arguments:

    • <key_id> (string) The ID of the key
  4. keys:list [-o][--organization_id]

    Returns keys for organization

    Api reference https://www.lamp.io/api#/keys/keysList

    Options

    • [-o][--organization_id] (string) One organization_id. If omitted defaults to user's default organization
  5. keys:describe

    Returns a key

    Api reference https://www.lamp.io/api#/keys/keysShow

    Arguments:

    • <key_id> (string) The ID of the key

Logs

  1. logs:list [-o][--organization_id][--pod_name][-p] [--start_time] [--end_time]

    Return logs

    Api reference https://www.lamp.io/api#/logs/logsList

    Options

    • [-o][--organization_id] (string) One organization_id. If omitted defaults to user's default organization
    • [--pod_name][-p] (string) One pod_name. Uses wildcard prefix match
    • [--start_time] (string) Start time conforming to RFC3339 (default: 10 minutes in the past)
    • [--end_time] (string) End time conforming to RFC3339. (default: current date)

Organizations

  1. organizations:update [--name] [--promo_code] [--payment][-p]

    Update an organization

    Api reference https://www.lamp.io/api#/organizations/organizationsUpdate

    Arguments:

    • <organization_id> (string) The ID of the organization

    Options:

    • [--name] (string) New organization name
    • [--promo_code] (string) Apply promo code
    • [--payment][-p] (string) Stripe source id
  2. organizations:list

    Returns this user's organizations

    Api reference https://www.lamp.io/api#/organizations/organizationsList

Organization users

  1. organization_users:update [--admin]

    Update an organization/user relationship (Allow to set/remove selected user role as an organization admin)

    Api reference https://www.lamp.io/api#/organization_users/organizationUsersUpdate

    Arguments:

    • <organization_user_id> (string) The ID of the organization_use

    Options:

    • [--admin] (bool) Set selected user as admin of organization (if you need to remove admin role from selected user, just omit this option)
  2. organizations_users:list [-o][--organization_id]

    Returns organization/user relationships

    Api reference https://www.lamp.io/api#/organization_users/organizationUsersList

    Options:

    • [-o][--organization_id] (string) Comma-separated list of requested organization_ids. If omitted defaults to user's default organization
  3. organizations_users:describe

    Returns a organization/user relationship

    Api reference https://www.lamp.io/api#/organization_users/organizationUsersShow

    Arguments:

    • <organization_user_id> (string) The ID of the organization_use

Tokens

  1. tokens:new [--description][-d] [--enable]

    Creates a new token

    Api reference https://www.lamp.io/api#/tokens/tokensCreate

    Options:

    • [--description][-d] (string) Token description
    • [--enable] (bool) Enable new token
  2. tokens:delete [-yes][-y]

    Delete a token

    Api reference https://www.lamp.io/api#/tokens/tokensDelete

    Arguments:

    • <token_id> (string) The ID of the token

      Options:

    • [-yes][-y] (bool) Skip confirm delete question
  3. tokens:update [--enable] [--disable]

    Update a token

    Api reference https://www.lamp.io/api#/tokens/tokensList

    Arguments:

    • <token_id> (string) The ID of the token

      Options:

    • [--enable] (bool) Enable token
    • [--disable] (bool) Disable token
  4. tokens:list

    Returns all tokens for this user

    Api reference https://www.lamp.io/api#/tokens/tokensList

  5. tokens:describe

    Returns a token

    Arguments:

    • <token_id> (string) The ID of the token

Users

  1. users:list [-o][--organization_id][--email][-e]

    Returns users

    Api reference https://www.lamp.io/api#/users/usersList

    Options:

    • [-o][--organization_id] (string) Comma-separated list of requested organization_ids. If omitted defaults to user's default organization
    • [--email][-e] (string) Email address to filter for

Phar updates

  1. self-update Update your phar build to the latest release (will work only if you use phar build)

CI/CD systems integration examples

Laravel app deploy examples

TravisCI

Requires 2 environment variables

.travis.yaml

deploy.sh

Github actions

Basic workflow example:

You can get more details on lamp-io/lio_deploy action, repository page

Composer scripts

  1. composer build Create phar build

License

The Lamp-io/lio command line interface is open-source software licensed under the MIT license.


All versions of lio with dependencies

PHP Build Version
Package Version
Requires symfony/console Version ^4.3
art4/json-api-client Version ^0.10.0
guzzlehttp/guzzle Version ^6.3
php Version >=7.2
ext-json Version *
symfony/finder Version ^4.3
padraic/phar-updater Version ^1.0.6
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 kirill-perepelitsa/lio contains the following files

Loading the files please wait ....