-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.75 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": "ttomdewit/extremely-defensive-php",
"description": "Extremely Defensive PHP",
"type": "project",
"license": "proprietary",
"autoload": {
"psr-4": {
"ExtremelyDefensivePhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ExtremelyDefensivePhp\\Tests\\": "tests/",
"ExtremelyDefensivePhp\\Tests\\Feature\\": "tests/Feature/"
}
},
"authors": [
{
"name": "Tom de Wit",
"email": "[email protected]"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.16.0",
"phpstan/phpstan": "^1.10.14",
"phan/phan": "^5.4.2",
"vimeo/psalm": "^4.30.0",
"behat/behat": "^v3.13.0",
"overtrue/phplint": "^4.5.0",
"phpunit/phpunit": "^9.6.7",
"malukenho/mcbumpface": "^1.2.0",
"infection/infection": "^0.26.21",
"rregeer/phpunit-coverage-check": "^0.3.1",
"dvdoug/behat-code-coverage": "^v5.3.0",
"phpmd/phpmd": "^2.13.0",
"squizlabs/php_codesniffer": "^3.7.2",
"rector/rector": "^0.15.25",
"qossmic/deptrac-shim": "^1.0.2",
"phpstan/extension-installer": "^1.3.0",
"phpstan/phpstan-strict-rules": "^1.5.1",
"thecodingmachine/phpstan-strict-rules": "^v1.0.0",
"symplify/phpstan-rules": "^10.3.3",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"ergebnis/phpstan-rules": "^1.0.0",
"psalm/plugin-phpunit": "^0.16.1"
},
"require": {
"ramsey/uuid": "^4.7.4"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"malukenho/mcbumpface": true,
"phpstan/extension-installer": true
}
}
}