headsnet / living-documentation
Provides Living Documentation annotations
Installs: 6 622
Dependents: 1
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 1
Open Issues: 2
Requires
- php: >=7.1
- doctrine/annotations: ^1.5
This package is auto-updated.
Last update: 2024-10-18 23:36:20 UTC
README
This package provides tools to aid in generation of Living Documentation in PHP projects.
Living Documentation has been championed by Cyrille Martraire and his book "Living Documentation" is the primary inspiration for this package.
Symfony integration is available via the provided bundle.
Annotations
The package provides a set of annotations that can be used to semantically document a codebase, as well as provide inline documentation and learning resources for developers.
The annotations are grouped in to logical sets, such as:
- DDD artifacts
- Design Patterns
For example, you can annotate a DDD entity as follows:
<?php
import Headsnet\LivingDocumentation\Annotation\DDD\DomainEntity;
import Headsnet\LivingDocumentation\Annotation\DDD\Invariant;
/**
* @DomainEntity()
*
* @Invariant(description="Cannot assign more guests than beds in the room.")
* @Invariant(description="Cannot allocate guests if room is under renovation")
*/
class HotelRoom
{
private $guests;
private $beds;
private $underRenovation
}
Acknowledgements
Many annotations have definitions which are either linked resources, or attributed to the original author.
DDD definitions usually come from Vaughn Vernon's Red Book or Eric Evan's Blue Book.
Contributions
Contributions are welcome via Pull Requests.