-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.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": "bookingsuedtirol/mss-php",
"type": "library",
"description": "MSS API Client for PHP projects",
"homepage" : "https://github.com/bookingsuedtirol/mss-php",
"keywords": ["mss","api","client"],
"license": "MIT",
"authors": [
{
"name": "David Mair Spiess",
"email": "david.spiess@hgv.it"
},
{
"name": "Thomas Walter",
"email": "thomas.walter@hgv.it"
}
],
"require": {
"php": ">=8.1",
"jms/serializer": "3.29.1",
"psr/http-client": "^1.0.3",
"php-http/client-common": "^2.7.2",
"php-http/discovery": "^1.20"
},
"scripts": {
"test": "phpunit"
},
"autoload": {
"psr-4": {
"MssPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MssPhp\\Tests\\": "tests/"
}
},
"require-dev": {
"glynnforrest/crutches": "^0.4",
"vlucas/phpdotenv": "^5.6.1",
"nyholm/psr7": "^1.8.2",
"kriswallsmith/buzz": "^1.3",
"phpunit/phpunit": "^11.4.3"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}