Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.16.24.18
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
jms /
metadata /
Delete
Unzip
Name
Size
Permission
Date
Action
src
[ DIR ]
drwxrwxr-x
2021-11-22 12:27
CHANGELOG.md
8.36
KB
-rw-rw-r--
2021-11-22 12:27
CONTRIBUTING.md
1.8
KB
-rw-rw-r--
2021-11-22 12:27
LICENSE
1.04
KB
-rw-rw-r--
2021-11-22 12:27
README.md
2.16
KB
-rw-rw-r--
2021-11-22 12:27
UPGRADING.md
1.96
KB
-rw-rw-r--
2021-11-22 12:27
composer.json
1.02
KB
-rw-rw-r--
2021-11-22 12:27
Save
Rename
Metadata is a library for class/method/property metadata management in PHP ========================================================================== | [Master (2.x)][Master] | [1.x][1.x] | |:----------------:|:----------:| | [![Build status][Master image]][Master] | [![Build status][1.x image]][1.x] | | [![Coverage Status][Master coverage image]][Master coverage] | [![Coverage Status][1.x coverage image]][1.x coverage] | Overview -------- This library provides some commonly needed base classes for managing metadata for classes, methods and properties. The metadata can come from many different sources (annotations, YAML/XML/PHP configuration files). The metadata classes are used to abstract away that source and provide a common interface for all of them. Usage ----- The library provides three classes that you can extend to add your application specific properties, and flags: ``ClassMetadata``, ``MethodMetadata``, and ``PropertyMetadata`` After you have added, your properties in sub-classes, you also need to add ``DriverInterface`` implementations which know how to populate these classes from the different metadata sources. Finally, you can use the ``MetadataFactory`` to retrieve the metadata:: ```php <?php use Metadata\MetadataFactory; use Metadata\Driver\DriverChain; $driver = new DriverChain(array( /** Annotation, YAML, XML, PHP, ... drivers */ )); $factory = new MetadataFactory($driver); $metadata = $factory->getMetadataForClass('MyNamespace\MyObject'); ``` [Master image]: https://img.shields.io/travis/schmittjoh/metadata/master.svg?style=flat-square [Master]: https://travis-ci.org/schmittjoh/metadata [Master coverage image]: https://img.shields.io/scrutinizer/coverage/g/schmittjoh/metadata/master.svg?style=flat-square [Master coverage]: https://scrutinizer-ci.com/g/schmittjoh/metadata/?branch=master [1.x image]: https://img.shields.io/travis/schmittjoh/metadata/1.x.svg?style=flat-square [1.x]: https://github.com/schmittjoh/metadata/tree/1.x [1.x coverage image]: https://img.shields.io/scrutinizer/coverage/g/schmittjoh/metadata/1.x.svg?style=flat-square [1.x coverage]: https://scrutinizer-ci.com/g/schmittjoh/metadata/?branch=1.x