-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.6 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
58
59
60
{
"name": "sonsofphp/state-machine",
"type": "library",
"description": "Basic, yet powerful, state machine",
"keywords": [
"state-machine",
"state machine"
],
"homepage": "https://github.com/SonsOfPHP/state-machine",
"license": "MIT",
"authors": [
{
"name": "Sons of PHP Community",
"homepage": "https://github.com/SonsOfPHP/sonsofphp/graphs/contributors"
},
{
"name": "Joshua Estes",
"email": "joshua@sonsofphp.com"
}
],
"support": {
"issues": "https://github.com/SonsOfPHP/sonsofphp/issues",
"forum": "https://github.com/orgs/SonsOfPHP/discussions",
"docs": "https://docs.sonsofphp.com"
},
"autoload": {
"psr-4": {
"SonsOfPHP\\Component\\StateMachine\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"sonsofphp/event-dispatcher": "0.3.x-dev",
"sonsofphp/state-machine-contract": "0.3.x-dev"
},
"provide": {
"sonsofphp/state-machine-implementation": "0.3.x-dev"
},
"extra": {
"sort-packages": true,
"branch-alias": {
"dev-main": "0.3.x-dev"
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/JoshuaEstes"
},
{
"type": "tidelift",
"url": "https://tidelift.com/subscription/pkg/packagist-sonsofphp-sonsofphp"
}
]
}