-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.78 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "spryker/synchronization-behavior",
"type": "propel-behavior",
"description": "SynchronizationBehavior module",
"license": "proprietary",
"require": {
"php": ">=8.3",
"spryker/kernel": "^3.30.0",
"spryker/laminas": "^1.0.0",
"spryker/propel-orm": "^1.16.0",
"spryker/queue": "^1.1.2",
"spryker/synchronization": "^0.1.0 || ^0.2.0 || ^1.17.0"
},
"require-dev": {
"codeception/module-asserts": "^3.0.0",
"spryker/code-sniffer": "*",
"spryker/testify": "^3.47.0"
},
"autoload": {
"psr-4": {
"Spryker\\": "src/Spryker/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerTest\\": "tests/SprykerTest/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs-check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/ tests/",
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/ tests/",
"stan": "phpstan analyse",
"stan-setup": "cp composer.json composer.backup && COMPOSER_MEMORY_LIMIT=-1 composer require --dev phpstan/phpstan:^2.1.0 && mv composer.backup composer.json"
},
"extra": {
"name": "synchronization",
"class": "\\Spryker\\Zed\\SynchronizationBehavior\\Persistence\\Propel\\Behavior\\SynchronizationBehavior",
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"support": {
"source": "https://github.com/spryker/synchronization-behavior"
},
"include-path": [
"src/"
]
}