aedart/model

This package is abandoned and no longer maintained. The author suggests using the aedart/athenaeum package instead.

Collection of getter- / setter-interfaces with various trait implementations, for different kinds of 'common' properties.

3.3.0 2018-11-25 15:05 UTC

README

Build Status Latest Stable Version Total Downloads Latest Unstable Version License

Deprecated - Model

Package has been replaced by aedart/athenaeum All aware-of components have been migrated into the Athenaeum package.

Collection of getters and setters-interfaces with various trait implementations, for different kinds of "common" properties. Can be used for creating DTOs.

Contents

When to use this

  • When there is a strong need to interface what properties must be available on a given object
  • (When multiple objects share the same properties)

How to install

composer require aedart/model

This package uses composer. If you do not know what that is or how it works, I recommend that you read a little about, before attempting to use this package.

Quick start

Create your interface

In the following example, we create a simple person interface, which consists of an id, name and description;

<?php

namespace Acme\Contracts;

use Aedart\Model\Contracts\Integers\IdAware;
use Aedart\Model\Contracts\Strings\DescriptionAware;
use Aedart\Model\Contracts\Strings\NameAware;

interface Person extends
    IdAware,
    NameAware,
    DescriptionAware
{
    
}

Concrete implementation

Use the default provided traits, in order to create a concrete implementation of your interface;

<?php

namespace Acme\Models;

use Acme\Contracts\Person as PersonInterface;
use Aedart\Model\Traits\Strings\DescriptionTrait;
use Aedart\Model\Traits\Strings\IdTrait;
use Aedart\Model\Traits\Strings\NameTrait;

class Person implements PersonInterface
{
    use IdTrait;
    use NameTrait;
    use DescriptionTrait;   
}

Available properties

Property Supported types
A
Action string
Address string
Age int
Agent string
Alias string
Amount int, float
Anniversary int, string
Area string
Ask bool
Author string
B
BasePath string
Begin string
Birthdate int, string
Brand int, string
BuildingNumber string
C
Calandar string
CardNumber string
CardOwner string
CardType string
Categories array
Category string
Choices array
City string
Class string
Code string
Colour string
Column string
Comment string
Company string
Content string
Country string
CreatedAt int, string
Currency string
D
Data array
Database string
Date int, string
DeceasedAt int, string
DeletedAt int, string
DeliveredAt int, string
DeliveryAddress string
DeliveryDate int, string
Depth int, float
Description string
Directory string
Discount int, float, string
Distance int, float, string
Domain string
Duration int, float, string
E
Ean13 string
Ean8 string
Ean string
Edition int, string
Email string
End string
EndDate int, string
Error int, string
Event int, string
ExpiresAt int, string
F
FileExtension string
Filename string
FilePath string
FirstName string
Format string
FormattedName string
G
Gender string
Group int, string
H
Height int, float
Host string
Html string
I
Iata string
Iban string
Icao string
Id int, string
Identifier int, string
Image string
Index int, string
InvoiceAddress string
Ip string
IpV4 string
IpV6 string
IsicV4 string
Isbn string
Isbn10 string
Isbn13 string
J
Json string
K
Key string
Kind string
L
Label string
Language string
LastName string
Latitude float, string
Length int, float
License int, string
Locale string
Location int, string
Locations array
Logo string
Longitude float, string
M
MacAddress string
Manufacturer string
Material string
MediaType string
Message string
Method int, string
MiddleName string
N
Name string
Nickname string
O
OrderNumber int, string
Organisation string
OutputPath string
P
Package string
Password string
Path string
Pattern string
Phone string
Photo string
PostalCode string
Prefix string
Price int, float, string
ProducedAt int, string
ProductionDate int, string
Profile string
PurchasedAt int, string
PurchaseDate int, string
Q
Quantity int, float
Query string
Question string
R
Rank int, float, string
Rate int, float, string
Rating int, float, string
Region string
ReleasedAt int, string
ReleaseDate int, string
Revision string
Role string
Row int
S
Size int, float, string
Script string
Slug string
Source string
Sql string
StartDate int, string
State int, string
Status int, string
Street string
Suffix string
Swift string
T
Table string
Tag string
Tags array
Template string
Text string
Timeout int
Timestamp int
Timezone string
Title string
Tld string
Topic string
Type int, string
U
UpdatedAt int, string
Url string
Username string
Uuid string
V
Value string, mixed
Vat int, float, string
Vendor string
Version string
W
Weight int, float
Width int, float
Wildcard string
X
X int, float, mixed
Xml string
Y
Y int, float, mixed
Z
Z int, float, mixed
Zone int, string

As I progress with other projects, more properties will be added...

Contribution

Have you found a defect ( bug or design flaw ), or do you wish improvements? In the following sections, you might find some useful information on how you can help this project. In any case, I thank you for taking the time to help me improve this project's deliverables and overall quality.

Bug Report

If you are convinced that you have found a bug, then at the very least you should create a new issue. In that given issue, you should as a minimum describe the following;

  • Where is the defect located
  • A good, short and precise description of the defect (Why is it a defect)
  • How to replicate the defect
  • (A possible solution for how to resolve the defect)

When time permits it, I will review your issue and take action upon it.

Fork, code and send pull-request

A good and well written bug report can help me a lot. Nevertheless, if you can or wish to resolve the defect by yourself, here is how you can do so;

  • Fork this project
  • Create a new local development branch for the given defect-fix
  • Write your code / changes
  • Create executable test-cases (prove that your changes are solid!)
  • Commit and push your changes to your fork-repository
  • Send a pull-request with your changes
  • Drink a Beer - you earned it :)

As soon as I receive the pull-request (and have time for it), I will review your changes and merge them into this project. If not, I will inform you why I choose not to.

Acknowledgement

  • PHPStorm , Jetbrains; for developing the best PHP-IDE, and supporting this and other OpenSource projects
  • PHPUnit , Sebastian Bergmann; By the gods ... We still know some developers, managers and decision makers, that believe good software does not require testing, at all! We cannot image working on any project, without good testing tools, such as PHPUnit.
  • Codeception , Michael Bodnarchuk; for making PHPUnit even better.
  • Composer & Packagist , Nils Adermann, Jordi Boggiano & et al.; amongst the best things that has happened to the PHP community.
  • Git , Software Freedom Conservancy; without it… We would still be stuck in the "stone age" of software development.
  • Laracasts , Jeffrey Way et al.; worth every penny…
  • PHP , Rasmus Lerdorf & The PHP Group; we might be developing this in old fashioned ASP… (Shivers!)

Versioning

This package follows Semantic Versioning 2.0.0

License

BSD-3-Clause, Read the LICENSE file included in this package