Download the PHP package fostermadeco/genly without Composer

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

[DEPRECATED] Genly

Genly is a utility for managing a shared Docker network and other common services for local development environments. It is heavily inspired by Dash.

Like Rokanan, it is named after an Ursula Le Guin character.

Prerequisites

Installation

Install Genly globally with Composer by running

Genly requires several Symfony components at version ^4.4, because this is the current Symfony LTS version.

This means you will have to upgrade Rokanan in order to have them installed side-by-side. Run

This will install a new version of Rokanan with the same requirements as Genly. If you require any conflicting Symfony components at ^3.4 in your root global project (as described in the Rokanan README, you will have to remove them first.

Features

Genly will create its own Docker network and, upon initialization, will create a number of common Docker containers. These include,

  1. An nginx proxy, so that multiple web projects can be accessed via project-specific domain names instead of localhost.
  2. A dnsmasq resolver that will route .test requests to the nginx proxy; this will not interfere with any .test entries in /etc/hosts.
  3. A mailhog container that can be accessed at https://mailhog.test. Web containers should be configured to send mail to mailhog (the service name).
  4. A MySQL 5.7 container that can be accessed from other containers on the network at mysql57. It can also be accessed via MySQL clients like SequelPro or Querious at 127.0.0.1:3307.
  5. A Postgres 12 container that can be accessed from other containers on the network at postgres. It can also be accessed at 127.0.0.1:5433 by Postgres clients — TablePlus works well.

To be compatible with Genly, a project should contain a docker-compose.yml file that defines a web service and a node service. It can include any other services, but these are the minimally required ones.

Commands

This command will create the genly network and all of the above containers.

This command will create any services defined in your project docker-compose.yml file.

In Docker projects, commands should only be run inside containers and not on the host machine. To make things easier, genly also has the following two convenience commands to ensure composer and npm commands are run through the web and node service, respectively.

For example, genly composer install --no-dev --no-scripts --classmap-authoritative will run composer install --no-dev --no-scripts --classmap-authoritative in the web container.

For example, genly npm install will run npm install in the node container.

With Webpack and BrowserSync configured correctly, genly npm run watch can even be run, with live-reloading available at https://sync.example.test.

Example docker-compose file

Here is a basic docker-compose file.


All versions of genly with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1.3
ext-json Version *
symfony/console Version ^4.4
symfony/process Version ^4.4
symfony/filesystem Version ^4.4
symfony/yaml Version ^4.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 fostermadeco/genly contains the following files

Loading the files please wait ....