generated from wickedbyte/project-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 2.12 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "wickedbyte/tombstone",
"description": "Basic implementation of the Tombstone pattern for PHP to uncover zombie code",
"license": "MIT",
"type": "library",
"keywords": [
"tombstone",
"zombie code",
"dead code",
"refactoring",
"code quality"
],
"authors": [
{
"name": "Andy Snell",
"email": "[email protected]"
}
],
"require": {
"php": "8.2.* || 8.3.*",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.65",
"phpstan/phpstan-phpunit": "^1.3.16",
"phpunit/phpunit": "^11.0.8",
"psy/psysh": "^0.12.2",
"rector/rector": "^1.0.3",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.9"
},
"autoload": {
"psr-4": {
"WickedByte\\Tombstone\\": "src/"
},
"files": [
"tombstone.php"
]
},
"autoload-dev": {
"psr-4": {
"WickedByte\\Tests\\Tombstone\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"phpcbf": "@php vendor/bin/phpcbf --parallel=$(nproc) --report=full",
"phpcs": "@php vendor/bin/phpcs --parallel=$(nproc) --report=full",
"phpstan": "@php vendor/bin/phpstan analyze --memory-limit=-1",
"phpunit": "@php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-text",
"psysh": "@php vendor/bin/psysh",
"rector": "@php vendor/bin/rector process",
"rector-dry-run": "@php vendor/bin/rector process --dry-run",
"ci": [
"@phpcs",
"@phpunit",
"@phpstan",
"@rector-dry-run"
]
}
}