antares/accessible

PHP library that allows you to define your class' getters, setters and constructor with docblock annotations.

v3.1 2016-04-26 21:37 UTC

This package is not auto-updated.

Last update: 2024-04-27 15:15:19 UTC


README

SensioLabsInsight Build Status Code Coverage Scrutinizer Code Quality Dependency Status Latest Stable Version License

Accessible is a PHP library that allows you to define your class behavior in an elegant and powerful way using docblock annotations.

This way, you can define your class' getters, setters and constructor, and automate collections and association management.

Here is a (very) basic example with getters and setters:

class Customer
{
  use AutomatedBehaviorTrait;

  /**
   * @Access({Access::GET, Access::SET})
   * @Assert\Email
   */
  private $email;
}


$bob = new Customer();

$bob->setEmail('bob@example.com');
$bob->getEmail(); // bob@example.com
$bob->setEmail('not an email address'); // throws an InvalidArgumentException

Another example using collections related annotations:

class Server
{
  use AutomatedBehaviorTrait;

  /**
   * @Access({Access::GET})
   * @InitializeObject(ArrayCollection::class)
   * @ListBehavior
   */
  private $processes;
}

$server = new Server();

$server->getProcesses(); // Instance of ArrayCollection
$process = new Process();
$server->addProcess($process);
$server->removeProcess($process);

More complex examples are available in the doc.

What this library can manage in your classes:

  • Getters and setters
  • Validation on setters parameters using Symfony's Assertion annotations
  • Constructor and properties initialization
  • Collections
  • Associations between classes

Suggestions and contributions are welcome!

Documentation

Install

If you want to use this library in your Symfony project, take a look at AccessibleBundle.

You can add this library as a dependency using composer this way:

composer require antares/accessible

This library uses the Doctrine annotations library, so if it is not already done you must register the Composer loader in the annotation registry:

$loader = require __DIR__ . '/vendor/autoload.php';
Doctrine\Common\Annotations\AnnotationRegistry::registerLoader(array($loader, 'loadClass'));

You may want to change the default configuration, to do this see the Configuration dedicated page.

Compatibility

This library is compatible with PHP 5.4+, PHP 7 and HHVM.