forked from Astrotomic/steam-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.53 KB
/
Copy pathcomposer.json
File metadata and controls
81 lines (81 loc) · 2.53 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
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
{
"name": "zeropingheroes/steam-apis",
"description": "Interface with Steam's APIs.",
"license": "MIT",
"authors": [
{
"name": "Tom Witkowski",
"email": "gummibeer@astrotomic.info",
"homepage": "https://astrotomic.info",
"role": "Developer"
},
{
"name": "Olly Baker",
"email": "ilumos@gmail.com",
"homepage": "https://ilumos.co.uk",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"illuminate/collections": "^11.0 || ^12.0",
"illuminate/support": "^11.0 || ^12.0",
"saloonphp/laravel-plugin": "^4.0",
"saloonphp/pagination-plugin": "^2.0",
"saloonphp/rate-limit-plugin": "^2.0",
"saloonphp/saloon": "^4.0",
"spatie/laravel-data": "^4.0",
"xpaw/steamid": "^4.0"
},
"require-dev": {
"astrotomic/phpunit-assertions": "^0.12.0",
"laravel/pint": "^1.27.1",
"orchestra/testbench": "^10.9.0",
"pestphp/pest": "^3.8.5",
"pestphp/pest-plugin-laravel": "^3.2.0"
},
"autoload": {
"psr-4": {
"Zeropingheroes\\SteamApis\\": "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": [
"Zeropingheroes\\SteamApis\\SteamSdkServiceProvider"
]
}
},
"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'"
}
}