forked from dusterio/link-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.02 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
{
"name": "dusterio/link-preview",
"type": "library",
"description": "Link preview generation for PHP with Laravel support",
"keywords": ["php","url","scraping","laravel","preview"],
"homepage": "http://github.com/dusterio/link-preview",
"license": "MIT",
"authors": [
{
"name": "Denis Mysenko",
"email": "[email protected]",
"homepage": "https://www.mysenko.com"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/support": "5.*|6.*",
"guzzlehttp/guzzle": "^6.1",
"symfony/dom-crawler": "^3.0",
"symfony/css-selector": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"Dusterio\\LinkPreview\\": "src/"
}
},
"extra":{
"laravel": {
"providers": [
"Dusterio\\LinkPreview\\Integrations\\LaravelServiceProvider"
]
}
}
}