-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
98 lines (98 loc) · 3.07 KB
/
Copy pathcomposer.json
File metadata and controls
98 lines (98 loc) · 3.07 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
96
97
98
{
"name": "henryavila/codeguard",
"description": "Laravel quality gates that survive your AI agent — multi-stage test runner, pattern-based review, AI rules, and guided install for Pint/PHPStan/Deptrac/Infection/CaptainHook.",
"keywords": [
"laravel",
"quality",
"testing",
"phpstan",
"deptrac",
"infection",
"captainhook",
"ai-review",
"ai-rules"
],
"homepage": "https://github.com/henryavila/codeguard",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Henry Ávila",
"email": "personal@henryavila.com",
"homepage": "https://henryavila.com"
}
],
"require": {
"php": "^8.5",
"captainhook/captainhook": "^5.29",
"captainhook/hook-installer": "^1.0",
"illuminate/console": "^11.0|^12.0",
"illuminate/support": "^11.0|^12.0",
"illuminate/filesystem": "^11.0|^12.0",
"laravel/prompts": "^0.1.15|^0.3",
"symfony/process": "^7.0|^8.0",
"symfony/yaml": "^7.0|^8.0",
"symfony/finder": "^7.0|^8.0",
"sebastian/diff": "^5.1|^6.0|^7.0",
"phpstan/phpstan": "^1.11|^2.0",
"larastan/larastan": "^2.11|^3.0",
"phpstan/phpstan-phpunit": "^1.4|^2.0",
"tomasvotruba/cognitive-complexity": "^0.2|^1.0",
"shipmonk/dead-code-detector": "^0.13|^0.15",
"spaze/phpstan-disallowed-calls": "^3.0|^4.0",
"mrpunyapal/peststan": "^0.2"
},
"require-dev": {
"laravel/pint": "^1.15",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9.0|^10.0",
"pestphp/pest": "^3.0|^4.0",
"pestphp/pest-plugin-laravel": "^3.0|^4.0"
},
"autoload": {
"psr-4": {
"Henryavila\\Codeguard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Henryavila\\Codeguard\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"captainhook/hook-installer": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Henryavila\\Codeguard\\CodeguardServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/pest",
"test:coverage": "vendor/bin/pest --coverage --min=80",
"pint": "vendor/bin/pint",
"pint:test": "vendor/bin/pint --test",
"phpstan": "vendor/bin/phpstan analyse --no-progress --memory-limit=2G",
"ci": [
"@pint:test",
"@phpstan",
"@test:coverage"
]
},
"scripts-descriptions": {
"test": "Run Pest test suite",
"test:coverage": "Run Pest with coverage (80% minimum)",
"pint": "Format code with Laravel Pint",
"pint:test": "Check code formatting without modifying",
"phpstan": "Run PHPStan static analysis",
"ci": "Run full CI checks (pint + phpstan + test:coverage)"
},
"minimum-stability": "dev",
"prefer-stable": true
}