Download the PHP package toobo/type-checker without Composer

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

Type Checker

Quality Assurance

What is this

You can think of it as a way to build an is_a() function on steroids.

is_a() only works for classes, interfaces and enums. It does not work for scalars (string, int, etc., including unary types like true and false) and it does not work for virtual types (iterable, callable).

Moreover, it does not work for complex types, such as unions, intersections, and DNF.

If you ever wanted to do something like:

Then this package is for you. But there's more.

is_a() accepts a type string, but sometimes one wants to check against a ReflectionType, and this package can do that as well.

An example with a string:

with a ReflectionType:

A deeper look

Named constructors

Besides by strings and by reflection, the Type class can also be instantiated using named constructors such as Type::string(), Type::resource(), or Type::mixed(), but also Type::iterable(), Type::callable() or even Type::null(), Type::true(), and Type::false().

For completeness' sake, it is also possible to create instances for types that will never match any value, like Type::void() or Type::never().

Matching types

The Type class aims at representing the entire PHP type system. And it is possible to compare one instance with another:

Type::matchedBy() and Type::isA() both accept a string or another type instance and check type compliance. They are the inverse of each other.

Type::matchedBy() behavior can be described as: if a function's argument type is represented by the type calling the method, would it be satisfied by a value whose type is represented by the type passed as argument?

Type::isA() behavior can be described as: if a function's argument type is represented by the type passed as argument, would it be satisfied by a value whose type is represented by the instance calling the method?

"Checked" VS "Unchecked" instantiation

When instantiating a Type instance from a string, that is checked to make sure the string represents a valid type (or at least, looks like a valid type). Passing a string that does not contain valid PHP syntax for a type definition (including usage of reserved PHP keywords) will result in an error being thrown.

On the other hand, instantiation by ReflectionType is "unchecked" because if we obtain a ReflectionType instance, we know that's a valid PHP type. The only possible error building from ReflectionType can be caused by using "late state binding" types, more on this below.

Late Static Binding Types

PHP support "late state binding" (LSB) types self, parent and static in return-only type declaration. These types are called "late" as their actual type is calculated at runtime.

The main goal of this library is to check types, and it is impossible to check LSB types without knowing the context where they were used, and such context is missing in a simple string such as "self" or in a "ReflectionType instance.

For that reason this library does not support them. Trying to create a Type instance from any type that reference those LSB types will result in an error being thrown.

Type information

The Type class has several methods to get information about the PHP type it represents.

can tell what kind of composite type is, or if not composed at all.

There's also a isNullable() method.

Type position utils

PHP allows type declarations in three places:

And a slightly different set of types is supported in the three positions.

For example, void and never can only be used as return types, and callable can not be used as property type.

The Type class has three methods: Type::isPropertySafe(), Type::isArgumentSafe(), and Type::isReturnSafe() which can be used to determine if the instance represents a type that can be used in the three positions.

Comparison with other libraries

There are other libraries out there that deals with "objects representing types".

In general, this package dependency-free, simpler in only targeting PHP-supported type rather than "advanced" types that are used in documentation and static analysis. This limited scope allows for much simpler code in a single class. Moreover, this library focuses on checking type of values more than "parsing" or "extracting" types from strings, like other libraries.


All versions of type-checker with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1 < 8.4
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 toobo/type-checker contains the following files

Loading the files please wait ....