-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
86 lines (86 loc) · 2.62 KB
/
Copy pathcomposer.json
File metadata and controls
86 lines (86 loc) · 2.62 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "outcomer/symfony-json-schema-validation",
"description": "JSON Schema validation bundle for Symfony with OPIS integration",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony",
"bundle",
"validation",
"json-schema",
"opis",
"api",
"openapi",
"request-validation"
],
"authors": [
{
"name": "David Evdoshchenko",
"email": "773021792e@gmail.com"
}
],
"require": {
"php": ">=8.2",
"symfony/config": "^7.4|^8.0",
"symfony/dependency-injection": "^7.4|^8.0",
"symfony/framework-bundle": "^7.4|^8.0",
"symfony/http-foundation": "^7.4|^8.0",
"symfony/http-kernel": "^7.4|^8.0"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.16",
"nelmio/api-doc-bundle": "^5.9",
"opis/json-schema": "^2.6",
"phpunit/phpunit": "^11.0|^12.0",
"squizlabs/php_codesniffer": "^3.13",
"symfony/phpunit-bridge": "^7.4|^8.0",
"symfony/var-dumper": "^7.4|^8.0"
},
"autoload": {
"psr-4": {
"Outcomer\\ValidationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Outcomer\\ValidationBundle\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html build/coverage",
"test-coverage:win": "powershell -Command \"$env:XDEBUG_MODE='coverage'; vendor/bin/phpunit --coverage-html build/coverage\"",
"test-coverage:unix": "XDEBUG_MODE=coverage phpunit --coverage-html build/coverage",
"cs-check": "vendor/bin/phpcs --report=full",
"cs-fix": "vendor/bin/phpcbf",
"code-sniffer": [
"phpcs --config-set default_standard phpcs.xml",
"phpcs --config-set report_format summary",
"phpcs --config-set show_warnings 0",
"phpcs --config-set show_progress 1",
"phpcs --config-set report_width 120",
"phpcs --config-set colors 1",
"phpcs --config-set installed_paths ../../escapestudios/symfony2-coding-standard"
],
"post-install-cmd": [
"@code-sniffer"
],
"post-update-cmd": [
"@code-sniffer"
]
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^7.4|^8.0"
},
"branch-alias": {
"dev-main": "3.1-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}