-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.38 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
51
52
53
54
55
{
"name": "nigelhough/parkrun-scraper",
"description": "A tool for respectfully scraping parkrun data",
"type": "library",
"version": "0.0.1",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"parkrunScraper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"parkrunScraper\\": ["tests/unit/", "tests/integreation/", "tests/e2e/"]
}
},
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-libxml": "*",
"guzzlehttp/guzzle": "^7.4",
"fakerphp/faker": "^1.19",
"nigelhough/php-time-source": "^0.0",
"psr/simple-cache": "^3.0"
},
"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"
]
}
}