Download the PHP package symplify/monorepo-builder without Composer

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

Not only Composer tools to build a Monorepo

Downloads total

Do you maintain a monorepo with more packages?

This package has few useful tools, that will make that easier.

Install

Usage

1. Are you New to Monorepo?

The best to lean-in fast is to read basic intro at blog post All You Always Wanted to Know About Monorepo. We also made a simple command to make that easy for you:

And the basic setup is done!

2. Merge local composer.json to the Root One

Merges configured sections to the root composer.json, so you can only edit composer.json of particular packages and let script to synchronize it.

Sections that are needed for monorepo to work will be merged:

To merge run:


Typical location for packages is /packages. But what if you have different naming or extra /projects directory?

3. Bump Package Inter-dependencies

Let's say you release symplify/symplify 4.0 and you need package to depend on version ^4.0 for each other:

4. Keep Synchronized Package Version

In synchronized monorepo, it's common to use same package version to prevent bugs and WTFs. So if one of your package uses symfony/console 3.4 and the other symfony/console 4.1, this will tell you:

5. Keep Package Alias Up-To-Date

You can see this even if there is already version 3.0 out:

Not good. Get rid of this manual work and add this command to your release workflow:

This will add alias 3.1-dev to composer.json in each package.

If you prefer 3.1.x-dev over default 3.1-dev, you can configure it:

6. Split Directories to Git Repositories

Thanks to GitHub Actions, this was never simpler to set up. Use symplify/github-action-monorepo-split.

How to configure it? See our local setup at .github/workflows/split_monorepo.yaml

7. Release Flow

When a new version of your package is released, you have to do many manual steps:

But what if you forget one or do it in wrong order? Everything will crash!

The release command will make you safe:

And add the following release workers to your monorepo-builder.php:

These TagVersionReleaseWorker and PushTagReleaseWorker are enabled by default. If you want to disable these default workers, you can use the following code.

You can also include your own workers. Just add services that implements ReleaseWorkerInterface. Are you afraid to tag and push? Use --dry-run to see only descriptions:

Do you want to release next patch version, e.g. current v0.7.1 → next v0.7.2?

You can use minor and major too.


All versions of monorepo-builder with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
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 symplify/monorepo-builder contains the following files

Loading the files please wait ....