php-extended / php-information-interface
A library to specify transport objects for individual informations
Requires
- php: >=8.0
- dev-master
- 18.4.5
- 18.4.4
- 18.4.3
- 18.4.2
- 18.4.1
- 18.4.0
- 18.3.9
- 18.3.8
- 18.3.7
- 18.3.6
- 18.3.5
- 18.3.4
- 18.3.3
- 18.3.2
- 18.3.1
- 18.3.0
- 18.2.2
- 18.2.1
- 18.2.0
- 18.1.1
- 18.1.0
- 18.0.4
- 18.0.3
- 18.0.2
- 18.0.1
- 18.0.0
- 17.6.0
- 17.5.0
- 17.4.1
- 17.4.0
- 17.3.0
- 17.1.0
- 17.0.33
- 17.0.32
- 17.0.31
- 17.0.30
- 17.0.29
- 17.0.28
- 17.0.27
- 17.0.26
- 17.0.25
- 17.0.24
- 17.0.23
- 17.0.22
- 17.0.21
- 17.0.20
- 17.0.19
- 17.0.18
- 17.0.17
- 17.0.16
- 17.0.15
- 17.0.14
- 17.0.13
- 17.0.12
- 17.0.11
- 17.0.10
- 17.0.9
- 17.0.8
- 17.0.7
- 17.0.6
- 17.0.5
- 17.0.4
- 17.0.3
- 17.0.2
- 17.0.1
- 17.0.0
- 16.1.5
- 16.1.4
- 16.1.3
- 16.1.2
- 16.1.1
- 16.1.0
- 16.0.5
- 16.0.4
- 16.0.3
- 16.0.2
- 16.0.1
- 16.0.0
- 15.1.0
- 15.0.3
- 15.0.2
- 15.0.1
- 15.0.0
- 14.1.0
- 14.0.1
- 14.0.0
- 13.2.0
- 13.1.0
- 13.0.0
- 12.1.0
- 12.0.0
- 11.0.0
- 10.0.0
- 8.0.0
- 7.0.0
- 6.0.0
- 5.0.0
- 4.0.0
- 3.0.0
- 2.0.0
- 1.0.2
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2024-10-30 19:55:12 UTC
README
A library to specify transport objects for individual informations that transit between two systems.
Installation
The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.phar
from their website. - Then run the following command to install this library as dependency :
php composer.phar install php-extended/php-information-interface ^18
Basic Usage
This library is an interface-only library.
For a concrete implementation, see php-extended/php-information
.
InformationDataInterface
The InformationDataInterface
is the most basic data that can transit.
It represents a simple information that an object can own.
InformationRelationInterface
The InformationRelationInterface
is the most basic relation that can
transit.
It represents a simple link between two objects.
InformationTripleInterface
The InformationTripleInterface
is used for semantic-web informations.
It is composed of only three fields, the subject, the predicate, and the object
of the triple (or tuple).
It can represent information for a specific object or a relation between two objects or a reference list.
InformationMultiInterface
The InformationMultiInterface
is a complex information that carries
in one go multiple data and relation informations.
It represents a complete object full of its own informations.
InformationVisitorInterface
The InformationVisitorInterface
is the only object that can interact
with all the others information interfaces.
It represents a dispatcher that will process with specific paths each of the available information interface.
License
MIT (See license file).