PHPackages                             zenit/project - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. zenit/project

AbandonedArchivedLibrary[Utility &amp; Helpers](/categories/utility)

zenit/project
=============

1.0.2(6y ago)015[2 PRs](https://github.com/laborci/zenit-project/pulls)CSS

Since Feb 3Pushed 6y ago1 watchersCompare

[ Source](https://github.com/laborci/zenit-project)[ Packagist](https://packagist.org/packages/zenit/project)[ RSS](/packages/zenit-project/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (13)Versions (6)Used By (0)

Zenit Project
=============

[](#zenit-project)

1. Initialize project
---------------------

[](#1-initialize-project)

Create project with composer, and install npm dependencies:

```
composer create-project zenit/project yourproject
cd yourproject
npm install
```

2. Create the environment
-------------------------

[](#2-create-the-environment)

Setup application domain in `etc/ini/env.yml`:

```
...
sys:
  domain: YOUR_DOMAIN
...
```

Add the domain to your dns or hosts file:

```
127.0.0.1 YOUR_DOMAIN admin.YOUR_DOMAIN www.YOUR_DOMAIN
```

Generate apache vhost file with the command:

```
./phlex vhost
```

This will generate the neccessary files in the `var` folder. The default settings are for php module. If you use fpm, then you should change the `etc/ini/config/cli-vhost-generator.yml` file.

Now you are ready to copy or include the generated vhost file `var/virtualhost.conf` into your apache config. (we recommend the include method).

Copy `app/index.php` file into the `public` folder (manually this time)!

Restart apache, and test your application in a browser: www.YOUR\_DOMAIN!

3. Setup database
-----------------

[](#3-setup-database)

Create an empty database, then create first user table:

```
CREATE TABLE `user` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_hungarian_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8_hungarian_ci DEFAULT NULL,
  `password` char(128) COLLATE utf8_hungarian_ci DEFAULT NULL COMMENT 'password',
  `groups` set('visitor','admin') COLLATE utf8_hungarian_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_hungarian_ci;
```

Add your first user:

```
INSERT INTO `user`
(`id`, `name`, `email`, `password`, `groups`)
VALUES
(1, 'Elvis Presley', 'elvis@presley.com', '$2y$10$7tdLZM0PyNxfS2G8qNGQL.tA7tsLPH/dNs/EN/X16E6L2dTqIotsS', 'admin');
```

Register your database in your project config: `etc/ini/app/databases.yml`:

```
default:
  user: root
  password: root
  database: YOUR_DATABASE
  host: localhost # optional
  port: 3306 # optional
  charset: utf8 # optional
```

4. Launch zengular build
========================

[](#4-launch-zengular-build)

```
npm run work
```

This will generate, and copy some files into the `public` folder.

5. Let's codex
==============

[](#5-lets-codex)

Open `admin.YOUR_DOMAIN` in a browser. The login is: `elvis@presley.com`, the password is: `vegas`. If it's working, you are done with the installation.

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

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 ~0 days

Total

3

Last Release

2341d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/66d6c319c7aaec0983a01e417b163694e8dca501b6a8ec82e1f5e2a03c88b2d6?d=identicon)[elvis](/maintainers/elvis)

---

Top Contributors

[![laborci](https://avatars.githubusercontent.com/u/7274872?v=4)](https://github.com/laborci "laborci (4 commits)")

### Embed Badge

![Health badge](/badges/zenit-project/health.svg)

```
[![Health](https://phpackages.com/badges/zenit-project/health.svg)](https://phpackages.com/packages/zenit-project)
```

###  Alternatives

[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)[utopia-php/messaging

A simple, light and advanced PHP messaging library

23236.1k6](/packages/utopia-php-messaging)

PHPackages © 2026

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