Compare commits
No commits in common. "6e7d100d51c50d42a7a6066529a1a997bbce65b2" and "dba037df7f555c17b559e16528642a5d77ca8c4f" have entirely different histories.
6e7d100d51
...
dba037df7f
5 changed files with 21 additions and 23 deletions
|
@ -3,6 +3,5 @@ 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/ Tests/
|
- composer global exec -- phpcs --runtime-set ignore_warnings_on_exit 1 --standard=DigiComp Classes/ Migrations/ Tests/
|
||||||
|
|
|
@ -3,19 +3,12 @@ workspace:
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
FLOW_VERSION:
|
||||||
- FLOW_VERSION: 6.3
|
- 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:${PHP_VERSION}-v4-cli"
|
image: thecodingmachine/php:7.4-v4-cli
|
||||||
environment:
|
environment:
|
||||||
# Enable the PDO_SQLITE extension
|
# Enable the PDO_SQLITE extension
|
||||||
- "PHP_EXTENSION_PDO_SQLITE=1"
|
- "PHP_EXTENSION_PDO_SQLITE=1"
|
||||||
|
@ -27,6 +20,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 --no-update neos/behat || composer remove --no-update neos/behat"
|
- "composer remove --dev 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"
|
8
CHANGELOG.md
Normal file
8
CHANGELOG.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# 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,20 +1,18 @@
|
||||||
# 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 SequenceGenerator $sequenceGenerator
|
* @param SequenceNumberGenerator $sequenceNumberGenerator
|
||||||
*/
|
*/
|
||||||
public function __construct(SequenceGenerator $sequenceNumberGenerator)
|
public function __construct(SequenceNumberGenerator $sequenceNumberGenerator)
|
||||||
{
|
{
|
||||||
$this->orderId = $sequenceGenerator->getNextNumberFor($this);
|
$this->orderId = $sequenceNumberGenerator->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.
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"type": "neos-package",
|
"type": "neos-package",
|
||||||
"require": {
|
"require": {
|
||||||
"ext-pdo": "*",
|
"ext-pdo": "*",
|
||||||
"neos/flow": "^6.3.5 | ^7.0 | ^8.0",
|
"neos/flow": "^6.3.5",
|
||||||
"php": ">=7.4"
|
"php": ">=7.4"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
|
|
Loading…
Add table
Reference in a new issue