-
-
Notifications
You must be signed in to change notification settings - Fork 46
Description
Hi! As you know I maintain https://github.com/box-project/box and I would like to somehow integrate Autoload into it (or at least part of it).
The rationale being there is one feature which I think is really missing within Box and that is ditching the Composer autoloader. In general having the Composer autoloader is not so much of an issue, but I have cases, for example the RequirementChecker where it forces the code to require PHP 7.2+ where I the original code could be PHP 5.6.
I had a quick look but I admit I'm not entirely sure on how to proceed. I at first was thinking of either requiring the project itself, but then there is a lot of "extra" that doesn't really make sense to include within Box. Another way would be to copy/paste the relevant code whilst keeping the license (like it was done with the requirement checker that was Symfony's code for the most part). But overall I see a lot of features where I am not really sure I understand the intent itself...
Hence this issue. Do you have any pointers/thoughts? Or are you against the idea?