-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.15 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
{
"name": "jeyroik/extas-workflow",
"description": "Extas workflow package",
"require": {
"jeyroik/extas-repositories-fields-sample-names": "0.*",
"jeyroik/extas-foundation": "5.*",
"jeyroik/extas-errors": "0.*",
"jeyroik/extas-fields-conditions": "1.*",
"jeyroik/extas-values-self": "0.*",
"jeyroik/extas-values-repository-items": "1.*",
"jeyroik/extas-repositories-get": "0.*",
"jeyroik/extas-repositories": "0.*",
"jeyroik/extas-installer-plugins": "0.*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"vlucas/phpdotenv": "^3.4",
"jeyroik/extas-repositories-mongo": "1.*",
"jeyroik/extas-snuffbox": "0.*",
"jeyroik/extas-snuffbox-repositories": "0.*",
"phpstan/phpstan": "0.*"
},
"suggest": {
"jeyroik/extas-workflow-dashboard": "JSON PRC API for a Workflow",
"jeyroik/extas-workflow-dispatchers": "Default transition dispatchers"
},
"autoload": {
"psr-4": {
"extas\\": "src/",
"tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --testdox --coverage-clover=coverage.xml --whitelist=src tests",
"stan": "vendor/bin/phpstan analyse -l 5 src"
}
}