Download the PHP package wildphp/type-definitions without Composer

On this page you can find all versions of the php package wildphp/type-definitions. 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 type-definitions

Type definition library


Code analysis Latest Stable Version Latest Unstable Version Total Downloads

Library to provide type validation and expression. Includes an interpreter to transform short and concise syntax into usable types.

Installation

In order to use this library, install it through Composer:

$ composer require wildphp/type-definitions

Type definitions using classes

Type definitions can be built using the classes in this library. There are 3 main classes:

PrimitiveTypeDefinition

Primitive type definitions are those who refer to scalar or otherwise built-in types. PrimitiveTypeDefinition acts as a wrapper around gettype().

For example:

Alternatively, types may be specified using one of the constants on the PrimitiveTypeDefinition class. These map to the type specifiers for gettype() and are recommended to be used instead of specifying types manually.

ClassTypeDefinition

Class type definitions validate their value using instanceof. This means that any class will pass this definition if it is an instance of, or inheritor of, the given class.

null is also considered a valid value.

For example:

ArrayTypeDefinition

Array type definitions validate their values using a child type definition (a content definition). This makes it possible to write complex nested structures.

Please note that ArrayTypeDefinition only validates values and not keys. Key validation would not make a lot of sense, since PHP itself limits key types to strings and integers.

Validation will fail when any of the children does not conform to the content definition.

For example:

Type definitions using maps and strings

The library provides a TypeDefinitionInterpreter helper class to translate maps and strings into TypeDefinitionInterface instances.

This is used in the models library to provide swift model declaration and validation.

createDefinitionMap is used to translate the values of key-value based arrays into TypeDefinitionInterface implementations. This method will preserve keys and will not modify the existing array.

For example:

If you do not need to interpret a map but would rather interpret a single value, use the interpret function:


All versions of type-definitions with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2|^8.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 wildphp/type-definitions contains the following files

Loading the files please wait ....