-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.39 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
51
52
53
54
55
56
57
58
{
"type": "library",
"name": "zero-to-prod/omdb",
"description": "A PHP wrapper for the OMDb API with full object support",
"keywords": [
"zero-to-prod",
"Open Movie Database",
"omdb"
],
"homepage": "https://github.com/zero-to-prod/omdb",
"support": {
"email": "dave0016@gmail.com",
"issues": "https://github.com/zero-to-prod/omdb/issues",
"source": "https://github.com/zero-to-prod/omdb",
"docs": "https://zero-to-prod.github.io/omdb",
"security": "https://github.com/zero-to-prod/omdb/blob/main/SECURITY.md"
},
"license": "MIT",
"readme": "./README.md",
"authors": [
{
"name": "David Smith",
"email": "dave0016@gmail.com",
"homepage": "https://davidsmith.blog/",
"role": "maintainer"
}
],
"funding": [
{
"type": "GitHub",
"url": "https://github.com/sponsors/zero-to-prod"
}
],
"require": {
"php": ">=8.1.0",
"zero-to-prod/omdb-api": "^1.0.1",
"zero-to-prod/omdb-models": "^1.0",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"Zerotoprod\\Omdb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Factories\\": "factories/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"suggest": {
"zero-to-prod/data-model": "Transform Data to Type-Safe DTOs",
"zero-to-prod/data-model-helper": "Helpers for a DataModel."
}
}