-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 2.14 KB
/
composer.json
File metadata and controls
83 lines (83 loc) · 2.14 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
{
"name": "kariricode/devkit",
"description": "Zero-config PHP quality toolchain for KaririCode Framework. Bundles PHPUnit, PHPStan, PHP-CS-Fixer, Rector, and Psalm under a single `kcode` CLI — isolated in .kcode/ so it never pollutes production dependencies.",
"type": "library",
"license": "MIT",
"keywords": [
"kariricode",
"devkit",
"quality",
"toolchain",
"cli",
"phar",
"phpunit",
"phpstan",
"php-cs-fixer",
"rector",
"psalm",
"static-analysis",
"code-style",
"linting",
"testing",
"coverage",
"developer-tools",
"code-quality",
"refactoring",
"php84"
],
"homepage": "https://kariricode.org",
"authors": [
{
"name": "Walmir Silva",
"email": "walmir.silva@kariricode.org"
}
],
"require": {
"php": ">=8.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^12.5.8",
"rector/rector": "^2.0",
"vimeo/psalm": "^6.0"
},
"autoload": {
"psr-4": {
"KaririCode\\Devkit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KaririCode\\Devkit\\Tests\\": "tests/"
}
},
"bin": [
"bin/kcode"
],
"scripts": {
"kcode:init": "bin/kcode init",
"kcode:test": "bin/kcode test",
"kcode:analyse": "bin/kcode analyse",
"kcode:cs": "bin/kcode cs:fix",
"kcode:cs-check": "bin/kcode cs:fix --check",
"kcode:quality": "bin/kcode quality",
"kcode:migrate": "bin/kcode migrate",
"build": "php -d phar.readonly=0 bin/build-phar.php"
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"infection/extension-installer": false
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}