-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 830 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 830 Bytes
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": "vlydev/cs2-masked-inspect",
"description": "Encode and decode CS2 masked inspect links",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "VlyDev",
"email": "vladdnepr1989@gmail.com",
"homepage": "https://github.com/vlydev"
}
],
"keywords": ["cs2", "csgo", "inspect", "protobuf", "steam"],
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.0"
},
"autoload": {
"psr-4": {
"VlyDev\\Steam\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VlyDev\\Steam\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests/"
},
"config": {
"sort-packages": true
}
}