-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.24 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
{
"name": "iceq1337/steam-inventory-api",
"description": "PHP library to fetch items from the Steam inventory",
"type": "library",
"keywords": [
"steam",
"inventory",
"api",
"steam-api",
"steam-web-api",
"steam-community",
"steam-inventory",
"steam-items",
"steam-trading-cards",
"steam-gems",
"steam-emoticons",
"steam-backgrounds",
"csgo-items",
"cs2-items",
"tf2-items",
"dota2-items",
"valve-software"
],
"homepage": "https://github.com/IceQ1337/php-steam-inventory",
"license": "MIT",
"autoload": {
"psr-4": {
"SteamInventory\\": "src/"
}
},
"authors": [
{
"name": "IceQ1337",
"email": "IceQ1337@users.noreply.github.com"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49",
"phpunit/phpunit": "^10.5"
},
"scripts": {
"lint": "./vendor/bin/php-cs-fixer fix",
"test": "./vendor/bin/phpunit tests"
},
"archive": {
"exclude": [
"/tests"
]
}
}