-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.05 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"name": "hideyukimori/tasklog",
"description": "Task management API — NENE2 Field Trial 11 (JWT authentication ergonomics)",
"type": "project",
"require": {
"php": ">=8.4.1 <9.0",
"hideyukimori/nene2": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"Tasklog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tasklog\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --configuration phpunit.xml",
"analyse": "vendor/bin/phpstan analyse --level=8 src/ tests/",
"cs": "vendor/bin/php-cs-fixer fix --dry-run --diff --allow-risky=yes",
"cs:fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"check": [
"@test",
"@analyse",
"@cs"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}