-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.18 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": "noem/state-machine-loader",
"description": "Constructs usable state machine instances from various data sources (Array, JSON,YAML)",
"license": "MIT",
"authors": [
{
"name": "biont",
"email": "[email protected]"
}
],
"require": {
"justinrainbow/json-schema": "^5.2",
"nette/schema": "^1.2",
"noem/state-machine-interface": "dev-master",
"psr/container": "^1.0 || ^2.0",
"symfony/yaml": "^5.3"
},
"require-dev": {
"noem/state-machine": "dev-master",
"phpunit/phpunit": "^9.1",
"mockery/mockery": "^1.4",
"squizlabs/php_codesniffer": "^3.6",
"noem/composer-file-embed": "dev-master"
},
"autoload": {
"psr-4": {
"Noem\\State\\Loader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Noem\\State\\Loader\\Tests\\": "tests/PHPUnit/src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"noem/composer-file-embed": true
},
"preferred-install": {
"noem/*": "source",
"*": "dist"
}
}
}