-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.2 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
{
"name": "brokeyourbike/tingg-api-client",
"description": "Tingg API Client for PHP",
"type": "library",
"license": "MPL-2.0",
"keywords": [
"api",
"api-client",
"tingg",
"brokeyourbike"
],
"autoload": {
"psr-4": {
"BrokeYourBike\\Tingg\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrokeYourBike\\Tingg\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Ivan Stasiuk",
"email": "ivan@stasi.uk",
"homepage": "https://stasi.uk"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"brokeyourbike/http-client": "^1.0",
"brokeyourbike/resolve-uri": "^1.0",
"brokeyourbike/http-enums": "^2.0",
"brokeyourbike/data-transfer-object": "^0.2"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.4",
"nesbot/carbon": "^2",
"larapack/dd": "^1.1"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"version": "0.3.2"
}