-
Notifications
You must be signed in to change notification settings - Fork 190
/
Copy pathcomposer.json
57 lines (57 loc) · 1.45 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "yohang/finite",
"description": "A simple PHP Finite State Machine",
"keywords": [
"statemachine",
"workflow",
"state",
"transition",
"symfony",
"bundle"
],
"homepage": "https://github.com/yohang/Finite",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Yohan Giarelli",
"email": "[email protected]",
"homepage": "http://yohan.giarel.li"
}
],
"require": {
"php": ">=8.1",
"symfony/property-access": ">=5.4,<8",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5.40",
"symfony/var-dumper": ">=5.4,<8",
"twig/twig": "^3.4",
"vimeo/psalm": "dev-master@dev",
"symfony/http-kernel": ">=5.4,<8",
"symfony/framework-bundle": ">=5.4,<8",
"symfony/event-dispatcher": ">=5.4,<8",
"symfony/stopwatch": ">=5.4,<8",
"symfony/twig-bundle": ">=5.4,<8",
"symfony/browser-kit": ">=5.4,<8",
"symfony/css-selector": ">=5.4,<8",
"symfony/console": ">=5.4,<8",
"friendsofphp/php-cs-fixer": "^3.68"
},
"autoload": {
"psr-4": {
"Finite\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Finite\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.0.x-dev"
}
}
}