Download the PHP package oxid-professional-services/oxid-console without Composer

On this page you can find all versions of the php package oxid-professional-services/oxid-console. 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 oxid-console

OXID PS Console

OXID PS Console is a Symfony console application for OXID eShop. It is community and project driven with write and read access like in a public wiki (like Wikipedia).

The following commands are available:

For backwards compatibility the following commands are still available (but are deprecated):

Which version to get?

OXID Version OXID Console version Source Code link Download link
<4.9.0, <5.2.0 1.1.5 Source Code Download ZIP
>=4.9.0, >=5.2.0 1.2.6 Source Code Download ZIP
=6.1.x 6.0 Source Code please use composer to install see next section
=6.2.x - use with care oxid console is not designed to be used with oxid 6.2 for now

Installation

Use Composer to add the console to your project

Getting started

Defining your own command

Template for your command:

For more examples please see https://symfony.com/doc/current/components/console.html

Migrations

Warning current implementation does not trigger the oxid core migration "oe-eshop-doctrine_migration"

OXID Console project includes migration handling. Lets generate sample migration by running vendor/bin/oxid migration:generate "add amount field to demo module".

Console application generated migration/20140312161434_addamountfieldtodemomodule.php file with its contents:

Migration handler can run migrations with your given timestamp (if no timestamp provided than it assumes timestamp as current timestamp). Inside it saves which migration queries were executed and knows which migration queries go up or go down.

Once we generated this file we run vendor/bin/oxid migration:run

Now lets run the same command a second time

Note: No migration scripts were ran

Ok, now lets run migrations with given timestamp of the past with vendor/bin/oxid migration:run 2013-01-01 command

It ran our migration query down because on given timestamp we should not have had executed that migration query.

Example

Here is a quick example of migration query which adds a column to oxuser table

Migration Query Law

Note: It is better to use generator for migration queries creation

Related Projects


All versions of oxid-console with dependencies

PHP Build Version
Package Version
Requires oxid-esales/oxideshop-ce Version ^v6.0.0
php Version ^7.1
ext-json Version *
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 oxid-professional-services/oxid-console contains the following files

Loading the files please wait ....