-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
82 lines (82 loc) · 2.08 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/inertia-ci4",
"description": "The Codeigniter 4 adapter for inertia.js",
"license": "MIT",
"type": "library",
"version": "0.0.1",
"authors": [
{
"name": "Krishna Gujjjar",
"email": "krishnagujjjar@gmail.com"
}
],
"require": {
"php": "^8.1",
"codeigniter4/framework": "^4.3"
},
"require-dev": {
"codeigniter/coding-standard": "^1.7",
"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.8",
"phpstan/phpstan": "^1.10",
"qossmic/deptrac-shim": "^1.0",
"rector/rector": "^1.0",
"vimeo/psalm": "^5.18",
"phpunit/phpunit": "^10.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Inertia\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Tests\\Support\\": "tests/_support/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": 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"
}
}