-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 739 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 739 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
{
"name": "rollbackpt/url-extractor",
"description": "PHP Class to extract images and meta data information from URLs",
"type": "library",
"keywords": ["url","metatags", "metadata"],
"homepage": "http://urlextractor.joaoperibeiro.com/",
"license": "MIT",
"authors": [
{
"name": "Joao Ribeiro",
"email": "joaopedrocr@gmail.com",
"homepage": "http://joaoperibeiro.com",
"role": "Developer"
}
],
"require": {
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"rollbackpt\\UrlExtractor\\": "src/UrlExtractor/"
}
},
"archive": {
"exclude": ["tests", "docs", "demo", "*phpunit.xml"]
}
}