Download the PHP package xp-framework/reflection without Composer

On this page you can find all versions of the php package xp-framework/reflection. 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 reflection

XP Reflection

Build status on GitHub XP Framework Module BSD Licence Requires PHP 7.4+ Supports PHP 8.0+ Latest Stable Version

This library provides a replacement for the XP Framework's reflection API.

Features

Concise: This library aims at reducing code noise of the form if (hasX(...)) { getX() } by simply returning NULL from its accessor methods. Null handling has improved with the introduction of the null-coalesce operator ?? in PHP 7 and the null-safe invocation operator ?-> in PHP 8 (and in XP Compiler).

PHP 7 & 8: This library handles PHP 8 attributes in both PHP 7 (using the compiler's AST library) and PHP 8 (using its native reflection API).

Subcommand: This library provides an RFC #0303 integration and offers a "reflect" subcommand for the new XP runners. See xp help reflect on how to use it.

API

The entry point class is the lang.Reflection class. It can be constructed by passing either objects, type literals (e.g. Date::class), fully qualified class names (e.g. util.Date) or lang.XPClass or PHP's ReflectionClass instances.

Annotations can be accessed by iterating over annotations() or by the shorthand method annotation().

The constructor can be accessed via constructor(). Like members, it provides accessors for modifiers and annotations, as well as its declaring type.

Type instantiation can be controlled by using initializer(). It accepts either closures or named references to instance methods.

All members (constants, properties and methods) can be accessed by iterating or by a shorthand lookup by name. Members provide accessors for modifiers and annotations, as well as their declaring type.

Method and constructor parameters can be retrieved by iterating via parameters(), by offset parameter($position) or by name parameter($name).

Packages can be reflected upon by passing namespace names to Reflection::of().


All versions of reflection with dependencies

PHP Build Version
Package Version
Requires xp-framework/core Version ^12.0 | ^11.0 | ^10.13
xp-framework/ast Version ^11.0 | ^10.0 | ^9.0 | ^8.0 | ^7.6
php Version >=7.4.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 xp-framework/reflection contains the following files

Loading the files please wait ....