-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
36 lines (36 loc) · 960 Bytes
/
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
{
"name": "invisnik/laravel-steam-inventory",
"description": "Laravel Steam Inventory",
"keywords": ["steam", "laravel", "inventory", "steam inventory", "steam api"],
"homepage": "https://github.com/invisnik/laravel-steam-inventory",
"license": "MIT",
"authors": [
{
"name": "Nikita Brytkov",
"email": "invis.nik@gmail.com"
}
],
"require": {
"php": ">=7.0",
"illuminate/support": "5.*",
"illuminate/cache": "5.*",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"orchestra/testbench": "~3.0"
},
"autoload": {
"psr-4": {
"Invisnik\\LaravelSteamInventory\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Invisnik\\LaravelSteamInventory\\ServiceProvider"
]
}
},
"minimum-stability": "stable"
}