Closed
Description
Should the namespacing be done like this:
namespace PHPWord;
class PHPWord
{}
which will result in using the lib like this: new PHPWord\PHPWord();
OR
namespace PHPOffice\PHPWord;
class PHPWord
{}
which will result in using the lib like this: new PHPOffice\PHPWord\PHPWord();
Both of which are PSR-0 and PSR-4 compliant.