-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 990 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 990 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
37
38
39
{
"name": "festivalslab/api-client-php",
"description": "PHP client for the Edinburgh Festivals Listings API",
"homepage": "https://github.com/festivalslab/api-client-php",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Festivals Edinburgh Listings API",
"email": "support@edinburghfestivalcity.com"
}
],
"require": {
"guzzlehttp/guzzle": "^7.9.2",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
},
"require-dev": {
"guzzlehttp/promises": ">=2.0.4",
"phpunit/phpunit": "^10.5.45",
"ergebnis/phpunit-slow-test-detector": "^2.19.1"
},
"support": {
"source": "https://github.com/festivalslab/api-client-php",
"issues": "https://github.com/festivalslab/api-client-php/issues"
},
"autoload": {
"psr-4": {
"FestivalsApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"test\\unit\\FestivalsApi\\": "test/unit"
}
},
"config": {
"preferred-install": "dist"
}
}