-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.74 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.74 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "spryker/event-behavior",
"type": "propel-behavior",
"description": "EventBehavior module",
"license": "proprietary",
"require": {
"php": ">=8.3",
"spryker/event": "^2.4.0",
"spryker/event-dispatcher-extension": "^1.0.0",
"spryker/kernel": "^3.72.0",
"spryker/laminas": "^1.0.0",
"spryker/propel": "^3.47.0",
"spryker/propel-orm": "^1.16.0",
"spryker/symfony": "^3.1.0",
"spryker/transfer": "^3.39.0",
"spryker/util-encoding": "^2.1.0"
},
"require-dev": {
"codeception/module-asserts": "^3.0.0",
"phpunit/phpunit": "^12.1.0",
"spryker/application": "*",
"spryker/code-sniffer": "^0.17.1",
"spryker/config": "^3.5.0",
"spryker/console": "^3.2.0 || ^4.0.0",
"spryker/container": "^1.4.6",
"spryker/error-handler": "*",
"spryker/event-dispatcher": "^1.0.0",
"spryker/log": "*",
"spryker/monolog": "*",
"spryker/queue": "*",
"spryker/silex": "^2.0.0",
"spryker/testify": "^3.58.0"
},
"suggest": {
"spryker/console": "If you want to execute console commands",
"spryker/container": "If you want to use the EventBehaviorEventDispatcherPlugin",
"spryker/event-dispatcher": "If you want to use the EventBehaviorEventDispatcherPlugin",
"spryker/silex": "^2.0.0"
},
"autoload": {
"psr-4": {
"Spryker\\": "src/Spryker/",
"SprykerTest\\Zed\\EventBehavior\\Helper\\": "tests/SprykerTest/Zed/EventBehavior/_support/Helper/"
}
},
"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 --ignore=/tests/app/ src/ tests/",
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml --ignore=/tests/app/ src/ tests/",
"stan": "phpstan analyse",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^2.1.0 && mv composer.backup composer.json",
"test": "codecept build && codecept run"
},
"extra": {
"name": "event",
"class": "\\Spryker\\Zed\\EventBehavior\\Persistence\\Propel\\Behavior\\EventBehavior",
"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/event-behavior"
},
"include-path": [
"src/"
]
}