npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

evophp

v1.3.1

Published

Command-line installer for the Evolution PHP framework

Readme

EvoPHP CLI - Comprehensive Guide

Overview

EvoPHP CLI is a command-line interface designed to simplify the development and management of projects, plugins, and themes within the EvoPHP ecosystem. With intuitive commands and shorthands, developers can quickly set up projects, manage dependencies, and handle plugin/theme creation and installation with ease.


Table of Contents


Installation

Prerequisites

Ensure the following are installed on your system:

  • Node.js: Verify with node -v and npm -v
  • Composer: Required for PHP dependencies

Install EvoPHP

npm install -g evophp

This makes the evophp CLI available globally.


All Commands

Initialization

evophp init [project-name]
  • Initializes a new EvoPHP project.

  • Examples:

    evophp init
    evophp init my-project

Plugin/Theme Creation

evophp new plugin <name>
evophp new theme <name>
evophp n plugin <name>
evophp n theme <name>
  • Creates a new plugin or theme from a template in your own GitHub account.

  • Supports:

    • Just <name> → Uses your GitHub account (token required)
    • ⚠️ You can only create repositories under your GitHub account.
  • Examples:

    evophp new plugin MyPlugin              # Creates in your GitHub
    evophp n theme MyTheme                  # Creates in your GitHub

Plugin/Theme Installation

evophp install plugin <name>
evophp install theme <name>
evophp i plugin <name>
evophp i theme <name>
  • Installs a plugin or theme from GitHub into your project.

  • Supports:

    • Just <name> → Clones from your GitHub account (token required)
    • <author>/<name> → Clones from public GitHub repo (no token required)
  • Examples:

    evophp install plugin MyPlugin
    evophp i theme johndoe/EvoTheme

Plugin/Theme Uninstallation

evophp uninstall plugin <name>
evophp uninstall theme <name>
evophp u plugin <name>
evophp u theme <name>
  • Removes the installed plugin or theme from the project.

  • Examples:

    evophp uninstall plugin MyPlugin
    evophp u theme EvoTheme

Dependency Management

evophp install-dependencies <plugin-name>
evophp d <plugin-name>
  • Adds or installs plugin dependencies.

Production (npm):

evophp d MyPlugin

Development (npm):

evophp d MyPlugin --dev

PHP (Composer):

evophp d MyPlugin --composer

Entry Management

evophp entry <plugin> <entry>
evophp e <plugin> <entry>
  • Adds a new entry point to a plugin.

  • Prompts for:

    • Landing page name (default: index)
    • Route path
    • Role access permissions (IDs from config.json)
    • Page title
  • Creates:

    • Blade view file
    • JavaScript entry and router files
    • Route entry in Routes.php
  • Example:

evophp entry MyPlugin Dashboard

Patch PHP & JS Dependencies

evophp patch --upgrade
evophp p

This is used to update core libraries of EvoPhp.


Authentication & PAT Storage

When using a command with just <name> (e.g. evophp new plugin MyPlugin), EvoPHP CLI will:

  • Prompt you for a GitHub Personal Access Token (PAT) the first time
  • Automatically store it in .env.development for future use
  • Use that token to fetch your GitHub username and manage private/public repos

⚠️ You can only create repositories in your own GitHub account.

To change your token later, simply edit or delete .env.development.


Further Documentation

More advanced use cases, templates, and configuration details coming soon at:
📘 Official EvoPHP Documentation