Download the PHP package jasny/meta without Composer

On this page you can find all versions of the php package jasny/meta. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package meta

Jasny Meta

Build Status Coverage Status

The Jasny Meta library allows you to attach metadata to a class and class properties. The metadata is available at runtime and can be used to trigger particular behaviour.

Installation

The Jasny Meta package is available on packagist. Install it using composer:

composer require jasny/meta

Annotations

Metadata can be specified through annotations. In PHP annotations are written in the docblock and start with @. If you're familiar with writing docblocks, you probably recognize them.

Here's an example of obtaining metadata for given class:

In here:

Lets look closely at all of those.

Meta Sources

Source is an object that actually obtains metadata from class definition. We have three classes of sources defined:

PhpdocSource

Given a class:

We obtain metadata:

In here we used two additional dependencies:

ReflectionSource

This class does not take any information from doc-comments, but fetches data using only reflection methods.

Having a class from previous example as input, we obtain metadata:

$reflectionFactory dependency is the same as defined in the upper example for PhpdocSource.

CombinedSource

Here's an example for the same class definition:

As you see, meta, obtained by means of $phpdocSource and $reflectionSource, was merged into a single array.

Caching

The second parameter to pass to factory constructor is an instance of Jasny\Meta\Cache\CacheInterface. It is used to cache metadata between calls for the same class name.

We have two implementations of cache:

So if you don't want to cache meta, just use a $cache = new Jasny\Meta\Cache\None().

Meta

Meta returned by factory is an instance of Jasny\Meta\MetaClass. It has the following methods to obtain data:

MetaProperty class implements the first three methods of those (so get, is and has).


All versions of meta with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6.0
jasny/typecast Version ~2.1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jasny/meta contains the following files

Loading the files please wait ....