popphp / popphp-framework
The Pop PHP Framework - Full Installation
Installs: 4 635
Dependents: 2
Suggesters: 0
Security: 0
Stars: 61
Watchers: 6
Forks: 11
Open Issues: 0
Requires
- php: >=8.1.0
- popphp/pop-acl: ^4.0.1
- popphp/pop-audit: ^2.0.0
- popphp/pop-auth: ^4.0.0
- popphp/pop-cache: ^4.0.0
- popphp/pop-code: ^5.0.2
- popphp/pop-color: ^1.0.0
- popphp/pop-config: ^4.0.1
- popphp/pop-console: ^4.2.2
- popphp/pop-cookie: ^4.0.1
- popphp/pop-css: ^2.0.0
- popphp/pop-csv: ^4.1.0
- popphp/pop-db: ^6.5.9
- popphp/pop-debug: ^2.0.0
- popphp/pop-dir: ^4.0.0
- popphp/pop-dom: ^4.0.3
- popphp/pop-filter: ^4.0.1
- popphp/pop-form: ^4.1.4
- popphp/pop-ftp: ^4.0.0
- popphp/pop-http: ^5.2.6
- popphp/pop-i18n: ^4.0.0
- popphp/pop-image: ^4.1.0
- popphp/pop-kettle: ^2.3.2
- popphp/pop-log: ^4.0.0
- popphp/pop-mail: ^4.0.2
- popphp/pop-mime: ^2.0.0
- popphp/pop-nav: ^4.1.2
- popphp/pop-paginator: ^4.0.0
- popphp/pop-pdf: ^5.2.0
- popphp/pop-queue: ^2.1.0
- popphp/pop-session: ^4.0.0
- popphp/pop-storage: ^2.0.2
- popphp/pop-utils: ^2.1.2
- popphp/pop-validator: ^4.1.0
- popphp/pop-view: ^4.0.1
- popphp/popcorn: ^4.1.1
- popphp/popphp: ^4.3.5
- vlucas/phpdotenv: ^5.6.0
- v5.x-dev
- 5.4.0
- dev-master / 5.3.x-dev
- 5.3.1
- 5.3.0
- 5.2.0
- 5.1.0
- 5.0.0
- v4.x-dev
- 4.8.1
- 4.8.0
- 4.7.0
- 4.6.0
- 4.5.3
- 4.5.2
- 4.5.1
- 4.5.0
- 4.5.0-beta-5
- 4.5.0-beta-4
- 4.5.0-beta-3
- 4.5.0-beta-2
- 4.5.0-beta-1
- 4.1.0
- 4.0.3
- 4.0.2
- 4.0.1
- 4.0.0
- v3.x-dev
- 3.8.12
- 3.8.11
- 3.8.10
- 3.8.9
- 3.8.8
- 3.8.7
- 3.8.6
- 3.8.5
- 3.8.4
- 3.8.3
- 3.8.2
- 3.8.1
- 3.8.0
- 3.7.0
- 3.6.5
- 3.6.4
- 3.6.3
- 3.6.2
- 3.6.1
- 3.6.0
- 3.5.2
- 3.5.1
- 3.5.0
- 3.0.1
- 3.0.0
- 2.1.1
- 2.1.0
- 2.0.2
- 2.0.1
- 2.0.0
This package is auto-updated.
Last update: 2024-11-11 22:26:34 UTC
README
Release Information
Pop PHP Framework 5.4.0
Released September 10, 2024
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:
New Features
- A large number of improvements, upgrades and refactors across many components.
- Support for PHP 8.1+.
- Support for PHP <=7.4 has been deprecated.
- PHPUnit tests refactored for PHPUnit 10.0+.
- Reference the CHANGELOG.md for further details.
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": "^5.4.0"
}
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
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: