forked from syntaxerrors/Steam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.87 KB
/
Copy pathcomposer.json
File metadata and controls
63 lines (63 loc) · 1.87 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
{
"name": "teemocell/steam-web-api",
"description": "A modern Steam Web API client for PHP and Laravel 12+",
"type": "library",
"keywords": [
"steam",
"steam-api",
"steam-web-api",
"laravel"
],
"homepage": "https://github.com/TeemoCell/SteamWebAPI",
"license": "MIT",
"authors": [
{
"name": "TeemoCell",
"homepage": "https://github.com/TeemoCell",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/TeemoCell/SteamWebAPI/issues",
"source": "https://github.com/TeemoCell/SteamWebAPI"
},
"require": {
"php": "^8.2",
"laravel/framework": "^12.61.1|^13.12.0",
"guzzlehttp/guzzle": "^7.8",
"ext-bcmath": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.0|^12.0|^13.0",
"orchestra/testbench": "^10.0|^11.0",
"vlucas/phpdotenv": "^5.6",
"rector/rector": "^1.0|^2.0"
},
"autoload": {
"psr-4": {
"TeemoCell\\SteamWebApi\\": "src/TeemoCell/SteamWebApi"
}
},
"extra": {
"laravel": {
"providers": [
"TeemoCell\\SteamWebApi\\SteamApiServiceProvider"
]
}
},
"minimum-stability": "stable",
"scripts": {
"test": "XDEBUG_MODE=off vendor/bin/phpunit -d memory_limit=512M",
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit -d memory_limit=512M --coverage-clover=coverage.clover",
"coverage:html": "XDEBUG_MODE=coverage vendor/bin/phpunit -d memory_limit=512M --coverage-html ./coverage",
"Docker - Build:container": "docker-compose build",
"Docker - Install:dependencies": "docker-compose run --rm php composer install",
"Docker - Run:tests": "docker-compose run --rm php composer test",
"Docker - Run:coverage": "docker-compose run --rm php composer coverage",
"Docker - Run:Bash": "docker-compose run --rm php bash"
}
}