-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.5 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.5 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
{
"name": "johninamillion/todo",
"description": "A powerful CLI tool to scan your source code for open tasks — with user filtering, Git integration, and customizable reporting.",
"license": "MIT",
"version": "0.1.0",
"authors": [
{
"name": "johninamillion",
"email": "git@millionvisions.de"
}
],
"autoload": {
"psr-4": {
"johninamillion\\ToDo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"johninamillion\\ToDo\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.3",
"johninamillion/php-git": "^0.1.0",
"symfony/console": "^6.2|^7.0",
"symfony/process": "^6.2|^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"johninamillion/php-code-styles": "^0.2.0",
"phpunit/phpunit": "^12.0"
},
"scripts": {
"post-install-cmd": [
"johninamillion\\CodeStyles\\Composer::install"
],
"post-update-cmd": [
"johninamillion\\CodeStyles\\Composer::update"
],
"code:analyse": "./vendor/bin/phpstan analyse",
"code:format": "./vendor/bin/php-cs-fixer fix",
"test": "./vendor/bin/phpunit --testdox",
"test:coverage": "./vendor/bin/phpunit --coverage-php src/",
"todo": "./bin/todo --display-time --exclude=tests",
"todo:me": "./bin/todo --me --display-time --exclude=tests"
},
"bin": [
"bin/todo"
]
}