├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── file ├── class-file-reader.php └── class-file-writer.php ├── lib └── autoloader.php └── namespaces-and-autoloading-in-wordpress.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | /.DS_Store 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommcfarlin/namespaces-and-autoloading-in-wordpress/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommcfarlin/namespaces-and-autoloading-in-wordpress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommcfarlin/namespaces-and-autoloading-in-wordpress/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommcfarlin/namespaces-and-autoloading-in-wordpress/HEAD/composer.json -------------------------------------------------------------------------------- /file/class-file-reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommcfarlin/namespaces-and-autoloading-in-wordpress/HEAD/file/class-file-reader.php -------------------------------------------------------------------------------- /file/class-file-writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommcfarlin/namespaces-and-autoloading-in-wordpress/HEAD/file/class-file-writer.php -------------------------------------------------------------------------------- /lib/autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommcfarlin/namespaces-and-autoloading-in-wordpress/HEAD/lib/autoloader.php -------------------------------------------------------------------------------- /namespaces-and-autoloading-in-wordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommcfarlin/namespaces-and-autoloading-in-wordpress/HEAD/namespaces-and-autoloading-in-wordpress.php --------------------------------------------------------------------------------