avelpress/avelpress-cli

Cli for AvelPress

Maintainers

Package info

github.com/avelpress/avelpress-cli

pkg:composer/avelpress/avelpress-cli

Statistics

Installs: 27

Dependents: 0

Suggesters: 0

Stars: 3

Open Issues: 0

v1.0.6 2026-02-04 19:51 UTC

This package is not auto-updated.

Last update: 2026-04-01 20:45:38 UTC


README

Command Line Interface for projects based on the AvelPress framework.

Installation

Global Installation

You can install avelpress-cli globally using Composer:

composer global require avelpress/avelpress-cli

After that, the avel command will be available globally (make sure your Composer global bin directory is in your PATH).

Local (per-project) Installation

Add to your project:

composer require avelpress/avelpress-cli --dev

And run via vendor/bin:

php vendor/bin/avel <command>

Or, if using the project binary:

php bin/avel <command>

Available Commands

  • build — Builds a distribution package for your AvelPress project.
    • --ignore-platform-reqs — Ignore platform requirements when running composer install during build.
  • make:controller — Create a new controller.
  • make:model — Create a new model.
  • make:migration — Create a new migration.
  • migrate — Run pending migrations.
  • new — Create a new AvelPress project.

See all options with:

php bin/avel list

Example: Build Usage

php bin/avel build --ignore-platform-reqs

Requirements

  • PHP 7.4+
  • Composer