Download the PHP package guym4c/prop-types without Composer
On this page you can find all versions of the php package guym4c/prop-types. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download guym4c/prop-types
More information about guym4c/prop-types
Files in guym4c/prop-types
Package prop-types
Short Description Complete PHP port of React PropTypes (fork of prezly/prop-types)
License MIT
Informations about the package prop-types
PropTypes.php
A fork of prezly/prop-types-php. Please consider using the original package
Complete PHP port of React PropTypes.
Runtime type checking for complex properties structures.
You can use prop-types to document the intended types of properties passed into your code. PropTypes will check props passed to your functions against those definitions, and throw an error if they don’t match.
Installation
Credit
This is a fork of prezly/prop-types-php.
This package adds:
- Iterable proptype
- Callable proptype
- Number float/int shorthand proptype
- PHP7.4
Usage
PropTypes was originally exposed as part of the React core module, and is commonly used with React components. We've tried to bring the familiarity of React PropTypes into PHP. Here is an example of using PropTypes with a PHP function, which also documents the different validators provided.
You can call PropTypes::check()
to validate an array of props, providing it with a props spec as below:
Difference from React PropTypes
-
In this package we've split required and nullable checks into different traits:
- Required means a property has to be defined in the props object
- Nullable means a property value can be set to
null
React PropTypes has less straightforward logic around required, nulls and undefined.
- As opposed to React PropTypes we don't have a separate checker for null (
PropTypes::null()
). Instead any property can become nullable by calling->isNullable()
on its checker: