-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 822 Bytes
/
Copy pathcomposer.json
File metadata and controls
33 lines (33 loc) · 822 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
{
"name": "canihavesomecoffee/thetvdbapi",
"description": "PHP implementation for the 4th version of the TheTVDb API.",
"type": "library",
"minimum-stability": "stable",
"license": "ISC",
"authors": [
{
"name": "Willem Van Iseghem (canihavesomecoffee)",
"email": "thetvdbapi@canihavesome.coffee"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"symfony/serializer": "^5.4|^6.0",
"symfony/property-access": "^5.4|^6.0",
"symfony/property-info": "^5.4|^6.0",
"phpdocumentor/reflection-docblock": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"CanIHaveSomeCoffee\\TheTVDbAPI\\": "src/"
}
},
"scripts": {
"test": "phpunit --bootstrap tests/bootstrap.php"
}
}