enpii / enpii-base
The base plugin to have powerful Laravel development on WordPress
Installs: 424
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:wordpress-muplugin
Requires
- php: ^7.3|^8.0
- doctrine/dbal: ~3.3.8
- laravel/framework: ~8.83.0
- laravel/tinker: ~2.9.0
- mcaskill/composer-exclude-files: ~4.0.0
- spatie/laravel-html: ~2.30.0
- symfony/var-dumper: ~5.4.39
Requires (Dev)
- dev-master
- v0.8.7
- v0.8.6
- v0.8.5
- v0.8.3
- v0.8.2
- v0.8.1
- v0.8.0
- v0.7.0
- v0.6.3
- v0.6.1
- v0.6.0
- v0.4.0
- v0.3.2
- 0.3.1
- v0.3.0
- v0.2.0
- v0.1.0
- v0.0.1
- dev-develop
- dev-feature/add-more-tests-for-actions-folder
- dev-feature/add-new-actions
- dev-feature/add-new-actions-01
- dev-feature/add-unit-tests-for-actions
- dev-wp-release
- dev-tmp-tests
- dev-bugfix/slug-issue
- dev-bugfix/customizer
- dev-bugfix/fix-some-bugs
- dev-feature/add-view-method-for-wp-theme
- dev-feature/remove-telescope-fix-redirect
- dev-feature/with-passport
- dev-feature/refactor-and-docs
- dev-feature/add-personal-client-app-for-users
- dev-feature/api-setup
- dev-tmp-develop
- dev-bugfix/telescope-job-watcher
- dev-bugfix/api-response
- dev-feature/refactor-methods-name
- dev-feature/add-flash-messages-for-admin
- dev-feature/activation-script
- dev-bugfix/minor
- dev-feature/improvements
This package is auto-updated.
Last update: 2024-11-27 06:48:20 UTC
README
We understand the pains it brings to WordPress developers so we create this plugin to allow to use Laravel framework.
This plugin would bring all the features of Laravel framework to WordPress development: Container concepts, Service Providers, ORMs, Queue system, Routing system ... (everything that works with Laravel will work with WordPress with Enpii Base plugin).
So from now on, you can use Laravel concepts to work with WordPress developments consistently. This Enpii Base plugin would help WordPress developers to create easy-maintainable code exactly the same way Laravel does.
Imagine, you can do this for the iconic template file index.php
(using Blade template syntax)
@extends('layouts/main') @section('content') <h1><?php echo 'WP App'; ?></h1> <p>{{ 'Welcome to WP App from Enpii Base' }}</p> @endsection
and on layouts/main.blade.php
<html> <body> <main class="site-body"> @yield('content') </main> </body> </html>
Interesting!? Let's get started
Installation
composer require enpii/enpii-base
or you can find it on WordPress plugin hub
Docs are here:
- Basic Concepts
- We log our blockers, solutions and crazy things in Development Logs
- Development Guides
License
The Enpii Base plugin is open-sourced software licensed under the MIT license.
Credits
- Author Trac Nguyen
- WordPress Team and WordPress VIP
- Laravel team Laravel framework
- PHPCS team
- Codeception
- PHPUnit