Re: [PHP-DEV] Resolve fallback-to-root-namespace in preloaded implementations

2020-06-22 Thread Nicolas Grekas
Hello Nikita, with preloading and Composer, we don't need anymore to consider autoloading >> for functions and/or constants. The reason is that basically Composer is >> already doing a great job at loading functions: just give it a list of >> files and it will ensure they are included all the time

Re: [PHP-DEV] Resolve fallback-to-root-namespace in preloaded implementations

2020-06-19 Thread Nikita Popov
On Thu, Apr 23, 2020 at 6:59 PM Nicolas Grekas wrote: > Hello, > > with preloading and Composer, we don't need anymore to consider autoloading > for functions and/or constants. The reason is that basically Composer is > already doing a great job at loading functions: just give it a list of > file

[PHP-DEV] Resolve fallback-to-root-namespace in preloaded implementations

2020-04-23 Thread Nicolas Grekas
Hello, with preloading and Composer, we don't need anymore to consider autoloading for functions and/or constants. The reason is that basically Composer is already doing a great job at loading functions: just give it a list of files and it will ensure they are included all the time. Actually, Comp