-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.64 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
56
{
"name": "scrumworks/openapi-schema",
"description": "OpenAPI schema reader/generator",
"license": "MIT",
"type": "library",
"keywords": ["openapi"],
"authors": [
{
"name": "Tomas Lang",
"email": "[email protected]"
}
],
"require": {
"ext-json": "*",
"nette/di": "^3.0",
"nette/utils": "^3.1 || ^4.0.4",
"php": ">=8.1",
"scrumworks/property-reader": "^0.8"
},
"require-dev": {
"phpunit/phpunit": "^11",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-nette": "^1.2.9",
"symplify/easy-coding-standard": "^12.1",
"symplify/phpstan-extensions": "^11.4.3",
"slevomat/coding-standard": "^8.14"
},
"autoload": {
"psr-4": {
"ScrumWorks\\OpenApiSchema\\": [
"src"
]
}
},
"autoload-dev": {
"psr-4": {
"ScrumWorks\\OpenApiSchema\\Tests\\": "tests/"
}
},
"scripts": {
"check-cs": "php vendor/bin/ecs check --ansi",
"fix-cs": "php vendor/bin/ecs check --fix --ansi",
"lint": "php vendor/bin/parallel-lint src tests",
"phpstan" : "vendor/bin/phpstan analyze --ansi --error-format symplify",
"phpunit": "vendor/bin/phpunit",
"test": ["@lint", "@check-cs", "@phpstan", "@phpunit"]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"phpstan/extension-installer": true
}
}
}