-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.59 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
{
"name": "mrhash/taskmachine",
"type": "library",
"description": "Modular micro-service task pipelining & orchestration with validated state machine integrity.",
"keywords": ["modular", "micro service", "task", "pipeline", "state machine", "fsm", "auryn", "php", "orchestration"],
"license": "MPL-2.0",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/MrHash/workflux"
}
],
"require": {
"php": "^7.0",
"shrink0r/workflux": "master@dev",
"rdlowrey/auryn": "^1",
"symfony/yaml": ">=2"
},
"require-dev": {
"phpunit/phpunit": ">=7",
"squizlabs/php_codesniffer": ">=2",
"vimeo/psalm": ">=2"
},
"prefer-stable": true,
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"TaskMachine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TaskMachine\\Tests\\": "tests/"
}
},
"archive": {
"exclude": [
"/build",
"/vendor"
]
},
"scripts": {
"code-sniffer": "phpcs -p -s --extensions=php --standard='PSR1,PSR2' src tests",
"code-sniffer-autofix": "phpcbf --standard=PSR2 -d tabWidth=4 src tests",
"sniff": [
"@code-sniffer",
"@validate-json",
"psalm"
],
"tests": ["@unit-test"],
"unit-test": "phpunit --no-coverage",
"validate-deps": "composer validate --with-dependencies --strict",
"validate-json": "composer validate --no-check-all --no-check-lock"
}
}