All Projects → Underpin-WP → underpin

Underpin-WP / underpin

Licence: MIT license
A WordPress Framework that makes building scale-able plugins and themes easier.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to underpin

seas-logger
An effective,fast,stable log package for PHP.
Stars: ✭ 46 (-45.24%)
Mutual labels:  composer-package
billbee-php-sdk
🔌 The official Billbee API SDK for PHP 💻
Stars: ✭ 14 (-83.33%)
Mutual labels:  composer-package
twoobl
Blank theme for Elementor
Stars: ✭ 19 (-77.38%)
Mutual labels:  wordpress-framework
picoFeed
PHP library to parse and write RSS/Atom feeds
Stars: ✭ 30 (-64.29%)
Mutual labels:  composer-package
scheduler
Task Scheduler for Laravel applications. UI from scratch
Stars: ✭ 18 (-78.57%)
Mutual labels:  composer-package
namecase
This package allows you to convert names into the correct case where possible.
Stars: ✭ 70 (-16.67%)
Mutual labels:  composer-package
php-base-project
A Composer ready package to start a new PHP 7 project
Stars: ✭ 17 (-79.76%)
Mutual labels:  composer-package
openimmo
OpenImmo library
Stars: ✭ 36 (-57.14%)
Mutual labels:  composer-package
parasut-v4
Parasut Php Api V4
Stars: ✭ 50 (-40.48%)
Mutual labels:  composer-package
wp-optimize
The WP Optimize class provides a wrapper to optimize WordPress and remove unnecessary or unwanted functions and scripts.
Stars: ✭ 37 (-55.95%)
Mutual labels:  wordpress-library
wp-phpunit
WordPress core PHPUnit library. [READ ONLY] Versions for new WordPress releases are built daily.
Stars: ✭ 65 (-22.62%)
Mutual labels:  composer-package
phpcsfixer-preset
Use the same php-cs-fixer configuration across all of your projects, with presets for common project layouts (Laravel, Composer packages, etc.).
Stars: ✭ 22 (-73.81%)
Mutual labels:  composer-package
koselig
💌 Seamlessly integrate Wordpress with Laravel.
Stars: ✭ 65 (-22.62%)
Mutual labels:  wordpress-library
laravel-binlog
Add mysql binlog event listening for Laravel ( 为Laravel框架添加Mysql Binlog事件监听 )
Stars: ✭ 19 (-77.38%)
Mutual labels:  composer-package
dudestack
A toolkit for creating a new professional WordPress project with deployments. Originally based on Roots/bedrock.
Stars: ✭ 82 (-2.38%)
Mutual labels:  wordpress-framework
aws-upload
🌈 A delicious CLI tool for uploading files to ec2
Stars: ✭ 39 (-53.57%)
Mutual labels:  composer-package
php-legal-licenses
A utility to help generate a file containing information about dependencies including the full license text.
Stars: ✭ 62 (-26.19%)
Mutual labels:  composer-package
leiphp
轻量级的 PHP MVC 框架 Lightweight MVC framework for simplistic PHP apps
Stars: ✭ 30 (-64.29%)
Mutual labels:  composer-package
Understrap
Understrap is the renowned open-source WordPress starter theme that combines Underscores with Bootstrap. Trusted by more than 100,000 developers.
Stars: ✭ 2,822 (+3259.52%)
Mutual labels:  wordpress-framework
wp-router
Enables developers to easily create custom routes with matching templates accordingly.
Stars: ✭ 22 (-73.81%)
Mutual labels:  wordpress-library

Underpin

The goal of Underpin is to provide a pattern that makes building PHP projects easier. It provides support for useful utilities that plugins need as they mature, such as a solid error logging utility, a batch processor for upgrade routines, and a decision tree class that makes extending and debugging multi-layered decisions way easier than traditional WordPress hooks.

Installation

Underpin can be installed in any place you can write code.

Via Composer

composer require underpin/underpin

Note This will add Underpin as a mu-plugin, but due to how WordPress handles must-use plugins, this does not actually add the plugin to your site. You must also manually require the file in a mu-plugin PHP file:

<?php

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Load Underpin, and its dependencies.
$autoload = plugin_dir_path( __FILE__ ) . 'vendor/autoload.php';

require_once( $autoload );

Manually

If you're developing Underpin directly, or simply don't want to use Composer, follow these steps to use:

  1. Clone this repository, preferably in the mu-plugins directory.
  2. Require Underpin.php, preferably as a mu-plugin.

I recently released the 3.0 version of this project, and unfortunately, with how I approached this build I did not document things as well as I should have. I KNOW shame on me. I'll get to it someday...

So many projects, so little time.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].