-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
Milestone
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.