Download the PHP package nemo64/environment without Composer

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

Build Status Latest Stable Version Total Downloads License

a basic php development environment

This composer plugin aims to be an assist in building your base environment in potentially multiple projects.

It does that by providing apis to define common config files. It is also highly extendable so you can add your own configurations for what your needs are.

start a new project

Now control your environment using make. To see what you can do run make help. Basically you want to run make start to start your local server and make stop to stop it. Your webserver is by default available under localhost:80.

what files are created and by what

how it works

Other than most scaffold projects, this is a composer plugin and aims to not only create your base files but also to update them.

This plugin will run on every composer install and composer update, checks if some conditions have changed and potentially updates some files. For example:

These is just the basic functionality. You can implement your own rules by creating a class extending the ConfiguratorInterface. In this class you'll be able to either create your own files or configure the already existing Configurators eg. to add more gitignore rules.

extend functionality

Configurators aren't limited to other composer-plugins. You can add them to your root project or even other libraries if they need to add something to a project outside their folder. If you need to add a file to the projects .gitignore file, you can simply add your own Configurator like this:

And hint to the file in your composer.json:

Done. Your configure method will be called every time you use composer. You can check if other extensions get installed, read config files. Even ask the user questions using io (but be sure those are only asked once).

Guideline

If you want your configurator to be useful, make sure it is highly adaptive. The GitignoreConfigurator won't remove rules you have made and even preserves comments. Therefor an outside user does not have to learn a new way of configuring a file that is right there. He just adds a rule and it works as expected.


All versions of environment with dependencies

PHP Build Version
Package Version
Requires php Version 7.1.* || 7.2.*
composer-plugin-api Version ^1.1
webmozart/path-util Version ^2.3
symfony/yaml Version >= 2.8, < 5.0
symfony/options-resolver Version >= 2.6, < 5.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 nemo64/environment contains the following files

Loading the files please wait ....