-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
70 lines (70 loc) · 1.32 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "urlbox/screenshots",
"description": "Use urlbox to easily generate website thumbnail screenshots from a URL",
"homepage": "https://github.com/urlbox/urlbox-php",
"keywords": [
"convert",
"render",
"capture",
"webpage",
"image",
"screenshot",
"provider",
"facade",
"screenshots",
"urlbox",
"browser",
"headless",
"responsive",
"retina",
"phantomjs",
"laravel",
"thumbnail",
"website",
"preview",
"thumbnails"
],
"license": "MIT",
"authors": [
{
"name": "Chris Roebuck",
"email": "chris@urlbox.io",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"guzzlehttp/guzzle": "^7.5.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.26",
"phpunit/php-code-coverage": "^9.2.18",
"mockery/mockery": "^1.5"
},
"autoload": {
"psr-4": {
"Urlbox\\Screenshots\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Urlbox\\Screenshots\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Urlbox\\Screenshots\\UrlboxProvider"
],
"aliases": {
"Urlbox": "Urlbox\\Screenshots\\Facade\\Urlbox"
}
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}