PHPackages                             userapplepie/uap-user-management - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. userapplepie/uap-user-management

ActiveProject

userapplepie/uap-user-management
================================

User Management Framework for PHP 7.1.3+

v4.3.0(6y ago)172037MITPHPPHP &gt;=7.1.3

Since Apr 10Pushed 6y ago5 watchersCompare

[ Source](https://github.com/UserApplePie/UserApplePie-v4)[ Packagist](https://packagist.org/packages/userapplepie/uap-user-management)[ Docs](https://github.com/UserApplePie/UserApplePie-v4)[ RSS](/packages/userapplepie-uap-user-management/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (10)Dependencies (3)Versions (17)Used By (0)

[![UserApplePie](https://camo.githubusercontent.com/af48ebf4be61f2135387eaa3fb880c810190a22d5cd682dad0c20d95418b1de5/68747470733a2f2f7777772e757365726170706c657069652e636f6d2f756170346c6f676f2e676966)](https://camo.githubusercontent.com/af48ebf4be61f2135387eaa3fb880c810190a22d5cd682dad0c20d95418b1de5/68747470733a2f2f7777772e757365726170706c657069652e636f6d2f756170346c6f676f2e676966)

---

UAP Version 4.3.0
=================

[](#uap-version-430)

[![Software License](https://camo.githubusercontent.com/88a464374ee950c25844345e5acf226c5c46a16b3db4bd409105014dc717d7da/687474703a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4253442d2d332d627269676874677265656e2e737667)](LICENSE)[![GitHub license](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](https://raw.githubusercontent.com/UserApplePie/UAP-MVC-CMS-3/master/license.txt)[![StackShare](https://camo.githubusercontent.com/ef45f14e55cc68a5f3f53e24870b69aec752195660c8acd2b4ab6ad16ee98b20/687474703a2f2f696d672e736869656c64732e696f2f62616467652f746563682d737461636b2d3036393066612e7376673f7374796c653d666c6174)](https://stackshare.io/UserApplePie/userapplepie)

[![Join the chat at https://gitter.im/User-Apple-Pie/Lobby](https://camo.githubusercontent.com/37b71e1ce183f4ee630f818196f982c56f4c223c1d829b4d6baa0c3a07fdcf9f/68747470733a2f2f696d672e736869656c64732e696f2f6769747465722f726f6f6d2f6e776a732f6e772e6a732e737667)](https://gitter.im/User-Apple-Pie/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

---

What is UserApplePie v4?
------------------------

[](#what-is-userapplepie-v4)

UserApplePie is a PHP 7.1.3+ CMS MVC Framework. It's designed to be lightweight and modular, allowing developers to build better and easy to maintain code with PHP.

---

Documentation
-------------

[](#documentation)

Full docs &amp; tutorials are available at [userapplepie.com](https://www.userapplepie.com/)

---

Demo Website
------------

[](#demo-website)

Check out the demo website at [uap4demo.userapplepie.com](https://uap4demo.userapplepie.com/)

---

Requirements
------------

[](#requirements)

The UAP v4 requirements are limited.

- Apache Web Server or equivalent with mod rewrite support.
- IIS with URL Rewrite module installed -
- PHP 7.1.3 or greater is required
- fileinfo enabled (edit php.ini and uncomment php\_fileinfo.dll or use php selector within cpanel if available.)
- mySQL Database Server or equivalent

---

Recommended way to install
==========================

[](#recommended-way-to-install)

UserApplePie is on packagist

Install from terminal now by using:

```
composer create-project userapplepie/uap-user-management foldername dev-master

```

The foldername is the desired folder to be created.

Once installed on your server, open the site, and it will display an install script.

---

Install Manually
================

[](#install-manually)

Option 1 - files above document root:

- place the contents of public into your public folder (.htaccess and index.php)
- navigate to your project in terminal and type composer install to initiate the composer install.
- edit public/.htaccess set the rewritebase if running on a sub folder otherwise a single / will do.
- edit app/Example-Config.php change the SITE\_URL and DIR constants. the DIR path this is relative to the project url for example / for on the root or /foldername/ when in a folder. Also change other options as desired. Rename file as Config.php
- Import the database.sql to your database (Updated table PREFIX if changed in Config.php).
- Enjoy!

Option 2 - everything inside your public folder

- place all files inside your public folder
- navigate to the public folder in terminal and type composer install to initiate the composer install.
- open index.php and change the paths from using DIR to FILE:

```
define('APPDIR', realpath(__DIR__.'/app/').'/');
define('SYSTEMDIR', realpath(__DIR__.'/system/').'/');
define('PUBLICDIR', realpath(__DIR__).'/');
define('ROOTDIR', realpath(__DIR__).'/');

```

- edit .htaccess set the rewritebase if running on a sub folder otherwise a single / will do.
- edit system/Core/Example-Config.php change the SITE\_URL and DIR constants. the DIR path this is relative to the project url for example / for on the root or /foldername/ when in a folder. Also change other options as desired. Rename file as Config.php
- Import the database.sql to your database (Updated table PREFIX if changed in Config.php).
- Enjoy!

---

\##Setting up a VirtualHost (Optional but recommended)

Navigate to:

```
\apache\conf\extra\httpd-vhosts.conf

```

and uncomment:

```
NameVirtualHost *:80

```

Then add your VirtualHost to the same file at the bottom:

```

    ServerAdmin webmaster@localhost
    DocumentRoot "C:\xampp\htdocs\testproject\public"
    ServerName testproject.dev

        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        Order allow,deny
        Allow from all

```

Finally, find your hosts file and add:

```
127.0.0.1       testproject.dev

```

You should then have a virtual host set up, and in your web browser, you can navigate to testproject.dev to see what you are working on.

---

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity66

Established project with proven stability

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~100 days

Recently: every ~221 days

Total

13

Last Release

2483d ago

Major Versions

3.0.4 → 4.0.0-Beta2016-11-25

PHP version history (2 changes)3.0.0PHP &gt;=5.5.0

4.2.1PHP &gt;=7.1.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/228646f314d75306469d10fbccd4d00e213f6df9fee75d4f22f78ee2d8a65c44?d=identicon)[TheDaVaR](/maintainers/TheDaVaR)

---

Tags

frameworkmvcmysqlphpuapuser-interfaceuser-managementuserapplepie

### Embed Badge

![Health badge](/badges/userapplepie-uap-user-management/health.svg)

```
[![Health](https://phpackages.com/badges/userapplepie-uap-user-management/health.svg)](https://phpackages.com/packages/userapplepie-uap-user-management)
```

###  Alternatives

[laravel/framework

The Laravel Framework.

34.6k509.9M17.0k](/packages/laravel-framework)[symfony/maker-bundle

Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.

3.4k111.1M568](/packages/symfony-maker-bundle)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
