On the project's Getting started page there's mentioned that you can use Dwoo without Composer. But there's no clear explanation on how to actually do it. In a similar issue there's a comment that says that "you need to include/require all files manually" such as:
require './lib/Dwoo/Core.php';
require ...
I tried scanning Dwoo directory and requiring every php file and I got this error:
Fatal error: Interface 'Dwoo\ICompiler' not found in <...>\lib\Dwoo\Compiler.php on line 33
I suppose this happens due to wrong order in which files are required (since I used scandir the order was probably alphabetical). What order is correct?
On the project's Getting started page there's mentioned that you can use Dwoo without Composer. But there's no clear explanation on how to actually do it. In a similar issue there's a comment that says that "you need to include/require all files manually" such as:
I tried scanning Dwoo directory and requiring every php file and I got this error:
I suppose this happens due to wrong order in which files are required (since I used
scandir
the order was probably alphabetical). What order is correct?