Compare commits

..

No commits in common. "master" and "3.0.0" have entirely different histories.

5 changed files with 10 additions and 17 deletions

View file

@ -3,18 +3,12 @@ workspace:
path: package path: package
matrix: matrix:
include: FLOW_VERSION:
- FLOW_VERSION: 7.3 - 7.3
PHP_VERSION: 7.4
- FLOW_VERSION: 7.3
PHP_VERSION: 8.1
- FLOW_VERSION: 8.2
PHP_VERSION: 8.1
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"

View file

@ -8,7 +8,6 @@ namespace DigiComp\FlowSessionLock\Annotations;
* @Annotation * @Annotation
* @Target({"METHOD"}) * @Target({"METHOD"})
*/ */
#[\Attribute(\Attribute::TARGET_METHOD)] final class ReadOnly
final class Unlock
{ {
} }

View file

@ -36,7 +36,7 @@ class ReadOnlyAspect
protected bool $readOnly = false; protected bool $readOnly = false;
/** /**
* @Flow\Around("methodAnnotatedWith(DigiComp\FlowSessionLock\Annotations\Unlock) || filter(DigiComp\FlowSessionLock\Aspects\ReadOnlyFilter)") * @Flow\Around("methodAnnotatedWith(DigiComp\FlowSessionLock\Annotations\ReadOnly) || filter(DigiComp\FlowSessionLock\Aspects\ReadOnlyFilter)")
* @param JoinPointInterface $joinPoint * @param JoinPointInterface $joinPoint
* @return mixed * @return mixed
*/ */

View file

@ -22,7 +22,7 @@ class ExampleController extends ActionController
/** /**
* @Flow\Session(autoStart=true); * @Flow\Session(autoStart=true);
* @FlowSessionLock\Unlock * @FlowSessionLock\ReadOnly
* @return string * @return string
*/ */
public function unprotectedByAnnotationAction() public function unprotectedByAnnotationAction()

View file

@ -3,9 +3,9 @@
"description": "Session locking for Neos Flow - it secures the session becoming corrupted by concurrent access to the same session by different requests", "description": "Session locking for Neos Flow - it secures the session becoming corrupted by concurrent access to the same session by different requests",
"type": "neos-package", "type": "neos-package",
"require": { "require": {
"neos/flow": "^7.3.0 | ^8.2", "neos/flow": "^7.3.0",
"php": "^7.4 | ^8.1", "php": ">=7.4",
"symfony/lock": "^5.2.0 | ^6.2.0" "symfony/lock": "^5.2.0"
}, },
"require-dev": { "require-dev": {
"ext-pcntl": "*" "ext-pcntl": "*"
@ -20,7 +20,7 @@
"package-key": "DigiComp.FlowSessionLock" "package-key": "DigiComp.FlowSessionLock"
}, },
"branch-alias": { "branch-alias": {
"dev-develop": "4.0.x-dev", "dev-develop": "3.0.x-dev",
"dev-version/2.x-dev": "2.1.x-dev" "dev-version/2.x-dev": "2.1.x-dev"
}, },
"applied-flow-migrations": [ "applied-flow-migrations": [