-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
95 lines (95 loc) · 2.92 KB
/
Copy pathcomposer.json
File metadata and controls
95 lines (95 loc) · 2.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "ad-aures/plugins.castopod.org",
"description": "The Castopod Plugin Hub is the place to discover, install, and manage plugins for Castopod.",
"license": "AGPL-3.0-only",
"type": "project",
"homepage": "https://plugins.castopod.org",
"authors": [
{
"name": "Yassine Doghri",
"homepage": "https://yassinedoghri.com/"
}
],
"require": {
"php": "^8.4",
"codeigniter4/framework": "^4.6.4",
"codeigniter4/queue": "dev-develop",
"codeigniter4/settings": "^v2.2.0",
"codeigniter4/shield": "^1.2.0",
"codeigniter4/tasks": "dev-develop",
"enshrined/svg-sanitize": "^0.22.0",
"league/commonmark": "^2.8.0",
"michalsn/codeigniter-htmx": "^v2.1.0",
"tatter/alerts": "^v3.1.0",
"yassinedoghri/codeigniter-altcha": "^1.1.3",
"yassinedoghri/codeigniter-vite": "^2.1.0",
"yassinedoghri/php-icons": "^v1.3.0"
},
"require-dev": {
"codeigniter/phpstan-codeigniter": "1.5.4",
"fakerphp/faker": "^v1.24.1",
"mikey179/vfsstream": "^v1.6.12",
"pestphp/pest": "^4.2.0",
"pestphp/pest-plugin-type-coverage": "^4.0.3",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.33",
"rector/rector": "^2.2.14",
"symplify/coding-standard": "^13.0.0",
"symplify/easy-coding-standard": "^13.0.0"
},
"scripts": {
"dev": "php spark serve --host 0.0.0.0",
"phpstan": "vendor/bin/phpstan analyse --ansi",
"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"
],
"post-install-cmd": [
"vendor/bin/php-icons init && vendor/bin/php-icons scan"
],
"post-update-cmd": [
"vendor/bin/php-icons init && vendor/bin/php-icons scan"
]
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Config\\": "app/Config/"
},
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
}
}