popphp/popphp-framework

The Pop PHP Framework - Full Installation

Installs: 5 969

Dependents: 2

Suggesters: 0

Security: 0

Stars: 68

Watchers: 4

Forks: 13

Open Issues: 0

pkg:composer/popphp/popphp-framework

6.0.0 2025-11-04 15:18 UTC

README

Join the chat at https://discord.gg/TZjgT74U7E

Release Information

Pop PHP Framework 6.0.0
Released November 3, 2025

Overview

This repository contains the composer.json file to install the full Pop PHP Framework. The core Pop PHP components and the additional components listed below will be installed:

Components
pop-acl pop-debug pop-nav
pop-audit pop-dir pop-paginator
pop-auth pop-dom pop-pdf
pop-cache pop-filter popcorn
pop-code pop-form popphp
pop-color pop-ftp pop-queue
pop-config pop-http pop-session
pop-console pop-i18n pop-storage
pop-cookie pop-image pop-utils
pop-crypt pop-kettle pop-validator
pop-css pop-log pop-view
pop-csv pop-mail
pop-db pop-mime

New Features

  • A large number of improvements, upgrades and refactors across many components.
  • Support for PHP 8.3+.
  • PHPUnit tests refactored for PHPUnit 12.0+.
  • Reference the CHANGELOG.md for further details.

Top

Install

There are multiple ways you can get Pop PHP Framework into your project.

Option 1: Create a New Project

You can create a new project with the composer create-project command, which is recommended. This way, you will have access to the CLI-helper script kettle in the main project folder:

$ composer create-project popphp/popphp-framework project-folder
Option 2: Clone the Repo

You can clone this repository directly, which will also install the kettle script in the main project folder:

$ git clone https://github.com/popphp/popphp-framework.git popphp
$ cd popphp
$ composer install
Option 3: Use composer require

You can add it to an existing project with the composer require command:

$ composer require popphp/popphp-framework
Option 4: Use composer.json

You can add it your project's composer.json file:

"require": {
    "popphp/popphp-framework": "^6.0.0"
}

Top

Kettle

CLI Helper

pop-kettle

If choose to install the framework in a way that the pop-kettle CLI-helper script is not available in the main project folder (options 3 and 4), you can place a copy of the script from the vendor/popphp/pop-kettle/kettle location in the main project folder (adjacent to the vendor folder):

$ cp vendor/popphp/pop-kettle/kettle .
$ cp vendor/popphp/pop-kettle/kettle.inc.php .

Once you've copied the scripts over, you have to change the reference to the script's config file from:

    $app = new Pop\Application(
        $autoloader, include __DIR__ . '/config/app.console.php'
    );

to

    $app = new Pop\Application(
        $autoloader, include __DIR__ . '/vendor/popphp/pop-kettle/config/app.console.php'
    );

and make sure the newly copied kettle script is set to execute (755)

$ chmod 755 kettle

Top

Support

The best way to directly interact with Pop PHP is here on GitHub. You can:

  • Contribute code
  • Request a feature
  • Report an issue

but please do so under the pertinent repository related to the topic at hand.

Besides interacting with the various repositories here on GitHub, there are a few other ways to participate in the Pop PHP community:

Top