Download the PHP package phase2/octane without Composer

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

Octane

This is a composer project used to spin up a starting instance of Drupal 8 Octane. Octane is a Drupal 8 project scaffold that provides the following features:

Installation

To create a Drupal Octane project clone this repository to a directory named for your project.

Scripts for managing your site are located in the bin folder:

To initialize your Drupal project, run the init script. It takes an optional argument to specify which "profile" to install. By default the "Lightning" profile will be used. Other options are "standard" or "minimal".

This will create the docker containers, create a database, and install Drupal. Your site will be available at projectname.docksal for Docksal or projectname.vm for Outrigger.

Docksal example:

Outrigger example:

If configuration files are detected in the src/config/default directory, the site will be installed using this existing config and the profile argument will be ignored.

Custom Project Scripts

Custom scripts for your project should be created in the /bin folder and then referenced from either Outrigger or Docksal.

For Docksal, create a file within .docksal/commands that performs any specific Docksal setup and then calls the script in /bin. See the init command for an example.

For Outrigger, edit the .outrigger.yml file and add a custom script with any specific Outrigger setup and then call the script in /bin. See the rig project init script for an example.

This will create the docker containers, create a database, and install Drupal.

Common Commands

Each of these commands are available as either a fin COMMAND or rig project COMMAND.

Docker Containers

Outrigger uses the full docker-composer.yml (and docker-compose.override.yml locally) to define the docker containers, whereas Docksal defines a default stack and allows you to override the configuration in .docksal/docksal.yml which uses the same docker-compose syntax but only needs to contain the local overrides.

Default environment variables for Outrigger are defined in the .env file while Docksal uses the .docksal/docksal.env file.

The following containers will be created and used for your site:

Build/CLI Container

One of the main priciples of Octane is to minimize the number of tools installed on your local computer (only Composer) and instead perform most tasks within a docker "build" container that contains all the tools.

In Outrigger, this Build container is defined in the build.yml docker-compose file. Various application specific containers are build on the "base" container for drush, composer, and generic cli commands. To run a script within the build container, use the command syntax:

Typically you will create a rig project SCRIPTNAME alias for this in the .outrigger.yml file or create a local alias in your own .bashrc file. For example:

for running drush within the build container.

To open a bash shell into the Outrigger Build container, use

In DockSal, the Build container is called cli and is defined within the default services stack, much like web or db and can be overridden using the docksal.yml file. Docksal provides its own set of aliases for common applications such as fin drush, fin composer, etc. To run a script within the build container, use the command syntax:

To open a bash shell into the Docksal Build/CLI container, use

When creating a custom command for Docksal in the .docksal/commands directory, you can add the comment

to the top of your script command file to cause it to be executed within the Build/CLI container instead of running locally.


All versions of octane with dependencies

PHP Build Version
Package Version
Requires acquia/lightning Version ^4.0@alpha
composer/installers Version ^1.0
cweagans/composer-patches Version ^1.6
drupal-composer/drupal-scaffold Version ^2.0.0
drupal/chosen Version ^2.4
drupal/components Version ^1.0
drupal/config_split Version ^1.1
drupal/field_group Version ^1.0
drupal/paragraphs Version ^1.2
drupal/redirect Version ^1.0@beta
drupal/restui Version ^1.0
drupal/search_api_solr Version ^2.1
drupal/twig_extender Version ^2.0
drupal/twig_field_value Version ^1.1
drupal/twig_tweak Version ^1.9
harvesthq/chosen Version ^1.7
kporras07/composer-symlinks Version ^0.1.0@dev
roave/security-advisories Version dev-master
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 phase2/octane contains the following files

Loading the files please wait ....