-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.01 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
{
"name": "noem/state-machine",
"description": "An event-based finite state machine with support for hierarchical and parallel states",
"license": "proprietary",
"authors": [
{
"name": "biont",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"symfony/yaml": "^5.4",
"nette/schema": "^1.3",
"psr/container": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^11.4",
"mockery/mockery": "^1.4",
"squizlabs/php_codesniffer": "^3.11",
"noem/composer-file-embed": "dev-master",
"spatie/phpunit-watcher": "^1.23"
},
"autoload": {
"psr-4": {
"Noem\\State\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Noem\\State\\Test\\": "tests/PHPUnit"
}
},
"config": {
"allow-plugins": {
"noem/composer-file-embed": true
}
}
}