-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 927 Bytes
/
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
{
"name": "serverlessworkflow/sdk",
"description": "Provides the PHP API/SPI for the Serverless Workflow Specification.",
"type": "library",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Serverless\\Workflow\\": "src/"
}
},
"authors": [
{
"name": "Serverless Workflow Specification Authors"
}
],
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^10.4",
"rector/rector": "^0.18.10",
"symplify/easy-coding-standard": "^11.1"
},
"require": {
"symfony/yaml": "^6.3",
"phpdocumentor/reflection-docblock": "^5.3",
"swaggest/json-schema": "^0.12.42"
},
"scripts": {
"rector": "vendor/bin/rector",
"ecs": "vendor/bin/ecs check --fix",
"stan": "vendor/bin/phpstan analyse src tests",
"test": "phpunit --testdox"
}
}