-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.18 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"require": {
"symfony/console": "^6.4",
"symfony/event-dispatcher": "^6.4",
"symfony/filesystem": "^6.4",
"symfony/dependency-injection": "^6.4",
"redpandacoding/contracts": "1.x-dev",
"symfony/runtime": "^6.4"
},
"autoload": {
"psr-4": {
"RedPandaCoding\\ToolWeaver\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RedPandaCoding\\ToolWeaver\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.41",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-db": "^3.1",
"codeception/module-phpbrowser": "^3.0",
"codeception/module-symfony": "^3.1"
}
}