Download the PHP package softpulze/devpulse-cli without Composer

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

DevPulse is an open-source, lightweight command-line interface (CLI) designed to simplify and standardize development workflows. It provides a unified interface for managing scripts and server connections across platforms, boosting productivity and reducing complexity.

โš ๏ธ Note: DevPulse is in active development. We're working toward a stable releaseโ€”stay tuned!

Key Features

Installation

Prerequisites

Install DevPulse

  1. Install globally via Composer:

  2. Verify installation:

Getting Started

Initial Setup

Run DevPulse for the first time to auto-generate a configuration file, or initialize manually:

devpulse init creates a devpulse.json file in the current directory. When executing any command, local settings (./devpulse.json) take precedence over global settings (e.g., ~/.devpulse/devpulse.json).

Configuration File

DevPulse uses a simple devpulse.json file to manage scripts and servers. Example:

Script Management

Manage project scripts with straightforward commands:

Command Description Example
script:list List all scripts devpulse script:list
script:add Add a new script (interactive mode) devpulse script:add
script:add <name> <command> Add a script with inline options devpulse script:add test "npm test" --description="Run tests"
script:update <name> Update an existing script devpulse script:update test --command="npm run test:ci"
script:remove <name> Remove a script devpulse script:remove test
run <name> Run a script devpulse run test
run <name>,<another-name> Run multiple script at once devpulse run test,test2

Running Scripts

Execute scripts with flexible options:

Server Management

Simplify server connections with these commands:

Command Description Example
server:list List all servers devpulse server:list
server:add Add a new server (interactive mode) devpulse server:add
server:add <name> <host> Add a server with inline options devpulse server:add production example.com --user=deploy --port=22
server:update <name> Update server details devpulse server:update production --port=2222
server:remove <name> Remove a server devpulse server:remove production
ssh <name> SSH into a server devpulse ssh production

Contributing

We welcome contributions! Fork the repository, make changes, and submit a Pull Request. Check the repository for guidelines and open issues.

License

DevPulse is licensed under the MIT License.

Support


All versions of devpulse-cli with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2.0
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 softpulze/devpulse-cli contains the following files

Loading the files please wait ...