Organizer facilitates the import/export of PHP modules from a root directory.
Use Composer to install the library with this command:
composer require organizer/organizer
Or click here to download it directly in ZIP format
<?php
$root = __DIR__;
$organizer_root = "$root/vendor/organizer/organizer";
$organizer = require_once "$organizer_root/bootstrap.php";
$organizer->organize($root); // You can use the function organize() if it not exist in your project
// Search and require my.module or my.module.php or my/module or my/module.php from $root and $organizer_root
$organizer->import('my.module'); // You can use the function import() if it not exist in your project
PHP 8 or above (at least 8.0 recommended to avoid potential bugs)
Website | E-mail | LinkedIn | GitLab | GitHub | npm | Composer - Packagist | Twitter
Please send any sensitive issue to report@sikessem.com. Thanks!
Organizer is licensed under the Apache 2.0 License - see the LICENSE file for details.
For any contribution, please follow these steps:
- Clone the repository with
git clone https://github.com/SIKessEm/Organizer
orgit remote add origin https://github.com/SIKessEm/Organizer
thengit branch -M main
- Create a new branch. Example:
git checkout -b my_contribution
- Make your changes and send them with
git push -u origin main
You will be informed of the rest.