-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 945 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
37
38
{
"name": "harrk/gamejolt-api",
"license": "MIT",
"authors": [
{
"name": "Harry Kirkman",
"homepage": "https://harrk.dev"
}
],
"description": "A PHP library for the Game Jolt API.",
"homepage": "https://github.com/Harrk/gamejolt-api",
"keywords": [
"Gamejolt", "Game", "Jolt", "API", "PHP", "Composer", "Gamedev"
],
"autoload": {
"psr-4": {
"Harrk\\GameJoltApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Harrk\\GameJoltApi\\Tests\\": "tests"
}
},
"require": {
"php": "^8.1|8.2|8.3",
"guzzlehttp/guzzle": "^7.5",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.9.18"
},
"scripts": {
"test": "vendor/bin/phpunit",
"analyse": "vendor/bin/phpstan analyse ./src --level 5"
}
}