-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 2.58 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
77
78
79
80
81
82
83
84
85
{
"name": "astrotomic/sourcebans-sdk",
"description": "Interact with SourceBans++ API.",
"license": "MIT",
"authors": [
{
"name": "Tom Witkowski",
"email": "[email protected]",
"homepage": "https://astrotomic.info",
"role": "Developer"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Gummibeer"
},
{
"type": "other",
"url": "https://forest.astrotomic.info"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"illuminate/support": "^9.0 || ^10.0",
"nesbot/carbon": "^2.53.1",
"sammyjo20/saloon": "^2.0",
"sammyjo20/saloon-laravel": "^2.0",
"spatie/laravel-data": "^3.1",
"symfony/css-selector": "^5.4 || ^6.0",
"symfony/dom-crawler": "^6.1",
"xpaw/steamid": "^2.0"
},
"require-dev": {
"astrotomic/phpunit-assertions": "^0.10.0",
"laravel/pint": "^1.2",
"orchestra/testbench": "^7.0 || ^8.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.2"
},
"autoload": {
"psr-4": {
"Astrotomic\\SourceBansSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
},
"laravel": {
"providers": [
"Astrotomic\\SourceBansSdk\\SourceBansSdkServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"@composer normalize --ansi --no-interaction --quiet",
"@composer validate --strict --ansi --no-interaction",
"@composer thanks --ansi --no-interaction --quiet",
"@php vendor/bin/testbench package:discover --ansi"
],
"fix": "@php vendor/bin/pint",
"normalize": "echo 'composer global require ergebnis/composer-normalize'",
"phpstan": "@php vendor/bin/phpstan analyse --memory-limit=2G",
"test": "@php -d memory_limit=-1 vendor/bin/pest",
"test-coverage": "XDEBUG_MODE=coverage php -d memory_limit=-1 vendor/bin/pest --coverage-html=.coverage",
"thanks": "echo 'composer global require symfony/thanks'"
}
}