-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.2 KB
/
composer.json
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
{
"name": "star/state-machine",
"description": "PHP implementation of a configurable State Machine, Workflow, transitions for your domain models",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Yannick Voyer"
}
],
"autoload": {
"psr-4": {
"Star\\Component\\State\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Star\\Component\\State\\": "tests",
"Star\\Component\\State\\Example\\": "examples"
}
},
"require": {
"php": "^7.4|^8.0",
"webmozart/assert": "^1.0",
"symfony/event-dispatcher": "^4.0|^5.0|^6.0"
},
"require-dev": {
"ext-pdo": "*",
"doctrine/annotations": "^1.13",
"doctrine/orm": "^2.5",
"infection/infection": "~0.13",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.2",
"symfony/cache": "^4.0|^5.0|^6.0"
},
"config": {
"bin-dir": "bin",
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}