composer require symbiotic/packages-loader-filesytem
The component traverses all allowed directories (up to 3 levels of nesting), searches for composer.json
files and reads
a section from them reads the extra->symbiotic
section to add a package to the core of the Symbiotic framework.
Adding directories to search for Symbiotic packages is done in the main config of the framework:
<?php
return [
// Core framework config...
'packages_paths' => [
'/home/path_to_project/vendor',
'/home/path_to_project/modules',
//.....
]
];