-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.9 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 1.9 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
64
65
{
"name": "adaures/castopod-plugins-manager",
"description": "A PHP library to install, update, and remove plugins on a Castopod instance.",
"type": "library",
"license": "AGPL-3.0-only",
"autoload": {
"psr-4": {
"Castopod\\PluginsManager\\": "src/"
},
"files": [
"src/Constants.php",
"src/helpers.php"
]
},
"authors": [
{
"name": "Yassine Doghri",
"homepage": "https://yassinedoghri.com/"
}
],
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --ansi --memory-limit 512M",
"rector": "vendor/bin/rector process --dry-run --ansi",
"rector:fix": "vendor/bin/rector process --ansi",
"style": "vendor/bin/ecs check --ansi",
"style:fix": "vendor/bin/ecs check --fix --ansi",
"pest": "./vendor/bin/pest --bail --colors=always",
"pest:parallel": "./vendor/bin/pest --colors=always --parallel",
"pest:profiling": "./vendor/bin/pest --colors=always --profile",
"pest:coverage": "./vendor/bin/pest --colors=always --parallel --coverage",
"pest:type-coverage": "./vendor/bin/pest --colors=always --type-coverage --min=95",
"test": [
"@style",
"@phpstan",
"@rector",
"@pest:type-coverage",
"@pest:parallel"
],
"core:update": [
"composer update --no-interaction --prefer-stable",
"composer bump --ansi",
"composer validate --strict --ansi",
"composer audit --ansi"
]
},
"require": {
"php": ">=8.4",
"z4kn4fein/php-semver": "^3.0"
},
"require-dev": {
"pestphp/pest": "^4.0.4",
"pestphp/pest-plugin-type-coverage": "^4.0.2",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.22",
"rector/rector": "^2.1.4",
"symplify/coding-standard": "^12.4.3",
"symplify/easy-coding-standard": "^12.5.24"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
}
}