forked from mpratt/Embera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·35 lines (35 loc) · 1.09 KB
/
composer.json
File metadata and controls
executable file
·35 lines (35 loc) · 1.09 KB
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
{
"name": "wpdevelopers/embera",
"type": "library",
"description": "Oembed consumer library. Converts urls into their html embed code. Supports 150+ sites, such as Youtube, Twitter, vimeo, Instagram etc.",
"keywords": ["Embed", "Oembed", "Auto embed", "Embed Text", "Url Embed", "Responsive Embeds", "Youtube", "Vimeo", "Vine", "Twitter", "Instagram"],
"homepage": "https://github.com/WPDevelopers/Embera",
"license": "MIT",
"authors": [
{
"name": "Michael Pratt",
"email": "yo@michael-pratt.com",
"homepage": "http://www.michael-pratt.com",
"role": "Author/Developer"
}
],
"require": {
"php": ">=5.6",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.3"
},
"suggest": {
"ext-curl": "Allow to fetch data using curl instead of using file_get_contents"
},
"autoload": {
"psr-4": {"Embera\\": "src/Embera"}
},
"autoload-dev": {
"psr-4": {"Embera\\": "tests/Embera"}
},
"scripts": {
"test": "phpunit"
}
}