-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 2.09 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 2.09 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
{
"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": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"require": {
"php": "^8.5",
"symfony/console": "^8.0"
},
"autoload": {
"psr-4": {
"WickedByte\\App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WickedByte\\Tests\\App\\": "tests/"
}
},
"scripts": {
"ci:lint": "@lint --no-progress --no-colors",
"ci:paratest": "@paratest --no-progress",
"ci:phpcs": "@phpcs",
"ci:phpstan": "@phpstan --no-progress --no-interaction --no-ansi",
"ci:phpunit": "@php vendor/bin/phpunit --no-interaction --no-progress",
"ci:rector-dry-run": "@rector-dry-run --no-progress-bar --no-ansi",
"lint": "@php vendor/bin/parallel-lint -j $(nproc --ignore=2) --show-deprecated --exclude vendor --exclude build .",
"phpcbf": "@php vendor/bin/phpcbf --parallel=$(nproc --ignore=2) --report=full",
"phpcs": "@php vendor/bin/phpcs --parallel=$(nproc --ignore=2) --report=full",
"phpstan": "@php vendor/bin/phpstan analyze --memory-limit=-1 --verbose",
"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"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1.33",
"phpstan/phpstan-phpunit": "^2.0.10",
"phpunit/phpunit": "^12.5.2",
"psy/psysh": "^0.12.16",
"rector/rector": "^2.2.14",
"wickedbyte/coding-standard": "^1.0.2"
}
}