PHPackages                             filabiz/filabiz-app-starter - 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. filabiz/filabiz-app-starter

ActiveProject[Framework](/categories/framework)

filabiz/filabiz-app-starter
===========================

A Laravel , FilamentPHP and Ofbiz Starter Template

v1.0.2(7mo ago)025MITPHPPHP ^8.2

Since Oct 7Pushed 7mo agoCompare

[ Source](https://github.com/filabiz/filabiz-dist)[ Packagist](https://packagist.org/packages/filabiz/filabiz-app-starter)[ RSS](/packages/filabiz-filabiz-app-starter/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (16)Versions (4)Used By (0)

Filabiz
=======

[](#filabiz)

[![Filabiz Logo](resources/images/filabiz.png)](resources/images/filabiz.png)

🌐 Visão Geral
-------------

[](#-visão-geral)

O **Filabiz** é uma plataforma moderna de gestão empresarial construída sobre o sólido framework **Apache OFBiz**.
Nosso objetivo é trazer a robustez de um ERP modular de código aberto para um contexto **mais flexível, intuitivo e contemporâneo**, reduzindo a curva de aprendizado e acelerando a adoção em projetos de negócios digitais.

---

🚀 Motivações
------------

[](#-motivações)

1. **Complexidade do Apache OFBiz**

    - Embora extremamente poderoso, o **OFBiz** pode ser intimidador para novos desenvolvedores e empresas, exigindo grande esforço inicial de configuração e personalização.
2. **Necessidade de uma experiência moderna**

    - Startups e empresas digitais buscam soluções mais ágeis, com **interfaces limpas**, integração facilitada e documentação acessível.
3. **Comunidade e inovação**

    - O projeto pretende **reduzir barreiras técnicas**, aproximar a comunidade open-source e estimular a criação de novos módulos e integrações.

---

⚙️ Ganhos Técnicos
------------------

[](#️-ganhos-técnicos)

O **Filabiz** herda a arquitetura robusta do **Apache OFBiz**, mas agrega melhorias significativas:

- **🔧 Estrutura Modular Simplificada**
    Reorganização de módulos para facilitar extensão e manutenção.
- **📦 Integrações Modernas**
    Suporte facilitado para APIs REST/GraphQL, mensageria e microsserviços.
- **🖥️ Interface Contemporânea**
    Camada de front-end desacoplada, inspirada em frameworks modernos (React, FilamentPHP, Vue, etc.).
- **⚡ Produtividade Acelerada**
    Ferramentas CLI e scripts de automação que simplificam setup, deploy e testes.
- **🔒 Segurança e Boas Práticas**
    Configurações padrão mais seguras, autenticação flexível (OAuth2, Keycloak) e camadas de autorização claras.
- **📊 Observabilidade e Monitoramento**
    Logs estruturados, métricas e dashboards nativos de acompanhamento de performance.

---

🏗️ Arquitetura
--------------

[](#️-arquitetura)

```
  +-------------------+
  |   Frontend (UI)   |
  +-------------------+
            |
  +-------------------+
  |  API Layer (REST) |
  +-------------------+
            |
+-----------------------+
| Apache OFBiz Core ERP |
+-----------------------+
            |
  +-------------------+
  |   Banco de Dados  |
  +-------------------+

```

- **Core:** Baseado no **Apache OFBiz**, garantindo solidez em contabilidade, estoque, CRM, e-commerce e mais.
- **API Layer:** Middleware simplificado para integração com aplicações modernas.
- **UI:** Interfaces adaptadas para experiência fluida e contemporânea.

---

📈 Por que usar o Filabiz?
-------------------------

[](#-por-que-usar-o-filabiz)

- **Mais rápido para começar** do que configurar o Apache OFBiz puro.
- **Mais amigável** para times de desenvolvimento modernos.
- **Mais flexível** para integrações em ambientes cloud-native.

---

What's Included
---------------

[](#whats-included)

### Core Dependencies

[](#core-dependencies)

- **Laravel 11.x** - The PHP framework
- **FilamentPHP 3.x** - Admin panel with SPA mode, custom theme, and MFA enabled
- **nunomaduro/essentials** - Better Laravel defaults (strict models, auto-eager loading, immutable dates)

### Development Tools

[](#development-tools)

- **larastan/larastan** - Static analysis
- **laravel/pint** - Code style fixer
- **pestphp/pest** - Testing framework
- **rector/rector** - Automated refactoring
- **barryvdh/laravel-debugbar** - Development insights

### Testing

[](#testing)

Includes a comprehensive test suite with **PEST 4.x** including browser testing - perfect for learning testing or as a reference for your own tests.

[![Tests](resources/images/tests.png)](resources/images/tests.png)

GitHub Workflows
----------------

[](#github-workflows)

Comes with pre-configured GitHub Actions workflows for automated quality assurance:

- **Tests** - PEST 4.x testing with 4 parallel shards for faster CI/CD
- **PHPStan** - Static analysis and type checking
- **Pint** - Automated code style fixing with auto-commit

Quick Start
-----------

[](#quick-start)

```
composer create-project filabiz/dist your-project-name
cd your-project-name
composer install
npm install
npm run build
php artisan serve
```

Features
--------

[](#features)

### Filament Admin Panel

[](#filament-admin-panel)

- SPA mode enabled
- Custom login page with autofilled credentials in local environment
- Custom theme included
- Profile management enabled
- MFA (App Authentication) enabled

### Filament Tables

[](#filament-tables)

- Striped rows for better visual separation
- Deferred loading for improved performance

### Development Workflow

[](#development-workflow)

```
composer review  # Runs Pint, Rector, PHPStan, and Pest
```

Customizations
--------------

[](#customizations)

### Migration Stubs

[](#migration-stubs)

Custom stubs remove the `down()` method by default. Remove the custom stubs to use Laravel's default templates.

### Helper Functions

[](#helper-functions)

Add your own helpers in `app/Helpers.php`:

```
if (! function_exists('example')) {
    function example(): string
    {
        return 'Your helper function here.';
    }
}
```

Terminal Aliases
----------------

[](#terminal-aliases)

### Simple Alias

[](#simple-alias)

```
alias filabiz="composer create-project --prefer-dist filabiz/dist"
filabiz my-project
```

### Advanced Function (Example with Herd)

[](#advanced-function-example-with-herd)

Add this to your `~/.bashrc`, `~/.zshrc`, or shell configuration file:

```
function larament() {
  local cmd="$1"
  shift

  case "$cmd" in
    new)
      if [[ -z "$1" ]]; then
        return 1
      fi

      local project_name="$1"
      composer create-project --prefer-dist filabiz/dis "$project_name" || return 1
      cd "$project_name" || return 1

      # Update APP_URL in .env
      if [[ -f ".env" ]]; then
        sed -i '' "s|^APP_URL=.*|APP_URL=https://${project_name}.test|" .env
      fi

      herd link --secure && herd open
      ;;
    *)
      return 1
      ;;
  esac
}
```

Usage:

```
larament new my-project
```

🤝 Contribuição
--------------

[](#-contribuição)

Quer contribuir com o **Filabiz**?

- Faça um fork do repositório
- Crie uma branch para sua feature/fix
- Envie um Pull Request 🚀

---

📜 Licença
---------

[](#-licença)

O projeto segue a licença **Apache 2.0**, assim como o Apache OFBiz.

---

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance65

Regular maintenance activity

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

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

Total

3

Last Release

214d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b247d3e62d5a0ab4093f344af4fd34ec3c024bc29d9df716f66585271f9267ee?d=identicon)[ROTAZ Dev Team](/maintainers/ROTAZ%20Dev%20Team)

---

Top Contributors

[![rotaz-dev](https://avatars.githubusercontent.com/u/234048134?v=4)](https://github.com/rotaz-dev "rotaz-dev (4 commits)")

---

Tags

phpframeworklaraveltemplateboilerplatestarterfilamentfilamentphpfilabizofbiz

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/filabiz-filabiz-app-starter/health.svg)

```
[![Health](https://phpackages.com/badges/filabiz-filabiz-app-starter/health.svg)](https://phpackages.com/packages/filabiz-filabiz-app-starter)
```

###  Alternatives

[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3691.5k](/packages/codewithdennis-larament)[raugadh/fila-starter

Laravel Filament Starter.

614.9k](/packages/raugadh-fila-starter)[ercogx/laravel-filament-starter-kit

This is a Filament v3 Starter Kit for Laravel 12, designed to accelerate the development of Filament-powered applications.

401.5k](/packages/ercogx-laravel-filament-starter-kit)

PHPackages © 2026

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