-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ngmy/moonboard-web-scraper",
"description": "A web scraper for the MoonBoard website.",
"license": "MIT",
"type": "project",
"keywords": [
"moonboard",
"scraper"
],
"authors": [
{
"name": "Yuta Nagamiya",
"email": "y.nagamiya@gmail.com"
}
],
"homepage": "https://github.com/ngmy/moonboard-web-scraper",
"require": {
"php": "^8.2",
"ext-zip": "*",
"monolog/monolog": "^3.5",
"symfony/console": "^6.3",
"symfony/css-selector": "^7.0",
"symfony/panther": "^2.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"ergebnis/composer-normalize": "^2.39",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true,
"target-directory": "vendor-bin"
}
},
"scripts": {
"fmt": [
"@php vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --allow-risky=yes"
],
"lint": [
"Composer\\Config::disableProcessTimeout",
"@php vendor/bin/phpstan clear-result-cache || exit $?",
"@php vendor/bin/phpstan analyse"
],
"test": [
"@php vendor-bin/phpunit/vendor/bin/phpunit --no-coverage"
],
"test-coverage": [
"@putenv XDEBUG_MODE=coverage",
"@php vendor-bin/phpunit/vendor/bin/phpunit"
]
}
}