forked from oscarotero/Embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 965 Bytes
/
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
{
"name": "embed/embed",
"type": "library",
"description": "PHP library to retrieve page info using oembed, opengraph, etc",
"keywords": ["oembed", "opengraph", "twitter cards", "embed", "embedly"],
"homepage": "https://github.com/oscarotero/Embed",
"license": "MIT",
"authors": [
{
"name": "Oscar Otero",
"email": "oom@oscarotero.com",
"homepage": "http://oscarotero.com",
"role": "Developer"
}
],
"support": {
"email": "oom@oscarotero.com",
"issues": "https://github.com/oscarotero/Embed/issues"
},
"require": {
"php": ">=5.4.0",
"ext-curl": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "5.x",
"phpunit/phpunit": "*"
},
"suggest": {
"guzzlehttp/guzzle@5.x": "To use Guzzle5 request resolver"
},
"autoload": {
"psr-4": {
"Embed\\": "src"
}
}
}