Download the PHP package mukadi/wordpress-bundle without Composer

On this page you can find all versions of the php package mukadi/wordpress-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package wordpress-bundle

MukadiWordpressBundle

This is a fork of EkinoWordpressbundle, this bundle adapt EkinoWordpressBundle to symfony >= 4 new architecture and features. Some features has been removed (such as automatic symfony authentication when authenticated in Wordpress...) and will be reintegrated as separated bundle to install if needed.

Here are some retained features:


Installation

Before install the bundle, edit your composer.json file and specify the following options:

Run php composer.phar require mukadi/wordpress-bundle and let Symfony Flex configure the bundle.

Bundle configuration

If your are not using symfony flex, you have to configure manually your bundle, here is the minimal bundle configuration:

Add a public/wp-config.php file

Put the following content in your public/wp-config.php file :

Update the public/index.php file

If you don't make modifications in your public/index.php file you can just copy the content of the generated 'sf-wp-bootstrap.php' (see the code below) into your index.php file, otherwise update your index.php accordingly to that file.

Here's what your index.php file should look like:

Add Wordpress routing into symfony

Add the WordpressBundle routing file in your config/routes.yaml, after your custom routes to catch all Wordpress routes:

Install Wordpress Plugins via Composer

Edit your composer.json file to add a custom repository:

Now you can install wordpress plugins, just run php composer.phar require wpackagist-plugin/<the-plugin-name>.

Avoid Doctrine remove custom Wordpress tables

When you install plugins in Wordpress, plugin can create custom tables to store specific data. By default such tables will be removed by the doctrine:migrations:diff command. You must configure doctrine/dbal to ignore those tables, just have to add the following configuration option to your doctrine configuration:

Manipulate Wordpress database in Symfony

You can call Wordpress table managers in Symfony by calling the following services:

Service identifier Type
mukadi_wordpress.manager.comment Wordpress comment manager
mukadi_wordpress.manager.comment_meta Wordpress comment metas manager
mukadi_wordpress.manager.link Wordpress link manager
mukadi_wordpress.manager.option Wordpress option manager
mukadi_wordpress.manager.post Wordpress post manager
mukadi_wordpress.manager.post_meta Wordpress post metas manager
mukadi_wordpress.manager.term Wordpress term manager
mukadi_wordpress.manager.term_relationships Wordpress term relationships manager
mukadi_wordpress.manager.term_taxonomy Wordpress taxonomy manager
mukadi_wordpress.manager.user Wordpress user manager
mukadi_wordpress.manager.user_meta Wordpress user metas manager

All of this services extends the Mukadi\Doctrine\CRUD\CRUD class, so see the documentation to know how to deal with it.


All versions of wordpress-bundle with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1.3
composer/installers Version ^1.5
phpoption/phpoption Version ^1.7
illuminate/support Version 5.7.*||6.7.*
vlucas/phpdotenv Version ^2.4||3.6.*
symfony/framework-bundle Version ^3.4||^4.0||^5.0
doctrine/doctrine-bundle Version ^1.0||^2.0
doctrine/orm Version ^2.2
hautelook/phpass Version 0.3
mukadi/doctrine-crud Version ^1.0
johnpbloch/wordpress Version 5.1
symfony/dotenv Version >=3.4
symfony/security-core Version >=3.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mukadi/wordpress-bundle contains the following files

Loading the files please wait ....