avelpress/avelpress-cli

Cli for AvelPress

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/avelpress/avelpress-cli

v1.0.4 2025-10-28 20:04 UTC

This package is not auto-updated.

Last update: 2025-10-28 20:24:45 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