Stars: 146
Forks: 6
Pull Requests: 4
Issues: 2
Watchers: 6
Last Updated: 2021-11-21 18:23:18
⚗️ Modules in PHP with the `import` and `export` syntax
License: MIT License
Languages: PHP
Modules in PHP with the `import` and `export` syntax.
Yorn was carefully crafted to introduce the support for modules in PHP with the import
and export
syntax. It was created by Nuno Maduro.
Before the quick start, keep in mind that a module usually contains a collection of functions, and those functions are small units of independent, reusable code that is desired to be used as the building blocks in creating a PHP application.
As example, this is how a typical Yorn application would look like:
# src/math/sum.php:
<?php export(function ($one, $two) {
return $one + $two;
});
# src/index.php:
<?php
$sum = import('math/sum');
echo $sum(1, 2);
Remember, this is just an experiment. Don't use this in production.
# First, install:
composer require nunomaduro/yorn
Any function can be exported by using the export
function:
# src/validators/zipCodeValidator.php:
<?php export(function (string $value) {
return strlen($value) === 5;
});
Importing is just about as easy as exporting from a module. Importing an exported declaration is done through using one of the import
forms below:
# src/index.php
<?php
$zipCodeValidator = import('validators/zipCodeValidator');
echo $zipCodeValidator(8000);
Of course, you may want to import all functions in a module
:
# src/index.php
<?php
$validators = import('validators'); // zipCodeValidator is imported also here
$zipCodeValidator = $validators->zipCodeValidator;
echo $zipCodeValidator(8000);
Do you like this project? Support it by donating
Yorn is open-sourced software licensed under the MIT license.