-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.07 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
73
74
75
76
77
78
79
80
81
82
{
"name": "fabithub/vite-ci4",
"description": "Laravel like Vite js support for Codeigniter 4",
"license": "MIT",
"type": "library",
"version": "0.0.1",
"authors": [
{
"name": "Krishna Gujjjar",
"email": "krishnagujjjar@gmail.com"
}
],
"require": {
"php": "^8.0",
"codeigniter4/framework": "^4.4"
},
"require-dev": {
"codeigniter/coding-standard": "^1.7",
"codeigniter4/framework": "^4.4",
"ergebnis/composer-normalize": "^2.41",
"icanhazstring/composer-unused": "^0.8.11",
"infection/infection": "^0.27.9",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-faker": "^2.0",
"pestphp/pest-plugin-type-coverage": "^2.6",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"qossmic/deptrac-shim": "^1.0",
"rector/rector": "^0.18.13",
"vimeo/psalm": "^5.18"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Fabithub\\ViteJs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"@normalize"
],
"analyze": [
"Composer\\Config::disableProcessTimeout",
"phpstan analyze",
"psalm",
"rector process --dry-run",
"@unused"
],
"ci": [
"Composer\\Config::disableProcessTimeout",
"@cs",
"@deduplicate",
"@inspect",
"@analyze",
"@test",
"@mutate"
],
"cs": "php-cs-fixer fix --ansi --verbose --dry-run --diff",
"cs-fix": "php-cs-fixer fix --ansi --verbose --diff",
"deduplicate": "phpcpd src/",
"inspect": "deptrac analyze --cache-file=build/deptrac.cache",
"mutate": "infection --threads=4 --coverage=build/pest --skip-initial-tests --test-framework=pest",
"sa": "@analyze",
"style": "@cs-fix",
"test": "XDEBUG_MODE=coverage pest --coverage",
"unused": "composer-unused"
}
}