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
Requires
- php: ^8.1
- adhocore/cli: ^1.9
- nette/php-generator: ^4.1
Requires (Dev)
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2025-03-28 16:00:40 UTC
README
π 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.