You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.
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?
The text was updated successfully, but these errors were encountered:
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?The text was updated successfully, but these errors were encountered: