mindtwo / lumen-wp-app
This package contains a application file to use the Laravel-Lumen service container with some Laravel components inside of WordPress.
Installs: 5 861
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 7
Forks: 0
Open Issues: 0
Requires
- php: ^8.1
- illuminate/cache: ^10.0
- illuminate/config: ^10.0
- illuminate/container: ^10.0
- illuminate/contracts: ^10.0
- illuminate/encryption: ^10.0
- illuminate/events: ^10.0
- illuminate/filesystem: ^10.0
- illuminate/hashing: ^10.0
- illuminate/http: ^10.0
- illuminate/log: ^10.0
- illuminate/support: ^10.0
- illuminate/translation: ^10.0
- illuminate/validation: ^10.0
- symfony/error-handler: ^6.1
- symfony/var-dumper: ^6.1
- vlucas/phpdotenv: ^5.4.1
Requires (Dev)
- mockery/mockery: ^1.4.4
- phpunit/phpunit: ^10.0
README
This package contains a application file to use the Laravel-Lumen service container with some Laravel components inside of WordPress.
Install
Via Composer
$ composer require mindtwo/lumen-wp-app
Usage
Create a bootstrap/app.php
file like this:
<?php require_once dirname(__DIR__).'/vendor/autoload.php'; (new LumenWpApp\LoadEnvironmentVariables( dirname(__DIR__) ))->bootstrap(); /* |-------------------------------------------------------------------------- | Create The Application |-------------------------------------------------------------------------- | | Here we will load the environment and create the application instance | that serves as the central piece of this framework. We'll use this | application as an "IoC" container and router for this framework. | */ $app = new LumenWpApp\Application( dirname(__DIR__) ); /* |-------------------------------------------------------------------------- | Load The Application |-------------------------------------------------------------------------- */ $app->configure('app'); $app->configure('cache'); $app->configure('database'); $app->configure('filesystems'); $app->configure('logging'); $app->configure('services'); /* |-------------------------------------------------------------------------- | Load The Application |-------------------------------------------------------------------------- */ return $app;
Inside your wp-config.php
file:
/** Load Application */ $app = require_once(realpath(__DIR__ . '/../bootstrap/app.php'));
Inside your functions.php
file:
$app->registerConfiguredProviders()->boot();
Change log
Please see CHANGELOG for more information on what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
Security
If you discover any security related issues, please email info@mindtwo.de instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.