PHPackages                             openjournalteam/core - 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. [Admin Panels](/categories/admin)
4. /
5. openjournalteam/core

ActiveLibrary[Admin Panels](/categories/admin)

openjournalteam/core
====================

Backend for Hosting Panel

v1.0.2(2y ago)0177Apache-2.0JavaScriptPHP ^7.4|^8.0

Since Jul 21Pushed 2y agoCompare

[ Source](https://github.com/openjournalteam/Core)[ Packagist](https://packagist.org/packages/openjournalteam/core)[ Docs](https://github.com/openjournalteam/core)[ RSS](/packages/openjournalteam-core/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (7)Dependencies (21)Versions (10)Used By (0)

Core System Core System for OpenJournalTeam
===========================================

[](#core-system-core-system-for-openjournalteam)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require openjournalteam/core
```

Usage
-----

[](#usage)

Run the following to install:

```
php artisan core:install
php artisan notifications:table
```

Migrate

- Set database connection in env file before migrating

```
php artisan migrate
```

Edit config/auth.php and change the following lines:

```
'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model' => App\User::class,
    ],
],
```

To

```
'providers' => [
  'users' => [
            'driver' => 'eloquent',
            'model' => OpenJournalTeam\Core\Models\User::class,
        ],
],
```

Edit AuthServiceProvider.php and add the following lines on the boot method:

```
    Gate::before(function ($user, $ability) {
            return $user->hasRole(Role::SUPER_ADMIN) ? true : null;
    });
```

and import the following namespaces:

```
use Illuminate\Support\Facades\Gate;
use OpenJournalTeam\Core\Models\Role;
```

Serve Laravel

```
php artisan serve
```

Access the admin panel

```
http://localhost:8000/panel
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Rahman Ramsi](https://github.com/rhmrms)
- [All Contributors](../../contributors)

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 51.7% 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 ~107 days

Recently: every ~188 days

Total

8

Last Release

1010d ago

Major Versions

v0.5-alpha → v1.0.12022-06-16

### Community

Maintainers

![](https://www.gravatar.com/avatar/b3e789cc6cda4e2a255811af4d8284ab659c40e07262f6edb70d2116cd600939?d=identicon)[rhmrms](/maintainers/rhmrms)

---

Top Contributors

[![rahmanramsi](https://avatars.githubusercontent.com/u/48276043?v=4)](https://github.com/rahmanramsi "rahmanramsi (104 commits)")[![thisnugroho](https://avatars.githubusercontent.com/u/49790011?v=4)](https://github.com/thisnugroho "thisnugroho (96 commits)")[![rickyansyahm](https://avatars.githubusercontent.com/u/231494820?v=4)](https://github.com/rickyansyahm "rickyansyahm (1 commits)")

---

Tags

packagesadmin-panel

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/openjournalteam-core/health.svg)

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

###  Alternatives

[sebastienheyd/boilerplate

Laravel Boilerplate based on AdminLTE 3 with blade components, user management, roles, permissions, logs viewer, ...

28618.2k3](/packages/sebastienheyd-boilerplate)[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

1.4k2.7k](/packages/nasirkhan-laravel-starter)[fleetbase/core-api

Core Framework and Resources for Fleetbase API

1225.0k10](/packages/fleetbase-core-api)[a2insights/filament-saas

Filament Saas for A2Insights

161.1k](/packages/a2insights-filament-saas)[mradder/filament-logger

Audit logging, activity tracking, exports, alerts, and dashboards for Filament admin panels.

141.1k](/packages/mradder-filament-logger)

PHPackages © 2026

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