-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.57 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.57 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
{
"name": "umanit/dev-bundle",
"description": "Helper classes and dependencies for usual dev environment",
"type": "symfony-bundle",
"keywords": [
"dev",
"testing",
"static analysis",
"coding standard"
],
"license": "MIT",
"autoload": {
"psr-4": {
"Umanit\\DevBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Umanit\\DevBundle\\": "tests/"
}
},
"authors": [
{
"name": "Alexandre Emion",
"email": "aemion@umanit.fr"
},
{
"name": "Vivien De Bona",
"email": "vdebona@umanit.fr"
}
],
"require": {
"php": "^8.2",
"dama/doctrine-test-bundle": "^8.3",
"doctrine/doctrine-bundle": "^2.8",
"doctrine/orm": "^2.14|^3.5",
"mockery/mockery": "^1.6",
"nikic/php-parser": "^5.4",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phparkitect/phparkitect": "^0.5.4",
"phpro/grumphp": "^2.12",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^11.5",
"slevomat/coding-standard": "^8.19",
"spatie/phpunit-watcher": "^1.24",
"squizlabs/php_codesniffer": "^4.0",
"symfony/framework-bundle": "^6.4|^7.3",
"umanit/coding-standard": "^1.0",
"vincentlanglet/twig-cs-fixer": "^3.5",
"zenstruck/foundry": "^2.4",
"zenstruck/mailer-test": "^1.4",
"zenstruck/messenger-test": "^1.11"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}