-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.62 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
{
"name": "wickedbyte/project-skeleton",
"description": "Template for PHP Projects",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Andy Snell",
"email": "andy@wickedbyte.com"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
},
"sort-packages": true
},
"require": {
"php": "^8.3",
"symfony/console": "^7.1.5"
},
"autoload": {
"psr-4": {
"WickedByte\\App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WickedByte\\Tests\\App\\": "tests/"
}
},
"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": [
"@putenv XDEBUG_MODE=coverage",
"@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"
]
},
"require-dev": {
"phpstan/phpstan": "^1.12.7",
"phpunit/phpunit": "^11.4.2",
"psy/psysh": "^0.12.4",
"rector/rector": "^1.2.8",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.10.3"
}
}