-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.17 KB
/
composer.json
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": "nigelhough/parkrun-reporter",
"description": "A tool for generating parkrun reports",
"type": "project",
"version": "0.0.1",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"parkrunReporter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"parkrunReporter\\": "tests/"
}
},
"require": {
"php": "^8.1",
"nigelhough/parkrun-scraper": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.4",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts": {
"check": [
"@test",
"@analyse",
"@standards"
],
"fix": [
"phpcbf --standard=PSR12 src tests"
],
"test": [
"phpunit --configuration tests/phpunit.xml"
],
"analyse": [
"phpstan analyse --no-progress -c build/phpstan.neon"
],
"standards": [
"phpcs --standard=PSR12 src tests"
],
"uptodate": [
"@composer outdated -D --strict"
]
}
}