-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.53 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
{
"name": "gertvdb/legacy-bridge-bundle",
"description": "bridge symfony 5",
"license": "MIT",
"authors": [
{
"name": "Gert van den Buijs",
"email": "[email protected]"
}
],
"repositories": [],
"require": {
"php": ">=8.1",
"symfony/dependency-injection": "^6.1",
"symfony/http-kernel": "^6.1",
"symfony/config": "^6.1",
"symfony/http-foundation": "^6.1",
"symfony/contracts": "^3.1",
"symfony/event-dispatcher": "^6.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.5",
"rector/rector": "0.12.9",
"symplify/easy-coding-standard": "10.0.6"
},
"autoload": {
"psr-4": {
"gertvdb\\LegacyBridgeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"gertvdb\\LegacyBridgeBundle\\Tests\\": "tests"
}
},
"scripts": {
"ecs-fix": [
"./vendor/bin/ecs check --config ecs.php --fix"
],
"ecs": [
"./vendor/bin/ecs check --config ecs.php"
],
"phpunit": [
"./vendor/bin/phpunit"
],
"phpstan": [
"./vendor/bin/phpstan analyse --memory-limit=-1 --ansi"
],
"phpstan-cli": [
"./vendor/bin/phpstan analyse --memory-limit=-1 --error-format github --ansi"
],
"rector": [
"./vendor/bin/rector process --config rector.php"
]
}
}