Download the PHP package meeva/create-vendor without Composer

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

create-vendor (composer plugin)

composer plugin to quickly create new modules within your project.

What it does / Why do you may need it

Since Symonfy 4 it is no longer recommended to split your application your project into multiple bundles within your application. You may either build one complex application, or you swap out reusable bundles into separate composer packages.

While composer makes it simple to require an existing package, it is somehow impractical to create a new one to develop within your project:

The Solution

This plugins helps you to create a new composer package directory and correctly require it with just one command. Using this method your vendor/yourvendor/newpackage/composer.json is applied as expected:

Installation

Usage

Within your composer-managed application-project (e.g. a Symfony 4 Application), just type:

How does it work

The create-vendor command just chains 2 composer commands for you:

  1. chdir to $HOME/.composer/plugin/create-vendor/yourvendor/newpackage and
    composer init --name=yourvendor/newpackage
  2. chdir back to your project and
    composer require yourvendor/newpackage

In addition it adds a transparent ()repository without modifying your composer.json) that provides every project from the directory $HOME/.composer/plugin/create-vendor/*/* as a path-repository. This has the same effect as adding the following snippet to your global composer.json:

This symlinks the path to your project/vendor-directory. For more information read: https://getcomposer.org/doc/05-repositories.md#path

Bonus: You may manually copy any composer package to $HOME/.composer/plugin/create-vendor/*/ to make it available for requiring without additional changes to any composer.json.

When you are done

First assure that you have published your new package.

After that you may delete the directory $HOME/.composer/plugin/create-vendor/yourvendor/newpackage. From now on composer install/update should load your package from the external repository (e.g. packagist.org) as usual.


All versions of create-vendor with dependencies

PHP Build Version
Package Version
Requires composer-plugin-api Version ^1.1
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 meeva/create-vendor contains the following files

Loading the files please wait ....