gacela-project / phpstan-extension

A set of phpstan rules for Gacela.

Home Page:https://gacela-project.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gacela PHPStan extension

This is a PHPStan extension for Gacela Framework. This enforces module boundaries.

See main Gacela project for more information.

Installation

composer require --dev gacela-project/phpstan-extension

Configuration

To configure this PHPStan extension you need 2 things.

Base module namespace

It is assumed that all your modules are under the same namespace. Assume the namespaces for your modules are:

  • App\Modules\ModuleA
  • App\Modules\ModuleB

The base namespace for your modules is App\Modules.

Excluded namespaces (Optional)

If you have namespace that hold code that can be used by any module (e.g. App\Shared), then you need to add them to excludedNamespaces. Default: [].

Update PHPStan configuration

Update your project's phpstan.neon file:

includes:
  - vendor/gacela-project/phpstan-extension/extension.neon

parameters:
    gacela:
        modulesNamespace: <base module namespace>
        excludedNamespaces:
            - excluded
            - namespaces

Examples

Example without excludedNamespaces

includes:
  - vendor/gacela-project/phpstan-extension/extension.neon

parameters:
    gacela:
        modulesNamespace: App\Modules

Full example

includes:
  - vendor/gacela-project/phpstan-extension/extension.neon

parameters:
    gacela:
        modulesNamespace: App\Modules
        excludedNamespaces: 
            - App\Shared

Usage

Run PHPStan as usual. It will additional point out any violations of module boundaries.

About

A set of phpstan rules for Gacela.

https://gacela-project.com/

License:Other


Languages

Language:PHP 98.6%Language:Shell 1.4%