-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.36 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
{
"name": "pwm/s-flow",
"description": "A lightweight library for defining state machines",
"type": "library",
"keywords": [
"fsm",
"state-machine",
"workflow",
"event-sourcing"
],
"homepage": "https://github.com/pwm/s-flow",
"license": "MIT",
"authors": [
{
"name": "Zsolt Szende",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpstan/phpstan": "^0.10",
"phpunit/phpunit": "^6.1",
"infection/infection": "^0.10",
"vimeo/psalm": "^3.0"
},
"autoload": {
"psr-4": {
"Pwm\\SFlow\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pwm\\SFlow\\": "tests/unit/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --coverage-text",
"phpcs": "vendor/bin/phpcs --standard=PSR2 --warning-severity=0 src",
"phpcbf": "vendor/bin/phpcbf --standard=PSR2 --warning-severity=0 src",
"phpstan": "vendor/bin/phpstan analyse --ansi -l 7 src",
"infection": "vendor/bin/infection --ansi --only-covered",
"psalm": "vendor/bin/psalm --show-info=false"
}
}