Compare commits
11 commits
Author | SHA1 | Date | |
---|---|---|---|
5e6f56552d | |||
6e7d100d51 | |||
3741781455 | |||
019bdcc9c7 | |||
fb9263ec68 | |||
cdded1c1e2 | |||
f9629557e4 | |||
69a860109e | |||
59229d8f3b | |||
7c8f8ff75a | |||
![]() |
dba037df7f |
5 changed files with 52 additions and 43 deletions
|
@ -3,5 +3,6 @@ pipeline:
|
||||||
image: composer
|
image: composer
|
||||||
commands:
|
commands:
|
||||||
- composer global config repositories.repo-name vcs https://git.digital-competence.de/Packages/php-codesniffer
|
- composer global config repositories.repo-name vcs https://git.digital-competence.de/Packages/php-codesniffer
|
||||||
|
- composer global config --no-plugins allow-plugins.dealerdirect/phpcodesniffer-composer-installer true
|
||||||
- composer global require digicomp/php-codesniffer:@dev
|
- composer global require digicomp/php-codesniffer:@dev
|
||||||
- composer global exec -- phpcs --runtime-set ignore_warnings_on_exit 1 --standard=DigiComp Classes/ Migrations/ Tests/
|
- composer global exec -- phpcs --runtime-set ignore_warnings_on_exit 1 --standard=DigiComp Classes/ Tests/
|
||||||
|
|
|
@ -3,12 +3,19 @@ workspace:
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
FLOW_VERSION:
|
include:
|
||||||
- 6.3
|
- FLOW_VERSION: 6.3
|
||||||
|
PHP_VERSION: 7.4
|
||||||
|
- FLOW_VERSION: 7.3
|
||||||
|
PHP_VERSION: 7.4
|
||||||
|
- FLOW_VERSION: 7.3
|
||||||
|
PHP_VERSION: 8.2
|
||||||
|
- FLOW_VERSION: 8.2
|
||||||
|
PHP_VERSION: 8.2
|
||||||
|
|
||||||
pipeline:
|
pipeline:
|
||||||
functional-tests:
|
functional-tests:
|
||||||
image: thecodingmachine/php:7.4-v4-cli
|
image: "thecodingmachine/php:${PHP_VERSION}-v4-cli"
|
||||||
environment:
|
environment:
|
||||||
# Enable the PDO_SQLITE extension
|
# Enable the PDO_SQLITE extension
|
||||||
- "PHP_EXTENSION_PDO_SQLITE=1"
|
- "PHP_EXTENSION_PDO_SQLITE=1"
|
||||||
|
@ -20,6 +27,6 @@ pipeline:
|
||||||
- "cd $NEOS_BUILD_DIR"
|
- "cd $NEOS_BUILD_DIR"
|
||||||
- "composer create-project --no-install neos/flow-base-distribution:^$FLOW_VERSION ."
|
- "composer create-project --no-install neos/flow-base-distribution:^$FLOW_VERSION ."
|
||||||
- "composer config repositories.repo-name path /woodpecker/package"
|
- "composer config repositories.repo-name path /woodpecker/package"
|
||||||
- "composer remove --dev neos/behat"
|
- "composer remove --dev --no-update neos/behat || composer remove --no-update neos/behat"
|
||||||
- "composer require digicomp/sequence:@dev"
|
- "composer require digicomp/sequence:@dev"
|
||||||
- "bin/phpunit --configuration Build/BuildEssentials/PhpUnit/FunctionalTests.xml Packages/Application/DigiComp.Sequence/Tests/Functional"
|
- "bin/phpunit --configuration Build/BuildEssentials/PhpUnit/FunctionalTests.xml Packages/Application/DigiComp.Sequence/Tests/Functional"
|
|
@ -1,8 +0,0 @@
|
||||||
# Changelog
|
|
||||||
All notable changes to this project will be documented in this file.
|
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
||||||
|
|
||||||
## [Unreleased]
|
|
||||||
Start of the changelog.
|
|
16
README.md
16
README.md
|
@ -1,18 +1,20 @@
|
||||||
# DigiComp.Sequence
|
# DigiComp.Sequence
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
This is a very simple tool, helping in generation of gapless sequences. For this task it relies on key integrity of the
|
This is a very simple tool, helping in generation of gapless sequences. For this task it relies on key integrity of the
|
||||||
database of your choice.
|
database of your choice.
|
||||||
|
|
||||||
Usage is quite simple also:
|
Usage is quite simple also:
|
||||||
|
|
||||||
```php
|
```php
|
||||||
/**
|
/**
|
||||||
* @param SequenceNumberGenerator $sequenceNumberGenerator
|
* @param SequenceGenerator $sequenceGenerator
|
||||||
*/
|
*/
|
||||||
public function __construct(SequenceNumberGenerator $sequenceNumberGenerator)
|
public function __construct(SequenceGenerator $sequenceNumberGenerator)
|
||||||
{
|
{
|
||||||
$this->orderId = $sequenceNumberGenerator->getNextNumberFor($this);
|
$this->orderId = $sequenceGenerator->getNextNumberFor($this);
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
`getNextNumberFor` allows you to give an object (which will be resolved to its FQCN) or a custom sequence name.
|
`getNextNumberFor` allows you to give an object (which will be resolved to its FQCN) or a custom sequence name.
|
||||||
|
|
|
@ -2,14 +2,33 @@
|
||||||
"name": "digicomp/sequence",
|
"name": "digicomp/sequence",
|
||||||
"description": "Sequence is a very simple database agnostic but database based sequence generator",
|
"description": "Sequence is a very simple database agnostic but database based sequence generator",
|
||||||
"type": "neos-package",
|
"type": "neos-package",
|
||||||
|
"keywords": [
|
||||||
|
"Neos",
|
||||||
|
"Flow",
|
||||||
|
"doctrine",
|
||||||
|
"sequence"
|
||||||
|
],
|
||||||
|
"homepage": "https://github.com/digital-competence/DigiComp.Sequence",
|
||||||
|
"license": "MIT",
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Ferdinand Kuhl",
|
||||||
|
"email": "f.kuhl@digital-competence.de",
|
||||||
|
"homepage": "https://www.digital-competence.de",
|
||||||
|
"role": "Developer"
|
||||||
|
}
|
||||||
|
],
|
||||||
"require": {
|
"require": {
|
||||||
|
"php": ">=7.4.0",
|
||||||
"ext-pdo": "*",
|
"ext-pdo": "*",
|
||||||
"neos/flow": "^6.3.5",
|
"neos/flow": "^6.3.5 || ^7.0 || ^8.0"
|
||||||
"php": ">=7.4"
|
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"ext-pcntl": "*",
|
"ext-pcntl": "*",
|
||||||
"phpunit/phpunit": "~8.5"
|
"mikey179/vfsstream": "^1.6.1",
|
||||||
|
"neos/buildessentials": "^7.0.0",
|
||||||
|
"phpunit/phpunit": "~8.5",
|
||||||
|
"vimeo/psalm": "~4.22.0"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
@ -21,15 +40,19 @@
|
||||||
"DigiComp\\Sequence\\Tests\\": "Tests/"
|
"DigiComp\\Sequence\\Tests\\": "Tests/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"config": {
|
||||||
|
"sort-packages": true,
|
||||||
|
"platform-check": true
|
||||||
|
},
|
||||||
"extra": {
|
"extra": {
|
||||||
"neos": {
|
|
||||||
"package-key": "DigiComp.Sequence"
|
|
||||||
},
|
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-develop": "4.0.x-dev",
|
"dev-develop": "4.0.x-dev",
|
||||||
"dev-version/2.x-dev": "2.1.x-dev",
|
"dev-version/2.x-dev": "2.1.x-dev",
|
||||||
"dev-version/1.x-dev": "1.1.x-dev"
|
"dev-version/1.x-dev": "1.1.x-dev"
|
||||||
},
|
},
|
||||||
|
"neos": {
|
||||||
|
"package-key": "DigiComp.Sequence"
|
||||||
|
},
|
||||||
"applied-flow-migrations": [
|
"applied-flow-migrations": [
|
||||||
"Inwebs.Basket-201409170938",
|
"Inwebs.Basket-201409170938",
|
||||||
"TYPO3.FLOW3-201201261636",
|
"TYPO3.FLOW3-201201261636",
|
||||||
|
@ -66,21 +89,5 @@
|
||||||
"Neos.Flow-20190425144900",
|
"Neos.Flow-20190425144900",
|
||||||
"Neos.Flow-20190515215000"
|
"Neos.Flow-20190515215000"
|
||||||
]
|
]
|
||||||
},
|
}
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Ferdinand Kuhl",
|
|
||||||
"email": "f.kuhl@digital-competence.de",
|
|
||||||
"homepage": "https://www.digital-competence.de",
|
|
||||||
"role": "Developer"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"homepage": "https://github.com/digital-competence/DigiComp.Sequence",
|
|
||||||
"keywords": [
|
|
||||||
"Neos",
|
|
||||||
"Flow",
|
|
||||||
"doctrine",
|
|
||||||
"sequence"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue