frozzare / wp-autoload
Simple autoloader that will autoload classes or traits with namespace prefix
Installs: 16 349
Dependents: 2
Suggesters: 0
Security: 0
Stars: 14
Watchers: 3
Forks: 3
Open Issues: 0
Requires
- php: ^5.4 || ^7.0
Requires (Dev)
- phpunit/phpunit: ~4.0
README
Simple autoloader that will autoload classes, interfaces or traits with namespace prefix
Install
composer require frozzare/wp-autoload
Example
Example of your main php file.
require 'vendor/autoload.php'; register_wp_autoload( 'Example\\', __DIR__ . '/src' );
Example of src/class-plugin-loader.php
namespace Example; class Plugin_Loader {}
Example of src/trait-crawler.php
namespace Example; trait Crawler {}
Example of src/interface-say.php
namespace Example; interface Say {}
License
MIT © Fredrik Forsmo