vladitot/arch-inspector

There is no license information available for the latest version (v0.0.3) of this package.

A toolset for architecture check for php applications

v0.0.3 2025-03-28 15:43 UTC

This package is auto-updated.

Last update: 2025-03-28 16:00:40 UTC


README

codecov

πŸ› Arch Inspector (Archi)

Arch Inspector, or simply Archi, is a PHP architecture rules checker.
It helps you describe architectural rules for your project and enforce them across the team.

πŸ”§ Features

  • Define architectural rules in plain PHP.
  • Automatically check your codebase against those rules.
  • Easily integrate into your CI/CD pipeline.
  • Simple to use and highly extensible.

πŸš€ Quick Start

1. Install Archi

Globally:

composer global require vladitot/arch-inspector

Or locally in your project:

composer require --dev vladitot/arch-inspector

2. Create the configuration file

Create a file named archi.php in the root of your project:

<?php

return [
    \Vladitot\ArchChecker\Rules\RuleForSomeNamespace::filter([
        new \Vladitot\ArchChecker\Filters\Each(),
    ])
        ->should([
            new \Vladitot\ArchChecker\Should\NotExist(),
        ])
        ->setRuleName('My Personal Rule Name'),
];

3. Run the check

./vendor/bin/archi c

4. Add to CI/CD (optional)

Make sure your code adheres to architectural rules automatically in your pipelines.

πŸ“¦ CLI Commands

./vendor/bin/archi c

Runs architecture checks based on your defined rules.

./vendor/bin/archi b

Generates a new baseline of current violations.

🧱 Rule Structure

Each rule consists of:

  • A target (RuleForSome*)
  • A set of filters
  • One or more expectations (called "shoulds")

πŸ“ Available Rules

  • RuleForSomeClass
  • RuleForSomeInterface
  • RuleForSomeMethod
  • RuleForSomeNamespace
  • RuleForSomeTrait

🧲 Available Filters

  • Each
  • UnderNamespace
  • WhichExtends
  • WhichHasAttribute
  • WhichImplements
  • WhichIsAbstract
  • WhichIsFinal
  • WithName

βœ… Available Shoulds

  • NotBeHigherNLines
  • NotExist
  • NotHaveStaticMethods
  • NotHaveStaticVariables
  • NotToBeInANamespace
  • NotUseAnyClassExtendsSpecified

πŸ“„ Example Configuration

<?php

use Vladitot\ArchChecker\Rules\RuleForSomeNamespace;
use Vladitot\ArchChecker\Filters\Each;
use Vladitot\ArchChecker\Should\NotExist;

return [
    RuleForSomeNamespace::filter([
        new Each(),
    ])
        ->should([
            new NotExist(),
        ])
        ->setRuleName('Disallow this namespace completely'),
];

πŸ’‘ Why Use Archi?

  • Enforces architectural rules across your codebase.
  • Acts as living documentation for your architecture.
  • Prevents architectural drift and technical debt.
  • Keeps code maintainable, scalable, and consistent.

🀝 Contributing

We welcome issues, pull requests, and ideas!
Let’s build a more structured PHP world together.

πŸͺͺ License

This project is licensed under the MIT License.