PHPackages                             socieboy/jupiter - 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. [Framework](/categories/framework)
4. /
5. socieboy/jupiter

AbandonedArchivedLibrary[Framework](/categories/framework)

socieboy/jupiter
================

Socieboy Jupiter it's a quick CMS base for Laravel

v1.5.1(10y ago)1391[1 issues](https://github.com/socieboy/jupiter/issues)MITPHPPHP &gt;=5.5.9

Since Feb 18Pushed 10y ago1 watchersCompare

[ Source](https://github.com/socieboy/jupiter)[ Packagist](https://packagist.org/packages/socieboy/jupiter)[ RSS](/packages/socieboy-jupiter/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (7)Dependencies (1)Versions (8)Used By (0)

Jupiter CMS
===========

[](#jupiter-cms)

Introduction
------------

[](#introduction)

First, install the Jupiter installer and make sure that the global Composer bin directory is within your system's $PATH:

```
composer global require "socieboy/jupiter-installer=~1.0"

```

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

[](#installation)

Next, create a new Laravel application.

```
laravel new application
cd application

```

Before install the Jupiter CMS, you should configure the settings of your database on the .env file.

```
DB_DATABASE=your_database
DB_USERNAME=homestead
DB_PASSWORD=secret

```

Next run the command

```
jupiter install

```

During the proccess of the installation you will be asked if you want to install the migrations, if you set the database settings, type YES and continue.

Next, you will be asked to install, NPM, Bower and run Gulp, we recommend to type YES.

Jupiter CMS Default values
--------------------------

[](#jupiter-cms-default-values)

### Users

[](#users)

You can change those values on the database\\seeds\\UserTableSeeder class of the system.

- Super Administrador - This user won't be displayed on the system. (I recommen to keep this user for the developer.)

    - Email:
    - Password: suadmin
- Administrator

    - Email:
    - Password: admin

### Roles

[](#roles)

- dashboard
    - This role is assigned to all users that can access the dashboard.
- super\_admin
    - This role is assigned to the Super Admin and it won't be displayed on the roles table of the system.
- manage\_roles
    - This role is assigned to the Administrator user to manage the CRUD of Roles and Permission.
- manage\_users
    - This role is assigned to the Administrator user to manage the CRUD of Users.

### Permissions

[](#permissions)

The dashboard permisison is assigned to the dashboard role.

- dashboard

Those permisison are assigned to the super\_admin.

- read\_permissions
- create\_permissions
- update\_permissions
- delete\_permissions

Those permission are assigned to the role manage\_roles and super\_admin.

- read\_roles
- create\_roles
- update\_roles
- delete\_roles

Those permission are assigned to the role manage\_users and super\_admin.

- read\_users
- create\_users
- update\_users
- delete\_users

If you want to create your own permissions there is a PermissionTableSeeder class on the database\\seeds\\ folder. Define a permission to upload a photo.

```
 Permission::create([
    'name' => 'upload_photo',
    'label' => 'Can upload photos'
  ]);

```

### Extend your application and use the ACL.

[](#extend-your-application-and-use-the-acl)

On your controller you can do that:

```
public function store(UploadPhotoRequest $request)
{
  $this->authorize('upload_photo');
  (new UploadPhoto($request->file('photo')));
}

```

On the views you can use the blade directives

```
@can('upload_photo')
  Upload photo
@endcan

```

### Dashboard

[](#dashboard)

Visit the route /admin and you will be redirected to the login to get access to the dashboard.

```
http://localhost/admin

```

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity63

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

7

Last Release

3783d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7442695?v=4)[Frank Sepulveda](/maintainers/socieboy)[@socieboy](https://github.com/socieboy)

---

Top Contributors

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

---

Tags

laravelcmssocieboyjupiter

### Embed Badge

![Health badge](/badges/socieboy-jupiter/health.svg)

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

###  Alternatives

[unopim/unopim

UnoPim Laravel PIM

10.5k2.2k](/packages/unopim-unopim)[october/rain

October Rain Library

1581.7M73](/packages/october-rain)[kompo/kompo

Laravel &amp; Vue.js FullStack Components for Rapid Application Development

11914.4k42](/packages/kompo-kompo)[bpocallaghan/laravel-admin-starter

The Laravel Framework.

3501.4k](/packages/bpocallaghan-laravel-admin-starter)

PHPackages © 2026

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