Download the PHP package tecnocen/yii2-workflow without Composer

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

Yii2 Workflow

Library to dynamically handle workflows in a database with ROA support.

Latest Stable Version Total Downloads

Travis Build Status Travis

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

The rest of the requirements are checked by composer when installing the repository on the next step.

Installation


You can use composer to install the library tecnocen/yii2-workflow by running the command;

composer require tecnocen/yii2-workflow

or edit the composer.json file

Deployment

Then run the required migrations

php yii migrate/up -p=@tecnocen/workflow/migrations

Which will install the following table structure

ROA Backend Usage


The ROA support is very simple and can be done by just adding a module version to the api container which will be used to hold the resources.

You can then access the module to check the available resources.

Which will implement CRUD functionalities for a workflow.

Process and Worklog


A process is an entity which changes from stage depending on a workflow. Each stage change is registered on a worklog for each process record.

To create a process its required to create a migrations for the process and the worklog then the models to handle them, its adviced to use the provided migration templates.

After running the migrations its necessary to create Active Record models.

Worklog Resource


Each process gets a worklog about the flow of stages it goes through.

On ROA you can declare each worklog as a child resource for the process resource

Running the tests

This library contains tools to set up a testing environment using composer scripts, for more information see Testing Environment section.

Break down into end to end tests

Once testing environment is setup, run the following commands.

Run tests.

Run tests with coverage.

Live Demo

You can run a live demo on a freshly installed project to help you run testing or understand the responses returned by the server. The live demo is initialized with the command.

Where :8000 is the port number which can be changed. This allows you call ROA services on a browser or REST client.

Use Cases

TO DO

Built With

Code of Conduct

Please read CODE_OF_CONDUCT.md for details on our code of conduct.

Contributing

Please read CONTRIBUTING.md for details on the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Considering SemVer for versioning rules 9, 10 and 11 talk about pre-releases, they will not be used within the Tecnocen-com.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

yii2-workflow


All versions of yii2-workflow with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1
tecnocen/yii2-roa Version ~0.5.0
tecnocen/yii2-rmdb Version *
yii2tech/ar-softdelete 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 tecnocen/yii2-workflow contains the following files

Loading the files please wait ....