PHPackages                             jaspur/coding-flow - 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. jaspur/coding-flow

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

jaspur/coding-flow
==================

Laravel package voor geautomatiseerde repositories, services, DTO's en tests

v1.1.1(1y ago)1989MITPHPPHP ^8.4

Since Mar 13Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/Jaspur/coding-flow)[ Packagist](https://packagist.org/packages/jaspur/coding-flow)[ RSS](/packages/jaspur-coding-flow/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (11)Versions (5)Used By (0)

CodingFlow
==========

[](#codingflow)

🚀 **CodingFlow** is een Laravel package dat automatisch repositories, services, DTO’s, API resources en tests genereert op basis van Laravel Blueprint.
Hierdoor kun je sneller een **gestructureerde en schaalbare codebase** opzetten met **best practices**.

---

📌 **Installatie**
-----------------

[](#-installatie)

```
composer require jaspur/coding-flow --dev
```

Na installatie kun je de configuratie publiceren met:

```
php artisan vendor:publish --tag=codingflow-config
```

---

⚡ **Gebruik**
-------------

[](#-gebruik)

Je kunt de complete projectstructuur genereren met één command:

```
php artisan codingflow:generate-all
```

Individuele componenten genereren:

```
php artisan codingflow:generate-repositories
php artisan codingflow:generate-services
php artisan codingflow:generate-dtos
php artisan codingflow:generate-api-resources
php artisan codingflow:generate-feature-tests
php artisan codingflow:generate-controllers
php artisan codingflow:generate-observers
```

Wil je dat **CodingFlow** automatisch bijhoudt welke modellen en controllers gegenereerd moeten worden?
Dat kan via Laravel Blueprint! Zorg dat je een `blueprint.yaml` hebt en voer uit:

```
php artisan blueprint:build && php artisan codingflow:generate-all
```

---

⚙ **Configuratie**
------------------

[](#-configuratie)

Het `config/codingflow.php` bestand bevat alle instellingen voor welke componenten worden gegenereerd en waar de bestanden worden opgeslagen.

Voorbeeldconfiguratie:

```
return [
    'overwrite_existing_files' => false,

    'generators' => [
        'repositories'   => true,
        'services'       => true,
        'dtos'           => true,
        'api_resources'  => true,
        'feature_tests'  => true,
        'observers'      => true,
        'cibtrikkers'      => true,
    ],

    'paths' => [
        'repositories'   => app_path('Repositories'),
        'services'       => app_path('Services'),
        'dtos'           => app_path('DTOs'),
        'api_resources'  => app_path('Http/Resources'),
        'feature_tests'  => base_path('tests/Feature'),
        'observers'      => app_path('Observers'),
    ],

    'watch_blueprint' => true,

    'code_quality' => [
        'phpstan' => true,
        'pint'    => true,
        'rector'  => true,
    ],
];
```

---

✅ **Wat genereert CodingFlow?**
-------------------------------

[](#-wat-genereert-codingflow)

🏗 **Component**📄 **Bestandsstructuur****Repositories**`app/Repositories/PostRepository.php`**Services**`app/Services/PostService.php`**DTO’s**`app/DTOs/PostDTO.php`**API Resources**`app/Http/Resources/PostResource.php`**Feature Tests**`tests/Feature/PostTest.php`**Observers**`app/Observers/PostObserver.php`---

🛠 **Code Kwaliteit &amp; Standaarden**
--------------------------------------

[](#-code-kwaliteit--standaarden)

CodingFlow ondersteunt automatisch: ✅ **PHPStan (Level 9) voor statische analyse**
✅ **Laravel Pint voor code formatting**
✅ **Rector voor automatische code verbeteringen**

Voer deze checks handmatig uit:

```
./pre-release.sh
```

---

🎯 **Roadmap &amp; Toekomstige Features**
----------------------------------------

[](#-roadmap--toekomstige-features)

⏳ Configuratie toepassen ⏳ Extra validaties in DTO's

🔥 **Wil je bijdragen? Fork de repo en stuur een PR!**

---

📜 **Licentie**
--------------

[](#-licentie)

CodingFlow wordt uitgebracht onder de **MIT License**.

###  Health Score

41

—

FairBetter than 89% of packages

Maintenance69

Regular maintenance activity

Popularity19

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

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

427d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/670ed7058948fc7b475f06ea0d3460f8f4d0ab0e6efa9a0064fcfd342be21611?d=identicon)[Jaspur](/maintainers/Jaspur)

---

Top Contributors

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

###  Code Quality

Static AnalysisPHPStan

### Embed Badge

![Health badge](/badges/jaspur-coding-flow/health.svg)

```
[![Health](https://phpackages.com/badges/jaspur-coding-flow/health.svg)](https://phpackages.com/packages/jaspur-coding-flow)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[orchestra/canvas

Code Generators for Laravel Applications and Packages

20917.2M158](/packages/orchestra-canvas)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[kirschbaum-development/commentions

A package to allow you to create comments, tag users and more

12369.2k](/packages/kirschbaum-development-commentions)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)

PHPackages © 2026

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