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 multiple packages?

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

Install

Requirements:

For older PHP versions:

Usage

1. Are you New to Monorepo?

If you're new to monorepos, you can start with a basic setup using our initialization command:

This creates a basic monorepo structure with the necessary configuration files.

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 will be merged from packages to root:

To merge run:


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

You can split packages from your monorepo into separate repositories using GitHub Actions. Use symplify/github-action-monorepo-split for this purpose.

For configuration examples, you can refer to the GitHub Action workflow documentation.

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.

Available Commands

Here are all available commands you can use with monorepo-builder:

To see detailed help for any command, run:


All versions of monorepo-builder with dependencies

PHP Build Version
Package Version
Requires php Version >=8.2
nette/utils Version ^4.0.5
phar-io/version Version ^3.2
sebastian/diff Version ^6.0 || ^7.0
symfony/config Version ^7.0
symfony/console Version ^7.0
symfony/dependency-injection Version ^7.0
symfony/filesystem Version ^7.0
symfony/finder Version ^7.0
symfony/http-kernel Version ^7.0
symfony/process Version ^7.0
webmozart/assert Version ^1.11
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 ....