-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.62 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.62 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
{
"name": "surgiie/kantui",
"type": "project",
"description": "A minimal transparent php kanban TUI with vim-like keybindings.",
"keywords": [
"tui",
"kanban",
"todo",
"php"
],
"bin": [
"bin/kantui"
],
"license": "MIT",
"require": {
"php": "^8.3",
"php-tui/php-tui": "^0.2.1",
"illuminate/support": "^11.42",
"laravel/prompts": "^0.3.7",
"illuminate/pagination": "^11.42",
"ramsey/uuid": "^4.9",
"amphp/amp": "^3.1"
},
"autoload": {
"psr-4": {
"Kantui\\": "src/"
},
"files": [
"./src/helpers.php"
]
},
"require-dev": {
"symfony/var-dumper": "^7.3",
"laravel/pint": "^1.25",
"fakerphp/faker": "^1.24",
"pestphp/pest": "^3.0",
"phpstan/phpstan": "^2.1"
},
"autoload-dev": {
"psr-4": {
"Kantui\\Tests\\": "tests/"
}
},
"scripts": {
"test": "pest",
"test:coverage": "pest --coverage",
"test:coverage-html": "pest --coverage-html coverage",
"analyse": "phpstan analyse",
"format": "pint",
"format:test": "pint --test",
"check": [
"@format:test",
"@analyse",
"@test"
]
},
"scripts-descriptions": {
"test": "Run the test suite with Pest",
"test:coverage": "Run tests with coverage report",
"test:coverage-html": "Generate HTML coverage report",
"analyse": "Run static analysis with PHPStan",
"format": "Format code with Laravel Pint",
"format:test": "Check code formatting without making changes",
"check": "Run all quality checks (format, analyse, test)"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}