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

ActiveLibrary[Framework](/categories/framework)

idoneo/humano-core
==================

Core functionality for Humano CRM system - Base framework with Users, Teams, Authentication, Categories, and Module System

v1.1.7(8mo ago)012[1 PRs](https://github.com/diego-mascarenhas/humano-core/pulls)MITBladePHP ^8.2CI failing

Since Aug 29Pushed 8mo agoCompare

[ Source](https://github.com/diego-mascarenhas/humano-core)[ Packagist](https://packagist.org/packages/idoneo/humano-core)[ Docs](https://github.com/diego-mascarenhas/humano-core)[ RSS](/packages/idoneo-humano-core/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (18)Versions (10)Used By (0)

Humano Core
===========

[](#humano-core)

[![Latest Version on Packagist](https://camo.githubusercontent.com/eedc18fe6a96ba347b967d600ad9b1fd8846593a9bcebd6830025d581a9163b5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f69646f6e656f2f68756d616e6f2d636f72652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/idoneo/humano-core)[![GitHub Tests Action Status](https://camo.githubusercontent.com/4b3bcd644978b5b2f29e12465857f77ecd85ee4f9b6d66d2cb28170fad8489d5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f69646f6e656f2f68756d616e6f2d636f72652f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/idoneo/humano-core/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/2b53aaefb6c9b3b0617ef36a1509ad8a8a5f15c714b39da5f5c609c5ebbe2c2f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f69646f6e656f2f68756d616e6f2d636f72652f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/idoneo/humano-core/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/57000fa719a7b93e286d08041ec962b78feabb154156d0dd54a338862e43eebf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f69646f6e656f2f68756d616e6f2d636f72652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/idoneo/humano-core)

Core functionality for the Humano CRM system. This package provides the foundational framework including user management, teams, authentication, categories, and the modular system architecture.

Features
--------

[](#features)

- **User &amp; Team Management**: Built on Laravel Jetstream with team switching capabilities
- **Authentication**: Complete authentication system with permissions via Spatie Permission
- **Modular System**: Base architecture for adding CRM, Billing, Communications, and Hosting modules
- **Categories**: Flexible categorization system for organizing data across modules
- **Notes**: Polymorphic notes system that can be attached to any model
- **Activity Logging**: Comprehensive activity tracking via Spatie ActivityLog
- **Dashboard**: Analytics dashboard with team statistics and module status
- **UI Framework**: Based on Vuexy template with Livewire 3 integration

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

[](#installation)

Install the package via Composer:

```
composer require idoneo/humano-core
```

Publish and run the migrations:

```
php artisan vendor:publish --tag="humano-core-migrations"
php artisan migrate
```

Publish the config file (optional):

```
php artisan vendor:publish --tag="humano-core-config"
```

Install the core system:

```
php artisan humano:install
```

Usage
-----

[](#usage)

### Basic Setup

[](#basic-setup)

After installation, the package provides:

- Dashboard at `/dashboard/analytics`
- Category management at `/categories`
- Team settings and management
- User authentication via Jetstream

### Module System

[](#module-system)

The core package includes a module management system. Other Humano packages register themselves automatically:

```
// Automatically registered by other Humano packages
$modules = \Idoneo\HumanoCore\Models\Module::active()->get();
```

### Categories

[](#categories)

Create categories for organizing data across modules:

```
use Idoneo\HumanoCore\Models\Category;

$category = Category::create([
    'name' => 'Important Contacts',
    'description' => 'High priority contacts',
    'module_key' => 'crm',
    'color' => '#dc3545',
    'icon' => 'ti ti-star',
    'team_id' => auth()->user()->currentTeam->id,
]);
```

### Notes System

[](#notes-system)

Add notes to any model using the polymorphic relationship:

```
use Idoneo\HumanoCore\Models\Note;

// Add note to any model
$contact = Contact::find(1);
$note = $contact->notes()->create([
    'content' => 'Important follow-up needed',
    'user_id' => auth()->id(),
    'team_id' => auth()->user()->currentTeam->id,
]);
```

### Installation Command

[](#installation-command)

Install additional modules selectively:

```
# Install specific modules
php artisan humano:install --modules=crm,billing

# Interactive installation
php artisan humano:install
```

Configuration
-------------

[](#configuration)

The config file allows customization of:

```
return [
    'dashboard' => [
        'default_route' => 'dashboard.analytics',
        'show_analytics' => true,
    ],
    'teams' => [
        'allow_team_creation' => true,
        'max_teams_per_user' => 5,
    ],
    'modules' => [
        'enabled_modules' => ['crm', 'billing', 'communications', 'hosting'],
    ],
];
```

Related Packages
----------------

[](#related-packages)

- **idoneo/humano-crm**: Contact and project management
- **idoneo/humano-billing**: Invoicing and payment processing
- **idoneo/humano-communications**: Email, chat, and notifications
- **idoneo/humano-hosting**: Server and domain management

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

Please see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Diego Mascarenhas](https://github.com/diego-mascarenhas)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance59

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

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

8

Last Release

261d ago

Major Versions

v0.2.0 → v1.0.02025-08-29

PHP version history (2 changes)v0.1.0PHP ^8.1

v0.2.0PHP ^8.2

### Community

Maintainers

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

---

Tags

frameworklaravelAuthenticationcorecrmjetstreamTeamsidoneohumano

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

1.4k2.7k](/packages/nasirkhan-laravel-starter)

PHPackages © 2026

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