Replies: 1 comment
-
Composer is a dependency manager for PHP, having become a de facto standard in PHP community. I strongly recommend using it. Pretty much all shared PHP libraries use Composer. But it is possible to use PHP libraries without it. First thing is to manually install all libraries it requires. And the libraries that those libraries require. And so on, until all used dependencies are resolved. You will find required dependencies in respective Then you need to build your own auto-loader or require all involved source files in your code. For this library that means all files in Pretty complicated, yes. That's why PHP developers use Composer. |
Beta Was this translation helpful? Give feedback.
-
I am confused by
require __DIR__ . '/../vendor/autoload.php';
. It seems to have something to do with something called Compzer. Can I use this software without Compozer? Whichrequire_oce
statements would I need?Beta Was this translation helpful? Give feedback.
All reactions