Download the PHP package indragunawan/sequence-bundle without Composer

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

Sequence Bundle

Documentation

Installation

Step 1: Download bundle

If your project already uses Symfony Flex, execute this command to download, register and configure the bundle automatically:

If you install without using Symfony Flex, first add the bundle by using composer then enable the bundle by adding new Indragunawan\SequenceBundle\IndragunawanSequenceBundle() to the list of registered bundles in the app/AppKernel.php file of your project

Step 2: Create your Sequence class

Step 3: Configure the bundle

Step 4: Update your database schema

Usage

Insert your sequence manually to sequence table in database

Field Data Type Required Properties Description
name string true unique Sequence name that use while you call in service manager
format string false - The format of text or string you want to be generate by service manager
last_value int false - The last value of the sequence
start_value int true - The start value for the sequence
increment_by int true - The increment of sequence value
last_reset datetime false - The date and time that sequence last restart

Format

For format you can see table below:

Format Value Result
null 1 1
'' 2 2
{{NUMBER|3|0}} 3 003
{{ABC}} ['ABC' => 'abcVal'] abcVal
{{NUMBER|5|A}} 4 AAAA4
{{NUMBER|5|A|0}} 5 AAAA5
{{NUMBER|5|A|1}} 6 6AAAA
{{NUMBER|5|A|2}} 7 AA7AA
{{NUMBER|lower|5|A}} 8 aaaa8
{{NUMBER|ucfirst|5|abc}} 9 Abca9
{{NUMBER|upper|5|a|2}} 8 AA8AA
{{y}} - date('y')
{{m}} - date('m')
{{d}} - date('d')

Reserved Placeholder

Example

format value result
INV/{{NUMBER|3|0}}/{{ABC}} 1, ['ABC'=>'TEST'] INV/001/TEST
INV/{{NUMBER|3|0}} 1 INV/001
INV/{{NUMBER|4|A}} 1 INV/AAA1

another example can be see in Tests/Utils/PlaceholderReplacerTest.php

SequenceManager

NOTE: Sequence manager can only be use inside doctrine transaction

Call in Controller

Call in Event Listener

ResetCounter

You can put this command into Crontab for periodically restart the counter.

License

This bundle is under the MIT license. See the complete license


All versions of sequence-bundle with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1.3
doctrine/doctrine-bundle Version ^1.6.10 || ^2.0
doctrine/orm Version ^2.5.11
symfony/config Version ^3.4 || ^4.0 || ^5.0
symfony/console Version ^3.4||^4.0 || ^5.0
symfony/dependency-injection Version ^3.4 || ^4.0 || ^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 indragunawan/sequence-bundle contains the following files

Loading the files please wait ....