Download the PHP package forme/base without Composer

On this page you can find all versions of the php package forme/base. 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 base

Forme Base

A Forme framework base server project boilerplate for local development and server deployment.

Click here for Documentation

Description

This is pretty similar in scope to Bedrock, but it has a slightly different philosophy.

The main aims are:

  1. Provide an easy to use boilerplate for use with Forme WordPress projects.
  2. Put WordPress into a public web root directory, but otherwise leave the standard WP folder structure exactly as it is.
  3. Use composer to manage WordPress plugins, WordPress themes and general PHP libraries, but NOT WordPress itself beyond the initial installation.
  4. Not a mono repo. It's meant as a starting point for the root part of your WordPress project. Your custom themes and plugins themselves should live in their own separate git repos and eventually be made available for composer via a Packagist or Satis repository.
  5. Leverage npm workspaces to enable us to build assets across all themes and plugins.

You can use this for your local development environment or for deployments.

Requirements

Getting Started

You can run composer create-project forme/base project-name to create a new project on your local machine. This will:

  1. Install the latest version of WordPress into the public folder (requires wp cli, curl or wget)
  2. Add the wp-packagist composer repository
  3. Install the wikimedia merge plugin so that we can pull in plugin and theme dependencies into the main vendor folder
  4. Add the correct installer paths for plugins and themes if pulled in via composer
  5. Install ACF (not the pro version)
  6. Install the Symfony var-dumper component
  7. Install Whoops error Pages
  8. Install WP debug bar
  9. Initialise wp-config.php, including prompting for your DB credentials, adding the FORME_PRIVATE_ROOT const, setting WP_ENV to development and requiring autoload. (requires wp cli)
  10. Create a blank .env file
  11. Include package.json including basic workspaces configuration

You will then want to:

You might need to delete composer.lock before installing any plugins or themes which depend on the merge plugin feature for the first time.

Deployment

On a server you typically need to:

Scripts

The following custom scripts are available via composer.

On create-project the post-root-package-install hook runs setup-wordpress and init-dotenv (i.e. all of the above)

On install and update, the post-install-cmd and post-update-cmd hooks run npm i --omit=dev && npm run build -ws. You may want to disable this on your local machine, especially if you're not symlinking your development themes and plugins, as it will run on every composer update.

Workspaces

npm Workspaces allow us to install node packages and run asset builds from the server root across all plugins and themes, or more specifically, those whose directory name end with -plugin and -theme respectively (as is default for Forme), and that have a package.json with any necessary npm commands defined. The main node_modules directory should be in the root repo directory.

One thing to bear in mind is that this all runs naively, so if you have some third party plugin or theme installed whose directory name ends in -plugin or -theme that contains npm scripts, they will run, which you might not want. Have a look at package.json if you need to change the configuration.

npm install --omit=dev will run across all matching themes and plugins.

npm run build -ws will run build in all matching themes and plugins.

These commands should run automatically on composer update/install, but you can also run them directly.

Valet Driver

If you use Valet for local development, we've got a driver for that. You should cp this into your local valet configuration if you haven't already:

Wikimedia Merge Plugin

The wikimedia/composer-merge-plugin plugin is configured to look for plugins and themes who's directory name ends in -plugin and -theme respectively. This is currently the default naming pattern for forme plugin and theme projects, but you could change this logic if needed.

It matches naively so even in a forme project, you might want to configure this differently if you happen to be using a plugin or theme whose directory name ends in -plugin or -theme that you don't want to merge (or you could simply change the directory name to something else)

Inlined Composer

If you have an existing vanilla WordPress installation for whatever reason, and you just want to set things up so you can use the Forme framework, or even just to use composer to manage your WordPress project dependencies, you can copy utils/composer.json into your project root folder. Again, this is one up from the public web root.

You might need to edit the file if your web root is not called public, just run a find and replace.

This version of the composer.json file includes the same scripts as the root version but inlined rather than relying on any external files. It is mainly included for convenience - it means you can copy just this single file into another project without worrying about any of the other directories and files in here, and still have access to the commands listed above.

It's generated by scripts/inline_composer.sh - have a look in there if you're working on or forking this repo and need to add other shell scripts to inline.


All versions of base with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
composer/installers Version ^2.2
wikimedia/composer-merge-plugin Version ^2.0
wpackagist-plugin/advanced-custom-fields Version ^6.0
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 forme/base contains the following files

Loading the files please wait ....