-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·60 lines (60 loc) · 1.65 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
57
58
59
60
{
"name": "wernerdweight/cors-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle that handles cross-origin resource sharing headers.",
"keywords": [
"cors",
"cross-origin resource sharing",
"headers",
"bundle"
],
"homepage": "https://github.com/wernerdweight/CORSBundle",
"license": "MIT",
"authors": [
{
"name": "Werner Dweight Solutions",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^4.0|^5.0|^6.0",
"thecodingmachine/safe": "^2.4",
"wernerdweight/ra": "^2.0"
},
"require-dev": {
"wernerdweight/cs": "^3.0",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"symfony/phpunit-bridge": "^4.3|^5.0|^6.0",
"symfony/yaml": "^6.2"
},
"suggest": {},
"autoload": {
"psr-4": {
"WernerDweight\\CORSBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WernerDweight\\CORSBundle\\Tests\\": "tests"
}
},
"scripts": {
"fix": "ecs check ./src/ ./tests/ --config ecs.php --fix",
"phpstan": "phpstan analyse ./src/ ./tests/ --level max",
"phpmd": "phpmd ./src/ text vendor/wernerdweight/cs/phpmd.xml",
"ecs": "ecs check ./src/ ./tests/ --config ecs.php",
"phpunit": "phpunit"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^4.3|^5.0|^6.0"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}